* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
/* Pro Base */
#Pro-Base {
  position: fixed;
  top: -200px;
  left: 05px;
  height: 150px;
  width: 100px;
  z-index: 999999;
  display: flex;
  justify-content: center;
  animation: slideDown 0.5s ease-out forwards;
}
@keyframes slideDown {
  to {
    top: 0;
  }
}
#base {
  height: 100px;
  width: 90px;
  background-color: #000;
  position: relative;
  display: flex;
  box-shadow: 1px 1px 05px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#base p {
  color: white;
  font-size: x-small;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
#base img {
  height: 75px;
  width: auto;
}
#base::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 30px solid #000;
}
/* Nav */
#navbar {
  width: 100%;
  background: #fff;
  z-index: 1000;
  top: 0;
  position: sticky;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  padding-left: 150px;
}

.logo img {
  height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #333;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #000;
}

.nav-links a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  flex-direction: column;
  position: absolute;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  top: 100%;
  left: 0;
  animation: fadeIn 0.3s ease forwards;
}

.dropdown-content a {
  padding: 10px;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    display: none;
    padding: 15px;
    gap: 10px;
    border-top: 1px solid #eee;
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
  }

  .dropdown-content.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hamburger Animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
#hero-section-main-container {
  height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(
    90deg,
    rgb(0, 255, 136, 0.1),
    rgb(0, 119, 255, 0.1)
  );
  align-items: center;
}
#hero-section-inner-container {
  max-width: 1200px;
  width: 95%;
  display: flex;
  height: 90%;
  justify-content: center;
  align-items: center;
}
#hero-section-left-container {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
}
#hero-section-left-container h2 {
  font-size: 65px;
  font-family: "Varela Round", sans-serif;
  font-weight: 900;
}
#hero-section-left-container h2 span {
  font-size: 65px;
  font-family: "Varela Round", sans-serif;
  font-weight: 900;
  position: relative;
}

#hero-section-left-container h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #00ff88, #0077ff);
  border-radius: 50px;
}
#hero-section-left-container p {
  font-size: medium;
  color: gray;
}
#hero-section-left-container a {
  font-size: medium;
  color: white;
  background-color: #000;
  padding: 10px 20px;
  height: fit-content;
  width: fit-content;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid black;
  border-radius: 20px;
  transition: all 0.3s;
}
#hero-section-left-container a:hover {
  background-color: white;
  color: #000;
}
#hero-section-right-container {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#hero-section-right-container video {
  width: 500px;
  height: 400px;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}
#hero-section-right-container::before {
  content: "";
  position: absolute;
  padding: 5px;
  width: 500px;
  height: 400px;
  background: linear-gradient(90deg, #00ff88, #0077ff);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  z-index: 0;
}
@media (max-width: 991px) {
  #hero-section-main-container {
    height: 450px;
  }
  #hero-section-left-container h2 {
    font-size: 55px;
  }
  #hero-section-left-container h2 span {
    font-size: 55px;
  }
  #hero-section-left-container a {
    padding: 8px 15px;
  }
  #hero-section-right-container video {
    width: 370px;
    height: 350px;
  }
  #hero-section-right-container::before {
    width: 370px;
    height: 350px;
  }
}
@media (max-width: 768px) {
  #hero-section-main-container {
    height: 400px;
  }
  #hero-section-left-container h2 {
    font-size: 45px;
  }
  #hero-section-left-container h2 span {
    font-size: 45px;
  }
  #hero-section-left-container a {
    padding: 8px 15px;
  }
  #hero-section-right-container video {
    width: 280px;
    height: 270px;
  }
  #hero-section-right-container::before {
    width: 280px;
    height: 270px;
  }
}
@media (max-width: 600px) {
  #hero-section-main-container {
    height: fit-content;
  }
  #hero-section-inner-container {
    height: fit-content;
    flex-direction: column;
  }
  #hero-section-left-container {
    height: fit-content;
    padding-top: 50px;
    width: 100%;
  }
  #hero-section-right-container {
    height: fit-content;
    padding: 10px 0;
    width: 100%;
  }
  #hero-section-right-container video {
    width: 300px;
    height: 270px;
  }
  #hero-section-right-container::before {
    width: 300px;
    height: 270px;
  }
}

/* After Hero Section */
#after-hero-section {
  padding: 30px 20px;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

.after-hero-section-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.after-hero-section-left,
.after-hero-section-middle,
.after-hero-section-right {
  flex: 1 1 300px;
  min-width: 280px;
}
.after-hero-section-title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.after-hero-section-gradient-bar {
  display: inline-block;
  width: 70px;
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(90deg, #ffd700, #00cfff);
  vertical-align: middle;
  margin-left: 8px;
}
.after-hero-section-link {
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.after-hero-section-link:hover {
  border-color: #000;
}
.after-hero-section-middle p,
.after-hero-section-right p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}
@media (max-width: 992px) {
  .after-hero-section-container {
    flex-direction: column;
  }
  .after-hero-section-left,
  .after-hero-section-middle,
  .after-hero-section-right {
    flex: 1 1 100%;
  }
  .after-hero-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .after-hero-section-title {
    font-size: 1.6rem;
  }
  .after-hero-section-gradient-bar {
    width: 50px;
    height: 6px;
  }
}

/* Trusted */
.trusted-main-heading {
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trusted-main-heading h2 {
  text-align: center;
  font-size: 45px;
  padding-bottom: 20px;
}
#trusted-image-section {
  padding: 20px;
}
.trusted-image-container {
  max-width: 1200px;
  margin: 0 auto;
}
.trusted-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
}
.trusted-image-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.trusted-image-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .trusted-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Steps To Complete */
.steps-to-complete-container {
  max-width: 1200px;
  background: black;
  margin: 20px auto;
  border-radius: 20px;
  width: 95%;
  padding: 20px;
}
.steps-to-complete-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.steps-to-complete-tab {
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.steps-to-complete-tab img {
  width: 170px;
  height: auto;
  object-fit: cover;
  border: 2px solid;
  border-radius: 0;
  border-image: linear-gradient(45deg, gold, #00cfff) 1;
}

.steps-to-complete-tab.active img {
  border-image: linear-gradient(45deg, gold, #ff00ff) 1;
}

.steps-to-complete-title {
  margin-top: 8px;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.steps-to-complete-tab.active::after {
  content: "";
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid gold;
}

.steps-to-complete-content-box {
  background-color: #333;
  padding: 20px;
  margin-top: 20px;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  flex-wrap: wrap;
  border: 2px solid;
  border-image: linear-gradient(45deg, gold, #00cfff) 1;
  text-align: left;
}

.steps-to-complete-content-box h2 {
  color: white;
  font-size: 40px;
  width: 30%;
}
.steps-to-complete-content-box p {
  color: white;
  width: 50%;
  font-size: large;
}

@media (max-width: 991px) {
  .steps-to-complete-content-box h2 {
    font-size: 30px;
    width: 50%;
  }
  .steps-to-complete-content-box p {
    font-size: medium;
  }
}
@media (max-width: 768px) {
  .steps-to-complete-tab img {
    width: 120px;
    height: 90px;
  }
  .steps-to-complete-title {
    font-size: 12px;
  }
}

/* MOBILE DROPDOWN SECTION */
.mobile-container {
  display: none;
  background-color: #111;
  padding: 20px;
  width: 95%;
  margin: 20px auto;
  color: white;
  border-radius: 20px;
}
.mobile-label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.mobile-dropdown {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  border: 2px solid;
  border-image: linear-gradient(45deg, gold, #00cfff) 1;
  background-color: #222;
  color: white;
}
.mobile-content-box {
  background-color: #222;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  border: 2px solid;
  border-image: linear-gradient(45deg, gold, #00cfff) 1;
}
.mobile-content-box h2 {
  margin-top: 0;
}
@media (max-width: 768px) {
  .steps-to-complete-container {
    display: none;
  }
  .mobile-container {
    display: block;
  }
}

/* Approach Section */
/* Container */
#approach-section {
  padding: 50px 20px;
}

.approach-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Image box */
.approach-image-box {
  position: relative;
  flex: 1 1 350px;
  max-width: 500px;
}

.approach-image {
  width: 300px;
  height: 300px;
  border-radius: 15px;
  display: block;
}

/* Overlay box */
.approach-overlay {
  height: 250px;
  width: 250px;
  border-radius: 10px;
  background: linear-gradient(90deg, #00ff88, #0077ff);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.approach-overlay::after {
  content: "";
  position: absolute;
  top: 05px;
  left: 05px;
  right: 5px;
  bottom: 5px;
  background-color: black;
  border-radius: 10px;
  z-index: -1;
}
.approach-overlay p {
  color: white;
  text-align: center;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: small;
}
.approach-overlay a {
  color: black;
  background: linear-gradient(90deg, #00ff88, #0077ff);
  height: 50%;
  width: 100%;
  border-radius: 0 0 10px 10px;
  padding: 5px 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  font-weight: bold;
  align-items: center;
  text-decoration: none;
  font-size: small;
}

/* Text box */
.approach-text-box {
  flex: 1 1 350px;
}

.approach-text-box h2 {
  font-size: 45px;
  font-weight: 900;
  width: 80%;
  margin-bottom: 15px;
  font-family: "Varela Round", sans-serif;
}

.approach-text-box p {
  font-size: 1rem;
  color: gray;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .approach-container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  #approach-section {
    padding: 20px 20px;
  }
  .approach-container {
    flex-direction: column;
    text-align: center;
  }
  .approach-image-box {
    position: relative;
    flex: none;
    height: fit-content;
    width: 100%;
  }
  .approach-text-box h2 {
    font-size: 40px;
    font-weight: 900;
    width: 100%;
  }
  .approach-text-box p {
    font-size: small;
    margin-bottom: 5px;
  }
  .approach-text-box {
    flex: none;
    height: fit-content;
    width: 100%;
  }
}

/* Packaging MAchine */
.packaging-machine-heading {
  height: fit-content;
  width: 100%;
  display: flex;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
}
.packaging-machine-heading h2 {
  text-align: center;
  font-size: 45px;
}
.packaging-machine-heading h2 span {
  background: linear-gradient(90deg, #00ff88, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
/* Box */

.packaging-carousel {
  width: 90%;
  margin: auto;
  max-width: 1200px;
  margin-top: 25px;
}

.packaging-box {
  margin: auto;
  height: 400px;
  border-radius: 10px;
  width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.packaging-box-image-container {
  height: 250px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.packaging-box-image-container img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
.packaging-box-text-container {
  height: 150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.packaging-box-text-container h3 {
  font-size: 20px;
  color: #000;
  font-family: "Varela Round", sans-serif;
  padding-left: 10px;
  width: 100%;
  text-align: left;
}
.packaging-box-text-container p {
  font-size: small;
  color: gray;
  padding-left: 10px;
  width: 100%;
  text-align: left;
}
.packaging-box-text-container ul {
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  list-style: none;
  gap: 5px;
  flex-direction: row;
  padding: 0;
  margin: 0;
}
.packaging-box-text-container ul li {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
}
.packaging-box-text-container ul li img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* Packaging Lines */
#packaging-line-container {
  height: 400px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  box-sizing: border-box;
}

.packaging-line-slide {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 400px;
  width: 100%;
}

.packaging-line-left {
  height: 400px;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.packaging-line-left h2 {
  font-size: 40px;
  color: black;
}
.packaging-line-left p {
  font-size: medium;
  color: #555;
}
.packaging-line-left button {
  padding: 10px 20px;
  background-color: black;
  color: white;
  transition: all 0.3s;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid black;
}
.packaging-line-left button:hover {
  color: black;
  background-color: white;
}

.packaging-line-right {
  height: 400px;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.packaging-line-right img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  #packaging-line-container {
    height: fit-content;
  }
  .packaging-line-slide {
    flex-direction: column;
    text-align: center;
    height: fit-content;
  }
  .packaging-line-right {
    height: fit-content;
    width: 100%;
    margin-top: 10px;
  }
  .packaging-line-left {
    height: fit-content;
    width: 100%;
  }
  .packaging-line-left h2 {
    font-size: 25px;
  }
}

/* Award */
#award-main-container {
  height: 400px;
  width: 95%;
  max-width: 1200px;
  background-color: #eee;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin: 30px auto;
}

#award-left-container {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding-left: 20px;
}

#award-left-container h2 {
  color: black;
  font-size: 30px;
  font-family: "Varela Round", sans-serif;
}

#award-left-container h2 span {
  background: linear-gradient(90deg, #00ff88, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

#award-left-container p {
  color: #555;
  font-size: medium;
}

#award-left-container ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}

#award-left-container ul li {
  color: #555;
  font-size: medium;
  position: relative;
  padding-left: 35px;
}

#award-left-container ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  border-radius: 50%;
  background: linear-gradient(90deg, #00ff88, #0077ff);
  font-size: medium;
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#award-right-container {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.award-carousel {
  position: relative;
  height: 300px;
  width: auto;
}

.award-carousel img {
  height: 300px;
  width: auto;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.award-carousel img.active {
  opacity: 1;
}
@media (max-width: 768px) {
  #award-left-container p  , #award-left-container ul li {
    font-size: small;
}
.award-carousel img {
  height: 280px;
}
#award-left-container ul li::before {
    font-size: small;
    height: 20px;
    width: 20px;
}
}
@media (max-width: 600px) {
  #award-main-container {
    height: 350px;
  }
  #award-left-container {
    width: 40%;
  }
  #award-right-container {
    width: 60%;
  }
  #award-left-container h2 {
    font-size: 20px;
  }
  #award-left-container p  , #award-left-container ul li {
    font-size: 10px;
}
.award-carousel img {
  height: 200px;
}
    #award-left-container ul li::before {
        font-size: 8px;
        height: 15px;
        width: 15px;
    }
     #award-left-container ul li {
        padding-left: 22px;
      }
}

/* Case Studies */
#studies-line-left {
    padding: 10px;
}
#studies-line-right img {
    height: 100%;
    width: 95%;
    object-fit: contain;
}
@media (max-width: 991px) {

#studies-line-left h2 {
    font-size: 25px;
}
#studies-line-left p {
    font-size: small;
}
}


/* Footer */

#footer-main-container {
  height: 300px;
  width: 100%;
  border-top: 0.5px solid white;
  background-color: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer-second-main-container {
  height: 90%;
  width: 95%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#footer-left-container {
  height: 100%;
  width: 30%;
  display: flex;
  justify-content: left;
  align-items: center;
}
#footer-left-items {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#footer-left-text {
  display: flex;
  justify-content: left;
  height: 20%;
  width: 100%;
}
#footer-left-text h6 {
  color: white;
  padding-left: 10px;
  position: relative;
  bottom: 5px;
  font-size: small;
}
#dot {
  height: 10px;
  width: 10px;
  position: relative;
  top: -2px;
  background-color: white;
  border-radius: 50%;
}
#social-icons-container {
  width: 70%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  bottom: 10px;
}
#social-icons-container img {
  height: 20px;
  transition: all 0.3s;
  width: 20px;
}
#social-icons-container a {
  height: 35px;
  padding: 10px;
  width: 35px;
  border-radius: 10px;
  background-image: linear-gradient(to right, #fff, #fff);
  display: flex;
  transition: all 0.3s;
  margin-left: 5px;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
}
#social-icons-container a:hover {
  background-image: none;
  background-color: #121212;
}
#social-icons-container a:hover img {
  filter: invert(1);
}
#footer-mid1-container {
  height: 100%;
  position: relative;
  top: 15%;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#footer-mid1-top {
  height: 10%;
  width: 70%;
}
#footer-mid1-mid {
  height: 20%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#email-form {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#footer-mid1-mid input {
  background-color: transparent;
  color: white;
  font-weight: 200;
  text-align: center;
  border: none;
  height: 40px;
  width: 50%;
  border-bottom: 2px solid #fff;
}
#email-form button {
  background: none;
  border: none;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
}
#email-form button img {
  height: 50%;
  width: 50%;
}
#footer-mid1-bottom {
  height: auto;
  width: 70%;
}
#footer-mid1-bottom p {
  font-size: xx-small;
  color: white;
}
#footer-mid2-container {
  height: 100%;
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer-mid2-ul {
  height: 100%;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: left;
}
#footer-mid2-ul a {
  font-size: small;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  color: white;
  border-bottom: 1px solid #121212;
}
#footer-mid2-ul a:hover {
  border-bottom: 1px solid white;
}
#footer-mid2-ul span {
  text-decoration: none;
  color: white;
  cursor: pointer;
  transition: all 1s;
  font-size: small;
}
#footer-right-container {
  height: 100%;
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 3000px) {
  #footer-left-container {
    width: 20%;
  }
  #footer-left-text h6 {
    font-size: x-large;
  }
  #social-icons-container {
    width: 100%;
    bottom: 50px;
  }
  #footer-mid1-mid input {
    width: 60%;
    position: relative;
    right: 0px;
  }
  #footer-mid1-bottom p {
    font-size: large !important;
  }
  #footer-mid2-ul {
    height: 80%;
  }
  #footer-mid2-ul a {
    font-size: x-large;
  }
  #footer-mid2-ul span {
    font-size: x-large;
  }
  #footer-mid2-ul span {
    font-size: xx-large;
  }
  #last-footer-top {
    height: 500px !important;
  }
  #last-footer-top-left button {
    width: 200px !important;
    height: 50px !important;
    font-size: large !important;
  }
  #last-footer-top-left span {
    font-size: x-large !important;
    left: -80px !important;
  }
  #last-footer-top-left p {
    font-size: xx-large !important;
    left: 0px !important;
  }
}
@media (min-width: 1800px) {
  #footer-second-main-container {
    height: 90%;
    width: 80%;
  }
  #footer-left-container {
    width: 10%;
  }
  #footer-left-text h6 {
    font-size: large;
  }
  #footer-mid1-container {
    width: 40%;
  }
  #footer-mid1-bottom p {
    font-size: x-small;
  }
}
@media (max-width: 991px) {
  #footer-main-container {
    height: 500px;
  }
  #footer-second-main-container {
    flex-direction: column-reverse;
    justify-content: space-between;
  }
  #footer-left-container {
    height: 15%;
    width: 80%;
    position: relative;
    top: 20px;
  }
  #footer-mid2-container {
    height: 40%;
    width: 100%;
  }
  #footer-mid2-ul {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: left;
  }
  #footer-right-container {
    height: 35%;
    width: 100%;
  }
  #footer-left-items {
    height: 70%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  #footer-left-text {
    display: flex;
    justify-content: left;
    height: 20%;
    position: relative;
    right: 60px;
    width: 100%;
    position: absolute;
  }
  #footer-left-text h6 {
    color: white;
    font-size: small;
  }
  #social-icons-container {
    height: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  #social-icons-container a {
    transition: all 1s;
    border-radius: 10px;
    display: flex;
    align-items: center;
  }
  #footer-mid1-container {
    display: none;
  }
}
@media (max-width: 600px) {
  #footer-main-container {
    height: 500px;
  }
  #footer-second-main-container {
    flex-direction: column-reverse;
    justify-content: space-between;
  }
  #footer-left-container {
    height: 15%;
    width: 80%;
    position: relative;
    top: 20px;
  }
  #footer-mid2-container {
    height: 40%;
    width: 100%;
  }
  #footer-mid2-ul {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: left;
  }
  #footer-right-container {
    height: 35%;
    width: 100%;
  }
  #footer-left-items {
    height: 70%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  #footer-left-text {
    display: none;
  }
  #footer-left-text h6 {
    color: white;
    font-size: x-small;
    padding-top: 3px;
  }
  #social-icons-container {
    height: 90%;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    width: 100%;
  }
  #social-icons-container a {
    transition: all 1s;
    border-radius: 10px;
    display: flex;
    margin-left: 5px;
    align-items: center;
  }
  #footer-mid1-container {
    display: none;
  }
}
@media (max-width: 400px) {
  #footer-main-container {
    height: 500px;
  }
  #footer-second-main-container {
    flex-direction: column-reverse;
    justify-content: space-between;
  }
  #footer-left-container {
    height: 15%;
    width: 80%;
    position: relative;
    top: 20px;
  }
  #footer-mid2-container {
    height: 40%;
    width: 100%;
  }
  #footer-mid2-ul {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: left;
  }
  #footer-right-container {
    height: 35%;
    width: 100%;
  }
  #footer-left-items {
    height: 70%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  #footer-left-text {
    display: none;
    justify-content: left;
    height: 20%;
    position: relative;
    right: 60px;
    width: 100%;
    position: absolute;
  }
  #footer-left-text h6 {
    color: white;
    font-size: 8px;
    position: relative;
    right: 5px;
    bottom: 03px;
  }
  #social-icons-container {
    height: 90%;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #social-icons-container a {
    transition: all 1s;
    border-radius: 05px;
    display: flex;
    margin-left: 10px;
    align-items: center;
  }
  #footer-mid1-container {
    display: none;
  }
}
#last-footer-main-container {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #121216;
}
#last-footer-top {
  height: 260px;
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#last-footer-top-left {
  height: 100%;
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#last-footer-top-left img {
  width: 160px;
  height: auto;
  position: relative;
  left: 40px;
}
#last-footer-top-left button {
  height: 40px;
  width: 150px;
  border: none;
  border-radius: 30px;
  background-color: #333;
  color: white;
  font-weight: 600;
  text-align: center;
  margin-left: 40px;
  position: relative;
  padding-right: 30px;
  padding-left: 30px;
  transition: background-color 0.3s;
  font-size: small;
}
#last-footer-top-left button::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: white;
}
#last-footer-top-left button:hover {
  background-image: linear-gradient(to right, #fff, #fff);
  color: #000;
}
#last-footer-top-left button:hover::before {
  color: #000;
}
#last-footer-top-left span {
  color: #fff;
  font-size: medium;
  position: relative;
  letter-spacing: 1px;
  top: 5px;
  left: -30px;
}
#last-footer-top-left p {
  color: #fff;
  font-size: medium;
  position: relative;
  letter-spacing: 1px;
  left: 40px;
  top: 5px;
}
#last-footer-top-right {
  height: fit-content;
  width: 25%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}
#last-footer-top-right h2 {
  color: #fff;
  font-size: x-large;
}
#address-container {
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  width: 100%;
}
#contact-container {
  height: 45px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}
#address-container img,
#contact-container img {
  height: 25px;
  width: auto;
}
#address-container p,
#contact-container p {
  font-size: medium;
  height: 100%;
  padding-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  color: white;
  width: fit-content;
}
#last-footer-bottom {
  height: 100px;
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#last-footer-bottom-left {
  width: 20%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#last-footer-bottom-left p {
  color: white;
  font-size: xx-small;
}
#last-footer-bottom-mid {
  width: 30%;
  height: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
#last-footer-bottom-mid a {
  text-decoration: none;
  padding-right: 5px;
  font-size: x-small;
  color: white;
  cursor: pointer;
  border-right: 1px solid white;
}
#last-footer-bottom-mid a:hover {
  color: #636363;
}
#last-footer-bottom-right {
  width: 20%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#last-footer-bottom-right a {
  text-decoration: none;
  padding-right: 5px;
  font-size: x-small;
  cursor: pointer;
  color: white;
}
#last-footer-bottom-right a:hover {
  color: #fff;
}
@media (min-width: 1800px) {
  #last-footer-top {
    height: 300px;
    width: 80%;
  }
  #last-footer-bottom-left p {
    color: white;
    font-size: large;
  }
  #last-footer-bottom-mid a {
    font-size: large;
  }
  #last-footer-bottom-right a {
    font-size: large;
  }
}
@media screen and (min-width: 3001px) and (max-width: 5000px) {
  #footer-main-container {
    height: 600px;
  }
  #last-footer-main-container {
    height: 500px;
  }
}
@media (max-width: 991px) {
  #last-footer-top {
    height: 450px;
    flex-direction: column;
  }
  #last-footer-top-left {
    height: 60%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  #last-footer-top-left img {
    left: 0;
  }
  #last-footer-top-left button {
    margin-left: 0;
  }
  #last-footer-top-left span {
    font-size: small;
    margin-top: 5px;
    left: 0;
  }
  #last-footer-top-left p {
    left: 0;
    font-size: small;
  }
  #last-footer-top-right {
    height: 40%;
    text-align: center;
    width: 100%;
  }
  #contact-container,
  #address-container {
    justify-content: center;
  }
  #contact-container p,
  #address-container p {
    padding-left: 10px;
  }
  #last-footer-bottom {
    height: 100px;
    width: 90%;
    flex-direction: column;
  }
  #last-footer-bottom-mid,
  #last-footer-bottom-left,
  #last-footer-bottom-right {
    width: 100%;
  }
  #last-footer-bottom-mid {
    height: 30%;
  }
  #last-footer-bottom-left {
    height: 30%;
  }
  #last-footer-bottom-right {
    height: 20%;
  }
}
@media (max-width: 600px) {
  #last-footer-top {
    height: 500px;
  }
  #last-footer-top-left {
    height: 50%;
    width: 100%;
  }
  #last-footer-top-right {
    height: 50%;
    width: 100%;
    text-align: center;
  }
  #last-footer-bottom {
    height: 80px;
    width: 90%;
    flex-direction: column;
  }
  #last-footer-bottom-mid,
  #last-footer-bottom-left,
  #last-footer-bottom-right {
    width: 100%;
  }
  #last-footer-bottom-mid {
    height: 30%;
  }
  #last-footer-bottom-left {
    height: 30%;
  }
  #last-footer-bottom-right {
    height: 20%;
  }
  #last-footer-top-left span {
    font-size: small;
  }
}
@media (max-width: 400px) {
  #last-footer-top {
    height: 440px;
  }
  #last-footer-top-left {
    height: 60%;
    width: 100%;
  }
  #last-footer-top-right {
    height: 40%;
    width: 100%;
    text-align: center;
  }
  #last-footer-bottom {
    height: 70px;
    width: 90%;
    flex-direction: column;
  }
  #last-footer-bottom-mid,
  #last-footer-bottom-left,
  #last-footer-bottom-right {
    width: 100%;
  }
  #last-footer-bottom-mid {
    height: 30%;
  }
  #last-footer-bottom-left {
    height: 30%;
  }
  #last-footer-top-left span {
    font-size: small;
  }
  #last-footer-bottom-right {
    height: 20%;
  }
}

#whatsapp-popup-main-container {
  height: fit-content;
  width: 250px;
  position: fixed;
  padding: 10px;
  bottom: 10px;
  left: 10px;
  background-color: rgb(255, 255, 255);
  display: none;
  flex-direction: column;
  box-shadow: 1px 1px 5px black;
  border-radius: 10px;
  justify-content: center;
  z-index: 99999;
  align-items: center;
}
#whatsapp-popup-main-container span {
  position: absolute;
  top: 0px;
  right: 10px;
  cursor: pointer;
  font-weight: 900;
  color: #121216;
}
#whatsapp-popup-main-container span:hover {
  color: #000;
}
#whatsapp-icon-container {
  height: 45px;
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
#whatsapp-icon-container img {
  height: 30px;
  width: auto;
}
#whatsapp-icon-container a {
  color: #000;
  font-size: medium;
  font-weight: 600;
  text-decoration: none;
}
#whatsapp-icon-container a:hover {
  text-decoration: underline;
}
#whatsapp-popup-main-container p {
  color: #333;
  font-size: small;
  font-weight: 400;
  width: 90%;
  text-align: center;
}
@media (max-width: 600px) {
  #whatsapp-popup-main-container {
    padding: 5px;
    width: 200px;
  }
  #whatsapp-popup-main-container p {
    font-size: x-small;
    margin: 0;
  }
  #whatsapp-icon-container img {
    height: 20px;
  }
  #whatsapp-icon-container a {
    color: #000;
    font-size: small;
  }
  #whatsapp-icon-container {
    height: 30px;
  }
}
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.whatsapp-icon {
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.whatsapp-icon:hover {
  transform: scale(1.1) rotate(-5deg);
}
#icon-text img {
  height: 60px;
  width: 90px;
  animation: brightenScale 3s ease-in-out infinite;
  transition: filter 0.3s ease, transform 0.3s ease;
  animation-play-state: running;
}
#icon-text img:hover {
  animation-play-state: paused;
  filter: brightness(1.3);
  transform: scale(1.1);
}
@keyframes brightenScale {
  0%,
  100% {
    filter: brightness(1);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.3);
    transform: scale(1.1);
  }
}
@media (min-width: 2000px) {
  #icon-text img {
    height: 100px;
    width: auto;
  }
}
@media (max-width: 480px) {
  .whatsapp-icon {
    padding: 0px;
    font-size: 26px;
  }
  .whatsapp-popup {
    width: 250px;
  }
  .whatsapp-widget {
    bottom: 20px;
    right: 0px;
  }
  #icon-text img {
    height: 50px;
    width: 80px;
  }
  #backtotop-main-container {
    bottom: 80px;
    right: 20px;
  }
}
#whatsapp-a img {
  height: 100%;
  width: 30%;
}
#backtotop-main-container {
  position: fixed;
  bottom: 100px;
  right: 40px;
  display: none;
  z-index: 1000;
}
#back-to-top-btn {
  background-color: #000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  font-weight: 900;
  transition: all 1s;
  justify-content: center;
  align-items: center;
}
#back-to-top-btn:hover {
  background-color: #000;
}
@media (min-width: 1800px) {
  #backtotop-main-container {
    bottom: 120px;
  }
  #back-to-top-btn {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }
}
@media (min-width: 3000px) {
  #backtotop-main-container {
    bottom: 120px;
  }
  #back-to-top-btn {
    height: 50px;
    width: 50px;
    font-size: 25px;
  }
}
