body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
/* Responsive Header Styles */
header {
  background-color: #000;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
}

.header-logo {
  height: 50px;
  width: auto;
  z-index: 1001;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #fbb040;
}

.btn-primary {
  background: #fbb040;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(251,176,64,0.15);
}

.btn-primary:hover {
  background: #6c63ff;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  nav ul li {
    width: 100%;
  }

  nav a {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
  }

  .btn-primary {
    margin-top: 1rem;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hamburger span {
    background: #fff;
  }
}

.about {
  padding: 2.5rem 0 1.5rem 0;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.about-img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(108,99,255,0.10);
}
.about-text h3 {
  margin: 0 0 0.2em 0;
  color: #6c63ff;
  font-size: 1.3rem;
}
.about-text h4 {
  margin: 0 0 0.5em 0;
  font-size: 1.1rem;
  color: #fbb040;
}
.about-text p {
  margin: 0.2em 0;
  color: #444;
  font-size: 1rem;
}
.about-row{
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  
}

.about-section {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  margin: 48px auto 32px auto;
  padding: 32px 24px;
  max-width: 100vw;
  box-sizing: border-box;
}

.about-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #18181a;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.about-row {
  display: flex;
  flex-direction: row;
  /* align-items: flex-start; */
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.about-text {
  flex: 1.5;
  text-align: left;
  font-family: 'poppine', Arial, sans-serif;
}

.about-title .highlight {
  color: #723fa3;
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: 1px;
}

.about-tagline {
  color: #f7941d;
  font-weight: 600;
  margin: 10px 0 24px 0;
  font-size: 1.1em;
  line-height: 1.5;
}

.about-text p {
  color: #444;
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.about-image img {
  width: 380px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
}

@media (max-width: 900px) {
  .about-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .about-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }
  .about-text {
    text-align: center;
  }
  .about-section {
    padding: 24px;
  }
  .about-heading {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .about-title .highlight {
    font-size: 1em;

  }
  .about-tagline {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .about-text p {
    font-size: 0.95em;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
   .about-section {
    padding: 16px;
   }
   .about-heading {
    font-size: 1.6rem;
    margin-bottom: 20px;
   }
   .about-tagline {
    font-size: semibold;
    margin-bottom: 15px;
    font-style: poppins;
    font-size: 28px;
    margin-top: 2px;

   }
   .about-text p {
     font-size: 0.9em;
     margin-bottom: 8px;
   }
   .about-image img {
    width: 100%;
    height: auto;
   }
}

.services {
  background: #f7f7fa;
  padding: 60px 0;
}

.services h3 {
  text-align: center;
  color: #18181a;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  overflow: visible;
}

.service-card {
  position: relative;
  width: 100%;
  overflow: visible;
  margin: 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 40px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  /* background: #ffb84d; */
  color: #fff;
  border-radius: 50%;
  width: 400px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1);
  overflow: hidden;
}

.service-icon img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
  margin: 0 0 10px 0;
  color: #723fa3;
  font-size: 1.1em;
  font-weight: 700;
  position: relative;
  padding-left: 15px;
  text-transform: uppercase;
}

.service-card h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background-color: #f7941d;
  border-radius: 2px;
}

.service-card p {
  color: #444;
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
    max-width: 400px;
  }
  .services h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .service-card {
    padding: 30px 20px;
  }
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .service-icon img {
    width: 50px;
    height: 50px;
  }
  .contact-form {
    padding: 1.2rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .services h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  .service-card {
    padding: 25px 15px;
  }
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .service-icon img {
    width: 40px;
    height: 40px;
  }
}

.testimonials {
  background: #f7f7fa;
  padding: 60px 0;
}
.testimonials h3 {
  text-align: center;
  color: #18181a;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.testimonials-grid {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #fbb040 #f1f1f1;
  -webkit-overflow-scrolling: touch;
}

/* Customize scrollbar for Webkit browsers (Chrome, Safari) */
.testimonials-grid::-webkit-scrollbar {
  height: 8px;
}

.testimonials-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: #fbb040;
  border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
  background: #6c63ff;
}

.testimonial-card {
  flex: 0 0 auto;
  width: 300px;
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card p {
  color: #444;
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0 0 15px 0;
}
.testimonial-card span {
  display: block;
  margin-top: 0;
  color: #723fa3;
  font-weight: 700;
  font-size: 0.9em;
}
.testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.clients {
  padding: 60px 0;
  background: #fff;
}
.clients h3 {
  text-align: center;
  color: #18181a;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #fbb040 #f1f1f1;
  -webkit-overflow-scrolling: touch;
}

/* Customize scrollbar for Webkit browsers (Chrome, Safari) */
.clients-logos::-webkit-scrollbar {
  height: 8px;
}

.clients-logos::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.clients-logos::-webkit-scrollbar-thumb {
  background: #fbb040;
  border-radius: 10px;
}

.clients-logos::-webkit-scrollbar-thumb:hover {
  background: #6c63ff;
}

.clients-logos img {
  flex: 0 0 auto;
  height: 30px;
  width: 30px;
  width: auto;
  object-fit: contain;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  transition: transform 0.2s ease;
}
.clients-logos img:hover {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .about-container, .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-img {
    width: 100%;
    max-width: 350px;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 16px;
  }
}

@media (max-width: 600px) {
  .container {
    width: 98%;
    padding: 0 0.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }
  .service-card {
    padding: 20px 10px;
  }
  .testimonials-grid {
    /* flex-direction: column; / / Commented out to prevent stacking on mobile */
    gap: 1rem;
  }
  .clients-logos {
    gap: 1rem;
  }
  .contact-form {
    padding: 1.2rem 0.5rem;
  }
  .hero-images {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-side-img,
  .hero-left-img,
  .hero-right-img,
  .hero-center-img {
    width: 60vw;
    max-width: 90vw;
    height: auto;
  }
  .hero-left-img,
  .hero-right-img {
    display: none;
  }
  .service-card-dropdown .service-dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 0;
    border-radius: 0 0 18px 18px;
  }
}
  .hero {
      text-align: center;
      padding: 40px 0 0 0;
      background: #fff;
      position: relative;
    }
    
    .hero h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  color: #1D1B29;
  letter-spacing: 0.125rem;
  font-weight: 700;
}

 
    .hero-center-img {
      /* Only for the image, not a container */
      width: 365px;
      height: 290px;
      max-width: 30vw;
      object-fit: contain;
      position: static;
      display: block;
      margin: 0;
      left: unset;
      transform: unset;
      bottom: unset;
      z-index: unset;
    }
    
    .hero-center-img img {
      width: 22.81rem;
      height: 18.13rem;
      object-fit: contain;
    }
    .hero-icon {
      position: absolute; /* Keep absolute positioning for placement */
      
      /* Removed border-radius, border, and box-shadow */
      width: 200px; /* Adjust size of surrounding icons */
      height: 200px; /* Adjust size of surrounding icons */
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: none; /* Removed box-shadow */
      border: none; /* Removed border */
      z-index: 2;
    }
    .hero-icon img {
      /* width: 100%; 
      height: 100%;  */
      object-fit: contain;
      border-radius: none; /* Removed border-radius */
     
    }
   
    .hero-semicircle {
      position: relative;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px 0; /* Reduced padding */
      margin-top: -100px; /* Initial adjustment */
    }

    .hero-icon.left {
      left: 10%;
      top: 50%;
      transform: translateY(-50%) rotate(-45deg);
    }
    .hero-icon.left-mid {
      left: 25%;
      top: 20%;
      transform: rotate(-20deg);
    }
    .hero-icon.right-mid {
      right: 25%;
      top: 20%;
      transform: rotate(20deg);
    }
    .hero-icon.right {
      right: 10%;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
    }
    .brand-title {
  margin: 0;
   font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  display: flex;
  justify-content: center;
  gap: 0.3em;
}
.brand-title span {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
}

   .hero-banner {
      margin-top: 80px;
      background: #18181a;
      color: #fbb040;
      font-size: 2rem;
      font-weight: 700;
      border-radius: 100vw 100vw 0 0 / 120px 120px 0 0;
      padding: 32px 0 24px 0;
      max-width: 100vw;
      width: 100%;
      letter-spacing: 0.0625rem;
    }
    @media (max-width: 900px) {
      .hero-semicircle {
        max-width: 98vw;
        height: 180px;
      }
      .hero-icon, .hero-icon img {
        width: 80px;
        height: 80px;
      }
      .hero-center-img {
        width: 120px;
        height: 120px;
      }
      .hero-center-img img {
        width: 90px;
        height: 90px;
      }
      .hero-banner {
        font-size: 1.2rem;
        margin-top: 40px;
        padding: 18px 0 12px 0;
      }
    }
    @media (max-width: 600px) {
      .hero-title, .hero-gradient {
        font-size: 1.2rem;
      }
      .hero-semicircle {
        height: auto; /* Adjust height for reduced padding */
        padding: 10px 0; /* Reduced padding */
        margin-top: -60px; /* Adjust margin-top for mobile */
      }
      .hero-icon, .hero-icon img {
        width: 48px;
        height: 48px;
      }
      .hero-center-img img {
        background-color: transparent;
        display: block;
        max-width: 100%;
        height: auto;
      }
      
      .hero-center-img img {
        width: 50px;
        height: 50px;
      }
      .hero-banner {
        font-size: 1rem;
        margin-top: 20px;
        padding: 10px 0 6px 0;
      }
    }

    .container1 {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 20px;
      padding: 20px;
      border: none;
    }

    .column {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .image-wrapper {
   
      border-radius: 40px;
      overflow: hidden;
      padding: 5px;
     
    }

    .image-wrapper img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 40px;
    }
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  background-color: #fff;
  border-radius: 32px;
  padding: 60px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 30px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: 0 auto;
}

.left-section {
  flex: 1;
  text-align: center;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.logo {
  width: 520px !important;
  max-width: 90vw !important;
  height: auto !important;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.logo:hover {
  transform: scale(1.05);
}

.brand-name {
  font-size: 20px;
  letter-spacing: 6px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
}

.brand-name span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.brand-name span:hover {
  transform: translateY(-2px);
}

.right-section {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 550px;
  width: 100%;
  min-width: 300px;
}

.right-section h3 {
  text-align: center;
  color: #18181a;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.right-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f4af37;
  border-radius: 2px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

input, textarea {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  flex: 1;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #f4af37;
  box-shadow: 0 0 0 3px rgba(244, 175, 55, 0.1);
}

input::placeholder, textarea::placeholder {
  color: #999;
}

textarea {
  height: 140px;
  resize: none;
}

button {
  background-color: #f4af37;
  color: #000;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 200px;
  align-self: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

button:hover {
  background-color: #e59b1b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 175, 55, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    padding: 40px;
    gap: 40px;
  }
  
  .right-section {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .logo {
    width: 220px !important;
  }

  .brand-name {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .right-section h3 {
    font-size: 1.8rem;
  }

  input, textarea {
    padding: 14px;
  }

  button {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 20px;
    border-radius: 20px;
  }

  .logo {
    width: 180px !important;
  }

  .brand-name {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .right-section h3 {
    font-size: 1.6rem;
  }
}

  
    /* Footer Base Styles */


    footer {
      background-color: #f8f8f8;
      color: #666;
      padding: 40px 20px 20px;
      text-align: left;
    }
    
    .footer-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .footer-column {
      flex: 1;
      min-width: 200px;
      max-width: 300px;
      text-align: left;
    }

    .footer-column h4 {
      color: #1a1a1a;
      font-size: 16px;
      margin-bottom: 15px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .footer-column h3 {
      margin-top: 5px;
      margin-bottom: 15px;
      font-size: 1.2em;
      color: #1a1a1a;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 8px;
      font-size: 14px;
      color: #666;
    }

    .footer-column p {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
    }

    .footer-logo {
      width: 120px;
      height: auto;
      margin-bottom: 15px;
      display: block;
      margin-left: 0;
      margin-right: auto;
    }

    .highlight {
      color: #1a1a1a;
    }

    .tagline, .social-icons {
      display: none;
    }

    .footer-bottom {
      border-top: 1px solid #eee;
      margin-top: 30px;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      font-size: 13px;
      color: #666;
      max-width: 1000px;
      margin: 30px auto 0 auto;
    }

    .footer-bottom p {
       color: #666;
    }

    .footer-links a {
      color: #666;
      text-decoration: none;
      margin-left: 15px;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    /* Footer Responsive */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .footer-column {
        min-width: 100%;
        text-align: center;
      }

      .footer-column h4,
      .footer-column h3,
      .footer-column ul,
      .footer-column p {
        text-align: center;
        color: #1a1a1a;
     }
     .footer-column ul li {
        color: #666;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 10px;
      }

      .footer-bottom p,
      .footer-links a {
         color: #666;
      }

      .footer-logo {
        margin: 0 auto 15px auto;
      }
    }
    

    @media (max-width: 480px) {
      /* Center Text Responsive */
      .center-text h2 {
        font-size: 24px;
      }

      .center-text .subtitle {
        font-size: 15px;
      }
    }

/* Global Responsive Styles */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }
  
  .hero h2 {
    font-size: 3rem;
  }
  
  .brand-title {
    font-size: 3rem;
  }
  
  .brand-title span {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .brand-title {
    font-size: 2.8rem;
  }
  
  .brand-title span {
    font-size: 1.8rem;
  }
  
  .hero-banner {
    font-size: 1.6rem;
    margin-top: 80px;
  }
  
  .about-row {
    gap: 40px;
  }
  
  .about-image img {
    width: 320px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .contact-container {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  /* Hero Section */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero h2 {
    font-size: 2rem;
  }
  
  .brand-title {
    font-size: 2.2rem;
    flex-direction: column;
    gap: 0;
    font-weight: 600;
  }
  
  .brand-title span {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
  }
  
  .hero-center-img {
    width: 240px;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: static; 
  }
  
  .hero-center-img img {
    width: 240px;
    height: 240px;
    object-fit: contain;
  }
  
  .hero-semicircle {
    display: none;
  }

  .hero-banner {
    font-size: 1.2rem;
    margin-top: 25px;
    padding: 20px 0 15px 0;
  }
  
  /* About Section */
  .about-section {
    padding: 24px 16px;
  }
  
  .about-heading {
    font-size: 1.8rem;
  }
  
  .about-row {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .about-image {
    justify-content: center;
  }
  
  .about-image img {
    width: 100%;
    max-width: 300px;
  }
  
  /* Services Section */
  .services {
    padding: 40px 0;
  }
  
  .services h3 {
    font-size: 1.8rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
  }
  
  .service-icon img {
    width: 60px;
    height: 60px;
  }
  
  /* Gallery Section */
  .container1 {
    flex-direction: column;
    align-items: center;
  }
  
  .column {
    width: 100%;
    max-width: 500px;
  }
  
  .image-wrapper {
    width: 100%;
  }
  
  .image-wrapper img {
    height: auto;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 40px 0;
  }
  
  .testimonials h3 {
    font-size: 1.8rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  /* Clients Section */
  .clients {
    padding: 40px 0;
  }
  
  .clients h3 {
    font-size: 1.8rem;
  }
  
  /* .clients-logos {
    flex-wrap: wrap; 
    justify-content: 
     /* gap: 20px;  */
  */
  
  .clients-logos img {
    height: 200px;
    width: 200px;
  }
  
  /* Contact Section */
  .contact-container {
    flex-direction: column;
    padding: 40px 0; /* Adjusted padding */
    gap: 30px;
    align-items: center;
    justify-content: center;
    border: none;
    width: 100%; /* Ensure container takes full width on mobile */
    margin: 0; /* Remove margin on mobile */
    box-sizing: border-box;
  }
  
  .left-section {
    width: 100%;
    max-width: 300px;
  }
  
  .right-section {
    width: 100%;
    max-width: 400px;
    /* Ensure form content is centered within the right section on mobile */
    align-items: center; 
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  input,
  textarea {
    width: 100%;
  }
  
  button {
    width: 100%;
    max-width: 200px;
    align-self: center;
  }
  
  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  
  .footer-column {
    width: 100%;
    max-width: 300px;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* Hero Section */
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .brand-title {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 0;
    font-weight: 600;
  }
  
  .brand-title span {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.1;
  }
  
  .hero-semicircle {
    height: 150px;
  }
  
  .hero-icon {
    width: 80px;
    height: 80px;
  }
  
  .hero-icon img {
    width: 50px;
    height: 50px;
  }
  
  .hero-center-img {
    width: 120px;
    height: 120px;
  }
  
  .hero-center-img img {
    width: 90px;
    height: 90px;
  }
  
  .hero-banner {
    font-size: 1rem;
    margin-top: 15px;
    padding: 15px 0 10px 0;
  }
  
  /* About Section */
  .about-heading {
    font-size: 1.5rem;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-tagline {
    font-size: 1rem;
  }
  
  /* Services Section */
  .services h3 {
    font-size: 1.5rem;
  }
  
  .service-card {
    padding: 20px 15px;
  }
  
  /* Gallery Section */
  .column {
    max-width: 100%;
  }
  
  /* Testimonials Section */
  .testimonials h3 {
    font-size: 1.5rem;
  }
  
  .testimonial-card {
    padding: 20px 15px;
  }
  
  /* Clients Section */
  .clients h3 {
    font-size: 1.5rem;
  }
  
  .clients-logos img {
    height: 150px;
    width: 150px;
  }
  
  /* Contact Section */
  .contact-container {
    padding: 30px 0; /* Adjusted padding */
    border: none; /* Ensure no border on very small screens */
    width: 100%; /* Ensure container takes full width on very small screens */
    margin: 0; /* Remove margin on very small screens */
    box-sizing: border-box;
  }
  
  input,
  textarea {
    padding: 12px;
    font-size: 14px;
    width: 100%;
  }
  
  button {
    padding: 12px;
    width: 100%;
  }
  
  /* Footer */
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
  }
  
  .social-icons a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
  }
}

/* Fix for service card last child */
@media (max-width: 768px) {
  .services-grid .service-card:last-child {
    width: 100%;
    height: auto;
  }
}

/* Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-column {
    min-width: 100%;
    text-align: center;
  }

  .footer-column h4,
  .footer-column h3,
  .footer-column ul,
  .footer-column p {
    text-align: center;
    color: #1a1a1a;
 }
 .footer-column ul li {
    color: #666;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom p,
  .footer-links a {
     color: #666;
  }

  .footer-logo {
    font-size: 0.9rem;
  }
}

/* Add some basic styling for the new footer structure if needed */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li:last-child {
  margin-bottom: 0;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #18181a;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 1rem 2rem;
  border-top: 1px solid #eee;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

.footer-links a {
  color: #444;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fbb040;
}

.footer-bottom .footer-links {
  display: flex;
  gap: 20px; /* Adjust gap between links */
}

@media (max-width: 768px) {
  .footer-bottom .footer-links {
    flex-direction: column;
    gap: 5px; /* Adjust gap for stacked links */
    margin-top: 10px; /* Space above stacked links */
  }
  .footer-links a {
    margin-left: 0; /* Remove left margin for stacked links */
  }
}

.hero-center-img {
  /* Only for the image, not a container */
  width: 365px;
  height: 290px;
  max-width: 30vw;
  object-fit: contain;
  position: static;
  display: block;
  margin: 0;
  left: unset;
  transform: unset;
  bottom: unset;
  z-index: unset;
}
.hero-center-img img {
  width: 22.81rem;
  height: 18.13rem;
  object-fit: contain;
}
.hero-icon {
  position: absolute;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.surrounding-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.hero-icon.left {
  left: 10%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.hero-icon.left-mid {
  left: 25%;
  top: 20%;
  transform: rotate(-20deg);
}
.hero-icon.right-mid {
  right: 25%;
  top: 20%;
  transform: rotate(20deg);
}
.hero-icon.right {
  right: 10%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.brand-title {
  margin: 0;
   font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  display: flex;
  justify-content: center;
  gap: 0.3em;
}
.brand-title span {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
}

   .hero-banner {
      margin-top: 80px;
      background: #18181a;
  
      font-size: 2rem;
      font-weight: 700;
      border-radius: 100vw 100vw 0 0 / 120px 120px 0 0;
      padding: 32px 0 24px 0;
      max-width: 100vw;
      width: 100%;
      letter-spacing: 0.0625rem;
    }

@media (max-width: 1200px) {
  .hero-center-img {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 992px) {
  .hero-center-img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .surrounding-image-container {
    display: none;
    width: auto;
    height: auto;
  }

  .hero-center-img img {
    width: 9.38rem;
    height: 9.38rem;
    object-fit: contain;
  }

  .hero-semicircle {
    display: block;
    height: auto;
    padding: 15px 0; /* Reduced padding */
    margin-top: -80px; /* Adjust margin-top for tablet/mobile */
  }

  .hero h2 {
    font-size: 2rem;
  }

  .brand-title {
    font-size: 2.2rem;
    flex-direction: column;
    gap: 0;
    font-weight: 600;
  }

  .brand-title span {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .hero-banner {
    font-size: 1.2rem;
    margin-top: 25px;
    font-weight: 600;
    line-height: 1.4;
  }

  .hero-center-img {
    position: relative;
    margin: 0 auto;
    display: block;
    justify-content: initial;
    align-items: initial;
  }
}

@media (max-width: 480px) {
  .surrounding-image-container {
    display: none;
    width: auto;
    height: auto;
  }

  .hero-center-img img {
    width: 7.5rem;
    height: 7.5rem;
    object-fit: contain;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .brand-title {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 0;
    font-weight: 600;
  }

  .brand-title span {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .hero-banner {
    font-size: 1rem;
    margin-top: 15px;
    font-weight: 600;
    line-height: 1.4;
  }

  .hero-center-img {
    position: relative;
    margin: 0 auto;
    display: block;
    justify-content: initial;
    align-items: initial;
  }
}

/* Hero Images Flex Container */
.hero-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 1rem 0;
}

.hero-side-img,
.hero-left-img,
.hero-right-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-center-img {
  width: 365px;
  height: 290px;
  max-width: 30vw;
  object-fit: contain;
  position: static;
  display: block;
  margin: 0;
  left: unset;
  transform: unset;
  bottom: unset;
  z-index: unset;
}

@media (max-width: 900px) {
  .hero-images {
    gap: 1rem;
  }
  .hero-side-img,
  .hero-left-img,
  .hero-right-img {
    max-width: 180px;
  }
  .hero-center-img {
    width: 200px;
    height: 160px;
    max-width: 40vw;
  }
}

@media (max-width: 600px) {
  .hero-images {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-side-img,
  .hero-left-img,
  .hero-right-img,
  .hero-center-img {
    width: 60vw;
    max-width: 90vw;
    height: auto;
  }
  .hero-left-img,
  .hero-right-img {
    display: none;
  }
}

/* Animation Styles */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.animate-on-scroll.fade-in-up {
  transform: translateY(40px);
}
.animate-on-scroll.fade-in-left {
  transform: translateX(-40px);
}
.animate-on-scroll.fade-in-right {
  transform: translateX(40px);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

/* Service Card Dropdown Styles */
.service-card-dropdown {
  position: relative;
  width: 100%;
}
.service-card-dropdown .dropdown-arrow {
  font-size: 0.9em;
  margin-left: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}
.service-card-dropdown .service-dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  border-radius: 0 0 10px 10px;
  min-width: unset;
  z-index: 20;
  padding: 0.5em 0;
  margin-top: 4px;
  animation: dropdownFadeIn 0.2s;
  box-sizing: border-box;
}
.service-card-dropdown .service-dropdown-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-card-dropdown .service-dropdown-content li {
  padding: 0.7em 1.2em;
  color: #333;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1em;
}
.service-card-dropdown .service-dropdown-content li:hover {
  background: #f4b53f;
  color: #fff;
}
.service-card-dropdown:hover .service-dropdown-content,
.service-card-dropdown:focus-within .service-dropdown-content {
  display: block;
}
.service-card-dropdown:hover .dropdown-arrow,
.service-card-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}
@media (hover: none) and (pointer: coarse) {
  .service-card-dropdown .dropdown-arrow {
    pointer-events: auto;
  }
  .service-card-dropdown .dropdown-arrow:active + .service-dropdown-content,
  .service-card-dropdown .dropdown-arrow:focus + .service-dropdown-content {
    display: block;
  }
}
@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
