    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", "Montserrat", sans-serif;
    }
    
    html {
      scroll-behavior: auto;
    }
    
    /* Lenis Smooth Scroll Styles */
    html.lenis {
      height: auto;
    }
    
    .lenis.lenis-smooth {
      scroll-behavior: auto;
    }
    
    .lenis.lenis-smooth [data-lenis-prevent] {
      overscroll-behavior: contain;
    }
    
    .lenis.lenis-stopped {
      overflow: hidden;
    }
    
    .lenis.lenis-scrolling iframe {
      pointer-events: none;
    }

    body {
      background: var(--gradient-subtle);
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 76px;
      min-height: 100vh;
    }

    header {
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      z-index: 1000;
    }

    header .container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }

    header h1 {
      font-size: 1.4rem;
      color: #003366;
      font-weight: 700;
    }
.dropdown-item {
    border-radius: 6px;
    margin: 2px 8px;
    transition: all 0.2s ease;
    padding: 10px 20px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--primary);
    background: linear-gradient(90deg, rgba(240, 244, 255, 0.3) 0%, rgba(240, 244, 255, 0.8) 50%, rgba(240, 244, 255, 0.3) 100%);
    padding-left: 28px;
}

.dropdown-item:hover::before {
    height: 70%;
}
.symbol {
    width: 180px;
    max-width: 25%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Scroll animations */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animations for multiple elements */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

/* Pulse animation for icons on hover */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.icon-circle:hover, .service-icon:hover {
    animation: pulse 1s infinite;
}
.symbol1 {
    width: 150px;
    max-width: 50%;
    opacity: 0.5;
    height: auto;
}
.logo {
    max-width: 150px;
    height: auto;
}
.legal-section{
    background: var(--gradient-primary) !important;
    position: relative;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.legal-section .card{
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff;
}
    .navbar {
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      padding: 0.75rem 0;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.98) !important;
      box-shadow: 0 6px 40px rgba(0, 0, 0, 0.15);
      padding: 0.5rem 0;
    }
    
    .navbar-nav .nav-link {
      color: #333;
      font-weight: 500;
      margin: 0 15px;
      transition: all 0.3s ease;
      position: relative;
      padding: 8px 12px;
    }
    
    .navbar-nav .nav-link::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #003366, #3b6db1);
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover::before {
      width: 80%;
    }
    
    .navbar-nav .nav-link:hover {
      color: #003366;
      transform: translateY(-2px);
    }
    
    .dropdown-menu {
      margin-top: 8px;
      border: 1px solid rgba(0, 51, 102, 0.08);
      background: #ffffff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      padding: 8px 4px;
      animation: fadeInDown 0.2s ease;
      min-width: 220px;
      overflow: hidden;
    }
    
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      background-image: url("https://magicpage-dev.propstory.com/ImageUploads/Image_Upload/1nnx5eapkmewhhn8n.webp");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      background-attachment: fixed;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: 120px 1rem 80px;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, 
        rgba(0, 33, 102, 0.4) 0%, 
        rgba(0, 33, 102, 0.3) 50%, 
        rgba(0, 33, 102, 0.5) 100%);
      z-index: 1;
    }
    
    .hero > * {
      position: relative;
      z-index: 2;
    }

    .hero h2 {
      font-size: 4.5rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
      color: #ffffff;
      text-shadow: 2px 3px 6px rgba(0,0,0,0.4);
      animation: fadeInUp 1s ease;
      letter-spacing: -1px;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .hero span{
      font-size: 4rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.25rem;
      max-width: 700px;
      margin-bottom: 2.5rem;
      color: rgba(255, 255, 255, 0.95);
      text-shadow: 1px 2px 4px rgba(0,0,0,0.4);
      line-height: 1.6;
    }

    /* Hero Button - Clean and Simple */
    .hero-btn {
      display: inline-block;
      background: white;
      color: #003366;
      padding: 12px 35px;
      border-radius: 5px;
      font-weight: 500;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      border: none;
    }
    
    .hero-btn:hover {
      background: #f5f5f5;
      color: #003366;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    
    /* Modern Button Styles */
    .btn-modern {
      background: rgba(255, 255, 255, 0.9);
      color: var(--primary) !important;
      padding: 8px 20px;
      border-radius: 22px;
      font-weight: 500;
      font-size: 0.85rem;
      letter-spacing: 0.3px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.5);
    }
    
    .btn-modern i {
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }
    
    .btn-modern:hover {
      background: #ffffff;
      color: var(--primary) !important;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .btn-modern:hover i {
      transform: translateX(2px);
    }

    section {
      padding: 80px 20px;
    }
    .container {
      max-width: 1100px;
      margin: auto;
    }

    /* About */
    .about {
      text-align: center;
    }

    /* Services */
    .services h3 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      color: #003366;
    }
    #services{
      background: linear-gradient(135deg, #f5f7fa 0%, #e8f1ff 100%);
      position: relative;
    }
    
    #services::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    }
    
    #about h3, #services h3{
      color: #003366;
      font-size: 2.5rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 2rem;
    }
    #about p{
      font-size: 1.15rem;
      line-height: 1.8;
      margin: 1.5rem auto 0;
      color: #555;
      max-width: 800px;
    }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    .card {
      background: linear-gradient(135deg, #fff, #f8f9ff);
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(0, 51, 102, 0.05);
    }
    
    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #003366, #3b6db1);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    
    .card:hover::before {
      transform: scaleX(1);
    }
    
    .card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 50px rgba(0, 51, 102, 0.15);
      background: linear-gradient(135deg, #fff, #f0f4ff);
    }
    .card h4, .card h5 {
      color: #003366;
      margin-bottom: 1rem;
      font-weight: 600;
      font-size: 1.2rem;
    }
    
    .card p {
      color: #666;
      line-height: 1.7;
      font-size: 0.95rem;
    }

    /* Contact */
    .contact {
      text-align: center;
    }
    .contact h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #003366;
    }
    .contact p {
      font-size: 1.1rem;
    }
    .contact a {
      color: #003366;
      font-weight: 600;
      text-decoration: none;
    }
    .contact a:hover {
      text-decoration: underline;
    }

    footer {
      background: #003366;
      color: #fff;
      text-align: center;
      padding: 1rem;
    }
.gradient-heading {
    color: #fff !important;
}
.fa-grow{
  font-size: 4em;
}

.section-heading {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #003366, #3b6db1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #003366, #3b6db1);
  border-radius: 2px;
}
.login_btn{
    background: var(--gradient-primary);
    padding: 0.75em 2.5rem;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.login_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.login_btn:hover::before {
    width: 300px;
    height: 300px;
}

.login_btn:hover{
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
  /* Footer Styles */
  .main-footer {
    background: var(--gradient-primary);
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    margin-top: 0;
  }
  
  .main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
    pointer-events: none;
  }
  
  .footer-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
  }
  
  .footer-brand h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .footer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-link:hover {
    color: #fff;
    transform: translateX(5px);
  }
  
  .footer-link i {
    width: 20px;
    text-align: center;
  }
  
  .footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
  }
  
  .powered-by {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
  }
  
  .powered-by a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
  }
  
  .powered-by a:hover {
    opacity: 0.8;
  }
  :root {
    --primary: #003366;
    --primary-light: #3b6db1;
    --primary-dark: #001a33;
    --accent: #4a90e2;
    --background: #f9fbfd;
    --secondary: #e8f1ff;
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-accent: linear-gradient(135deg, var(--primary-light), var(--accent));
    --gradient-subtle: linear-gradient(180deg, var(--background), var(--secondary));
    --gradient-card: linear-gradient(145deg, #ffffff, #f3f6fb);
    --shadow-sm: 0 4px 15px rgba(0, 51, 102, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 51, 102, 0.15);
    --shadow-lg: 0 20px 50px rgba(0, 51, 102, 0.2);
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #003366, #3b6db1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
  }
  
  .card:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
  }
  .service-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 51, 102, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 109, 177, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .service-item:hover::after {
    opacity: 1;
  }
  
  .service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.15);
    border-color: rgba(0, 51, 102, 0.2);
  }

/* Service icons */
.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #003366, #3b6db1);
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 51, 102, 0.2);
}

.service-item:hover .service-icon {
  transform: rotate(-10deg) scale(1.1);
  border-radius: 50%;
  background: linear-gradient(135deg, #3b6db1, #003366);
}

/* Text styling */
.service-item h4 {
  margin-top: 15px;
  font-weight: 600;
}

.service-item p {
  color: #495057;
}

/* Purpose Section */
.purpose-content {
  background: var(--gradient-primary);
  position: relative;
}

.purpose-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1));
}

.purpose-section .row {
  border-radius: 12px;
  overflow: hidden;
}

.purpose-img img {
  object-fit: cover;
  height: 100%;
}
.d_flex{
    display: flex;
    justify-content: center;
}
    /* Responsive */
    @media(max-width: 768px) {
      .logo {
        max-width: 120px;
      }
      
      .navbar {
        padding: 0.5rem 0;
      }
      
      .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border: 1px solid rgba(0, 51, 102, 0.1);
      }
      
      .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 5px 0;
        border-radius: 8px;
        transition: all 0.3s ease;
      }
      
      .navbar-nav .nav-link:hover {
        background: var(--gradient-subtle);
        padding-left: 1.5rem;
      }
      
      .navbar-nav .nav-link::before {
        display: none;
      }
      
      .d_flex {
        display: block !important;
        justify-content: center;
      }
      
      .hero {
        padding-top: 100px;
        min-height: 100vh;
      }
      
      .hero h2 {
        font-size: 3rem;
        line-height: 1.2;
      }
      
      .hero span {
        font-size: 2.5rem;
      }
      
      .hero p {
        font-size: 1rem;
        padding: 0 20px;
      }
      
      .symbol {
        width: 120px;
        max-width: 30%;
      }
      
      .symbol1 {
        width: 100px;
      }
      
      .hero-btn {
        padding: 10px 28px;
        font-size: 14px;
      }
      
      .btn-modern {
        padding: 8px 18px;
        font-size: 0.82rem;
      }
      
      #about .col-sm-6 {
        margin-bottom: 2rem;
      }
      
      .section-heading {
        font-size: 2rem;
      }
      
      .section-heading::after {
        width: 60px;
      }
      
      .card, .service-item {
        margin-bottom: 1.5rem;
      }
      
      /* Address cards mobile optimization */
      .legal-section {
        padding: 40px 10px !important;
      }
      
      .legal-section .container {
        padding: 0 5px;
      }
      
      .legal-section .col-md-6 {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 20px;
      }
      
      .legal-section .card {
        margin: 0 auto;
        max-width: 100%;
      }
      
      .legal-section .card-body {
        padding: 20px 15px !important;
      }
      
      .legal-section h3 {
        font-size: 1.8rem;
        margin-bottom: 20px !important;
      }
      
      .legal-section .card-title {
        font-size: 1.2rem;
      }
      
      .legal-section .card-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px !important;
      }
      
      .legal-section iframe {
        height: 180px !important;
      }
      
      .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }
      
      .footer-contact {
        align-items: center;
      }
      
      .purpose-content {
        padding: 3rem 2rem !important;
      }
      
      .purpose-section .row {
        border-radius: 0;
      }
      
      .card-body {
        padding: 1.5rem;
      }
      
      section {
        padding: 60px 15px;
      }
    }
    
    @media(max-width: 480px) {
      .hero h2 {
        font-size: 2.2rem;
        font-weight: 600;
      }
      
      .hero span {
        font-size: 1.8rem;
      }
      
      .hero p {
        font-size: 0.9rem;
      }
      
      .symbol {
        width: 100px;
        max-width: 35%;
      }
      
      .hero-btn {
        padding: 10px 25px;
        font-size: 13px;
      }
      
      .section-heading {
        font-size: 1.6rem;
      }
      
      /* Extra small devices - address cards */
      .legal-section {
        padding: 30px 5px !important;
      }
      
      .legal-section .container {
        padding: 0;
      }
      
      .legal-section .row {
        margin-left: 0;
        margin-right: 0;
      }
      
      .legal-section .col-md-6 {
        padding-left: 0;
        padding-right: 0;
      }
      
      .legal-section .card-body {
        padding: 15px 10px !important;
      }
      
      .legal-section h3 {
        font-size: 1.5rem;
      }
      
      .legal-section .card-title {
        font-size: 1.1rem;
        margin-bottom: 10px !important;
      }
      
      .legal-section .card-text {
        font-size: 0.85rem;
      }
      
      .legal-section iframe {
        height: 150px !important;
        border-radius: 5px !important;
      }
      
      .card h4, .card h5 {
        font-size: 1.1rem;
      }
      
      .card p, .service-item p {
        font-size: 0.9rem;
      }
      
      .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }
      
      .service-icon {
        width: 60px;
        height: 60px;
      }
    }
    
    /* Tablet optimizations */
    @media(min-width: 769px) and (max-width: 1024px) {
      .hero h2 {
        font-size: 4rem;
      }
      
      .hero span {
        font-size: 3.5rem;
      }
      
      .container {
        max-width: 90%;
      }
      
      .card {
        padding: 1.5rem;
      }
    }
/* Disclaimer Section */
.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f1ff 100%);
  border-top: 1px solid rgba(0, 51, 102, 0.1);
}

.disclaimer-card, .quick-links-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.disclaimer-card:hover, .quick-links-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
}

.disclaimer-header, .quick-links-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-light);
}

.disclaimer-header i, .quick-links-header i {
  color: var(--primary);
  font-size: 1.5rem;
}

.disclaimer-header h5, .quick-links-header h5 {
  margin: 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.3rem;
}

.disclaimer-text {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links-list li {
  margin-bottom: 15px;
}

.quick-links-list a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.quick-links-list a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(5px);
}

.quick-links-list i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.quick-links-list a:hover i {
  transform: translateX(3px);
}