* {
    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/contactusbanner.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;
    }
  
  }

.contact_container {
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
  }

  .contact_container::before,
  .contact_container::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
  }
  .contact_container::before {
    width: 300px;
    height: 300px;
    background: #7b2cbf;
    top: -100px;
    left: -100px;
  }
  .contact_container::after {
    width: 200px;
    height: 200px;
    background: #4cc9f0;
    bottom: -60px;
    right: -60px;
  }
 
  .section-title {
    font-size: 28px;
    font-weight: bold;
    color: #560bad;
    margin-bottom: 15px;
  }
  
  .contact-box {
    display: flex;
    align-items: center;
    font-size: 16px;
    background: #f5f5f5;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  .contact-box i {
    color: #7b2cbf;
    margin-right: 10px;
    font-size: 20px;
  }

  .glass-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
  }

  .form-control,
  .form-select {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px 14px;
  }
  .form-control:focus,
  .form-select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(123, 44, 191, 0.4);
    border-color: #7b2cbf;
  }

  #enquirebutton {
    background-color: #7b2cbf;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
    transition: background 0.3s ease;
  }
  #enquirebutton:hover {
    background-color: #5a189a;
  }

  @media (max-width: 768px) {
    .contact_container {
      padding: 25px 15px;
    }
    .section-title {
      text-align: center;
    }
  }

.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;
  }
  
  