* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
margin: 0;
padding: 0;
background-color: #ddd;
font-family: 'Poppins', sans-serif;
width: 100%;
overflow-x: hidden;
}

.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: linear-gradient(to right, #ffffffcc, #f0f0f0aa);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.main-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #7209b7, #a64ac9);
  border-radius: 4px;
}



.logo img {
  height: 50px;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links,
.enquire-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
}

.nav-links a,
.enquire-btn {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a i {
  margin-right: 6px;
}

.nav-links a:hover {
  color: #7209b7;
  text-shadow: none;
  transform: scale(1.03);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0%;
  background: #7209b7;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.enquire-btn {
  padding: 8px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, #a64ac9, #7209b7);
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(114, 9, 183, 0.2);
  margin-left: 80px;
  white-space: nowrap;
}

.enquire-btn:hover {
  background: linear-gradient(135deg, #7209b7, #a64ac9);
  box-shadow: 0 0 12px #a64ac9, 0 0 20px #7209b7;
  transform: scale(1.05);
}

.menu-icon {
  font-size: 24px;
  display: none;
  cursor: pointer;
  color: #7209b7;
}

.mobile-menu {
  display: none;
  flex-direction: column;

  padding: 30px 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  max-height: 600px;
}

.mobile_navlinks{
  list-style: none;
  padding: 0px 10px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.mobile-enquire {
  list-style: none;
  padding: 10px 10px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.mobile_navlinks{
  width: 100%;
}

.mobile_navlinks li
{
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ddd;
  
}

.mobile_navlinks a {
  text-decoration: none;
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile_navlinks a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  border-radius: 8px;
  border-bottom-style: initial;
  position: relative;
  text-align: center;
  transition: color 0.3s ease;
}


.mobile_navlinks a:hover {
  color: #7209b7;
}

.mobile-enquire a.enquirebtn {
  background: linear-gradient(135deg, #7209b7, #f107a3);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
}

.mobile-enquire a.enquirebtn:hover {
  background: linear-gradient(135deg, #f107a3, #7209b7);
}

@media (max-width: 1091px) {
  nav {
      display: none;
  }
  .menu-icon {
      display: block;
  }
  .mobile-menu {
      display: none;
  }
  .mobile-menu.active {
      display: flex;
  }
}

.banner {
  position: relative;
  height: 550px;
  background: url('Imagefiles/aboutusbanner.jpeg') no-repeat center center/cover;   
  padding: 20px;
  overflow: hidden;
  background-position: -50px center;

}

@media (max-width: 768px) {
  .banner {
    height: 250px;
    background-position: -20px center;
  }
}
@media (max-width: 480px) {
  .banner {
    height: 150px;
    background-position: left center;
  }

.section-1 {
  background: #f9f9fc;
  padding: 100px 20px;
  overflow-x: hidden;
}
}

.section1-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.image-container {
  flex: 1 1 40%;
  text-align: center;
}

.image-container img {
  max-width: 100%;
  width: 100%;
  height: auto;
  transform: rotate(-5deg);
  border-radius: 20px;
}

.text-container {
  flex: 1 1 50%;
}

.text-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e2e60;
  margin-bottom: 20px;
}

.main-desc {
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 10px;
}

.sub-desc {
  font-size: 1rem;
  color: #777;
  margin-bottom: 30px;
}

.learn-btn {
  background: #5c2e91;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.learn-btn:hover {
  background: #4a2473;
}

.formula-section {
  padding: 60px 20px;
  background: #fff;
  width: 100%;
  overflow-x: hidden;
}

.formula-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  padding: 0 10px;
}

.formula-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.formula-row.reverse {
  flex-direction: row-reverse;
}

.formula-text {
  flex: 1;
  min-width: 250px;
}

.formula-text h2 {
  font-size: 35px;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.formula-text p {
  font-size: 20px;
  color: #555;
}

.formula-img {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.formula-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .section1-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-container,
  .image-container {
    flex: 1 1 100%;
  }

  .text-container h2 {
    font-size: 2rem;
  }

  .main-desc,
  .sub-desc {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .formula-row,
  .formula-row.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .formula-text h2 {
    font-size: 24px;
  }

  .formula-text p {
    font-size: 15px;
  }

  .formula-img img {
    width: 90%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section-1 {
    padding: 60px 15px;
  }

  .text-container h2 {
    font-size: 1.8rem;
  }

  .main-desc,
  .sub-desc {
    font-size: 0.95rem;
  }

  .learn-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .formula-section {
    padding: 40px 15px;
  }

  .formula-text h2 {
    font-size: 20px;
  }

  .formula-text p {
    font-size: 14px;
  }

  .formula-container {
    gap: 50px;
  }
}
  .section-3-wrapper {
    position: relative;
  }
  
  .bg-image-container img {
    width: 100%;
    height: 450px;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    object-fit: cover; 
 
  }
  
  
  .why-choose-container {
    background: #fff;
    max-width: 1200px;
    margin: -100px auto 0 auto;
    padding: 40px 20px;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    z-index: 2;
    top: -150px;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #222;
  }
  
  .why-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .why-card {
    background: #fefefe;
    border-radius: 20px;
    padding: 30px 20px;
    flex: 1 1 300px;
    max-width: 330px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
  }
  
  .why-card:hover {
    transform: translateY(-10px);
  }
  
  .icon-box {
    font-size: 40px;
    color: #6a1b9a;
    margin-bottom: 15px;
  }
  
  .why-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .why-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }
  
  .cta {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
  }
  

  @media (max-width: 768px) {
    .why-choose-container {
      margin: -80px 20px 0 20px;
      padding: 30px 15px;
      top: -50px;
    }

    .bg-image-container img {
        width: 100%;
        height: 250px;
        display: block;
        margin: 0 auto; 
        object-fit: cover; 
     
      }
  
    .why-cards {
      flex-direction: column;
      align-items: center;
    }
  }
  
  .contact-enquiry-section {
    background: linear-gradient(to right, #0e2c44, #1f1c2c); 
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
  }

  .contact-enquiry-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at top left, rgba(106, 17, 203, 0.3), transparent 70%),
                radial-gradient(circle at bottom right, rgba(37, 117, 252, 0.2), transparent 70%);
    z-index: 0;
  }
  
  .contact-enquiry-section > * {
    position: relative;
    z-index: 1;
  }
  
  .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
  }

  .contact-box {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
  }
  
  .contact-box:hover {
    transform: translateY(-3px);
  }
  
  .contact-box i {
    font-size: 24px;
    margin-right: 15px;
    color: #9c6eff; 
  }
  
 
  .glass-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    padding: 30px;
    margin-top: 30px;
  }

  .btn-purple {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(106, 17, 203, 0.4);
    transition: all 0.3s ease;
  }
  
  .btn-purple:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(106, 17, 203, 0.6);
  }

  @media (max-width: 768px) {
    .section-title {
      text-align: center;
      font-size: 24px;
    }
  
    .btn-purple {
      width: 100%;
    }
  
    .contact-box {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .contact-box i {
      margin-bottom: 10px;
    }
  }

.footer-section {
  background: linear-gradient(to bottom right, #2a0d26, #3b1b38);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  color: white;
}

.footer-section::before,
.footer-section::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.footer-section::before {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.footer-section::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

.footer-section .container {
  position: relative;
  z-index: 1;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.floating-icons .icon {
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  color: #ccc;
  transition: transform 0.3s, color 0.3s;
}

.floating-icons .icon:hover {
  color: #fff;
  transform: scale(1.1);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .footer-section .col-lg-3 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (max-width: 991px) {
  .footer-section .col-md-6 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 768px) {
  .footer-section .col-sm-12 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .footer-section .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


#content-wrapper {
  padding: 80px 20px;
  max-width: 1500px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

