* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
  margin: 0;
  padding: 0;
  
  font-family: 'Poppins', sans-serif;
  }

  .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/whychooseback.jpg') no-repeat bottom center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
    color: #333333;
    overflow: hidden;
}
  @media (max-width: 768px) {
    .banner {
        height: 250px;
    }
   
  }
  
  @media (max-width: 480px) {
    .banner {
        height: 150px;
    }
  }  

  .why-heading-section {
    text-align: center;
    margin-top: 25px;
  }

  .why-heading-section h1 {
    font-size: 32px;
    font-weight: 800;
    color: #222;
  }

  .why-heading-section h2.why-heading {
    font-size: 18px;
    color: #777;
    margin-top: 10px;
  }

  .why-choose-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    position: relative;
  }

  .why-left-image {
    flex: 1 1 50%;
    position: relative;
    z-index: 1;
  }

  .why-left-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .why-right-content {
    flex: 1 1 50%;
    position: relative;
    z-index: 2;
    margin-left: -100px;
    border-radius: 10px;
    overflow: hidden;    
  }

  .why-slide {
    display: none;
    padding: 30px 40px;
    background: #fff;
    border-left: 8px solid #530456;
  }

  .why-slide.active {
    display: block;
  }

  .why-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .why-number {
    background: #9b0671;
    color: white;
    font-size: 35px;
    font-weight: bold;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    margin-right: 20px;
    border-style:inset;
  }

  .why-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
  }

  .why-item ul {
    padding-left: 20px;
    color: #555;
    font-size: 14px;
  }

  
  .why-dots {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    z-index: 2;
  }
  
  .why-dots .dot {
    width: 14px;
    height: 14px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .why-dots .dot.active {
    background-color: #2e022f;
  }
 
  @media (max-width: 768px) {
    .why-choose-wrapper {
      flex-direction: column;
      padding: 20px;
    }

    .why-left-image,
    .why-right-content {
      margin: 0;
      flex: 1 1 100%;
    }

    .why-right-content {
      margin-top: -60px;
      padding: 20px;
      background-color: rgba(225, 225, 225, 0.5);
      top: -50px;
    }

    .why-slide {
      padding: 20px;
    }

    .why-item {
      flex-direction: row;
      align-items: flex-start;
    }

    .why-dots {
      position: static;
      margin-bottom: 20px;
    }
    .why-number {
        background: #9b0671;
        color: white;
        font-size: 25px;
        font-weight: bold;
        width: 75px;
        height: 45px;
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        margin-right: 20px;
        border-style:inset;
      }
  }

  .why-cta {
    background: linear-gradient(135deg, #007bff, #00d4ff);
    color: white;
    text-align: center;
    padding: 50px 20px;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 1000px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .why-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 10%, transparent 70%);
    animation: float-glow 8s linear infinite;
    z-index: 0;
  }
  
  @keyframes float-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .why-cta p {
    font-size: 1.3rem;
    margin: 15px 0;
    position: relative;
    z-index: 1;
  }
  
  .why-cta .bold {
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  .enquire-btn1 {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
  }
  
  .enquire-btn1:hover {
    background: white;
    color: #007bff;
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
  }
 
  @media (max-width: 768px) {
    .why-cta {
      padding: 40px 15px;
      margin-left:20px ;
      margin-right: 20px;
    }
  
    .why-cta p {
      font-size: 1.1rem;
    }
  
    .why-cta .bold {
      font-size: 1.3rem;
    }
  
    .enquire-btn1 {
      padding: 12px 30px;
      font-size: 1rem;
    }
  }
  
  .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;
  }
  
  