/* Main Styles */
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        /* Section Backgrounds */
        .hero-section {
            background: linear-gradient(135deg, #eff6ff, #fff, #fef9c3);
            color: black;
            padding: 80px 0 60px;
            min-height: 50vh;
        }
        .process-section {
            background: linear-gradient(135deg, #0a1d3a, #123c66, #0a1d3a);
            padding: 80px 0;
        }

        .cta-section-wrapper {
            background-color: #f9fafb;
            padding: 80px 0;
        }
     
/* Header */
    header {
      transition: all 0.3s ease;
      z-index: 1050;
    }
    header.scrolled {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    header.default {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(4px);
    }

    /* Brand Logo */
    .brand-logo img {
      max-height: 70px;
      width: auto;
      display: block;
    }

    /* Nav links */
    .nav-link {
      font-weight: 500;
      color: #374151;
      position: relative;
      transition: color 0.3s;
      text-decoration: none;
    }
    .nav-link:hover {
      color: #1e3a8a;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: linear-gradient(to right, #facc15, #ca8a04);
      transition: width 0.3s;
    }
    .nav-link:hover::after {
      width: 100%;
    }

    /* Remove default Bootstrap caret */
    .dropdown-toggle::after {
      display: none !important;
    }

    /* Rotate chevron when dropdown is open */
    .dropdown-toggle .fa-chevron-down {
      transition: transform 0.3s ease;
    }
    .dropdown.show .fa-chevron-down {
      transform: rotate(180deg);
    }
    /* Mobile dropdown fix */
#mobileNav .collapse .dropdown-item {
  padding: 0.5rem 0;
  color: #374151;
}
#mobileNav .collapse .dropdown-item:hover {
  color: #1e3a8a;
}

      /* Gradient button */
      .btn-gradient {
        background: linear-gradient(to right, #facc15, #ca8a04);
        color: #fff;
        font-weight: 600;
        border-radius: 50px;
        padding: 0.6rem 1.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        border: none;
      }
      .btn-gradient:hover {
        background: linear-gradient(to right, #eab308, #a16207);
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.2);
        color: #fff;
      }

      /* Mobile menu button */
      .mobile-menu-btn {
        font-size: 1.5rem;
        color: #000 !important;
        background: none;
        border: none;
        outline: none;
      }
      .mobile-menu-btn:hover {
        color: #000 !important;
      }

      /* Mobile nav */
      #mobileNav a {
        color: #374151;
        font-weight: 500;
        transition: color 0.3s;
      }
      #mobileNav a:hover {
        color: #1e3a8a;
      }
      #mobileNav .btn-gradient {
        margin-top: 1rem;
      }
        /* Hero Section */
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
        }

        .hero-highlight  {
            background: linear-gradient(90deg, #facc15, #2563eb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
       
        .hero-description {
            font-size: 1.25rem;
            line-height: 1.7;
            opacity: 0.95;
        }

        /* Service Cards */
        .service-card {
            padding: 2rem;
            border-radius: 1rem;
            transition: all 0.3s ease;
            border: none;
            height: 100%;
            cursor: pointer;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .service-description {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .feature-icon {
            width: 16px;
            height: 16px;
            margin-right: 0.5rem;
            opacity: 0.7;
        }

        /* Color variants */
        .card-blue {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e3a8a;
        }

        .card-blue:hover {
            background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
        }

        .card-green {
            background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
            color: #14532d;
        }

        .card-green:hover {
            background: linear-gradient(135deg, #bbf7d0 0%, #86efac 100%);
        }

        .card-purple {
            background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
            color: #581c87;
        }

        .card-purple:hover {
            background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
        }

        .card-orange {
            background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
            color: #9a3412;
        }

        .card-orange:hover {
            background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
        }

        .card-red {
            background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
            color: #7f1d1d;
        }

        .card-red:hover {
            background: linear-gradient(135deg, #fecaca 0%, #f87171 100%);
        }

        .card-indigo {
            background: linear-gradient(135deg, #f0f9ff 0%, #c7d2fe 100%);
            color: #312e81;
        }

        .card-indigo:hover {
            background: linear-gradient(135deg, #c7d2fe 0%, #a5b4fc 100%);
        }

        /* Process Section */
        .process-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .process-description {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 32rem;
            margin: 0 auto 3rem;
        }

        .process-timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline-line {
            position: absolute;
            top: 4rem;
            left: 0;
            right: 0;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
            z-index: 1;
        }

        .process-step {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 240px;
        }

        .step-number {
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.125rem;
            font-weight: 700;
            margin: 0 auto 1rem;
            transition: all 0.3s ease;
        }

        .step-number:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
        }

        .step-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .step-description {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        /* Mobile process layout */
        .mobile-process {
            display: none;
        }

        .mobile-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .mobile-step-number {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 700;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        /* CTA Section */
        .cta-section {
           background: linear-gradient(135deg, #eff6ff, #fef9c3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1rem;
            padding: 3rem 2rem;
            color: #1a1a1a;
            text-align: center;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

        .cta-title {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .cta-description {
            font-size: 1.25rem;
            color: #6b7280;
            margin-bottom: 2rem;
            max-width: 32rem;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-weight: 600;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .btn-primary-custom:hover {
            background: linear-gradient(135deg, #5a6fd8 0%, #6b4190 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .btn-outline-custom {
            background: transparent;
            color: #667eea;
            border: 2px solid #667eea;
            padding: 1rem 2rem;
            font-weight: 600;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background: #667eea;
            color: white;
            border-color: #667eea;
        }

        /* Responsive Design */
        @media (max-width: 1199.98px) {
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 991.98px) {
            .timeline-line {
                display: none;
            }
            
            .process-timeline {
                display: none;
            }
            
            .mobile-process {
                display: block;
            }

            .hero-section {
                padding: 60px 0 40px;
            }

            .services-section,
            .process-section,
            .cta-section-wrapper {
                padding: 60px 0;
            }
        }

        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 2.5rem;
                margin-top: 30px;
            }
            
            .hero-description {
                font-size: 1.125rem;
            }
            
            .process-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 1.875rem;
            }
            
            .cta-description {
                font-size: 1.125rem;
            }
            
            .service-card {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .hero-section,
            .services-section,
            .process-section,
            .cta-section-wrapper {
                padding: 50px 0;
            }
        }

        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .cta-section {
                padding: 2rem 1rem;
            }

            .mobile-step {
                padding: 1rem;
            }

            .hero-section {
                padding: 40px 0 30px;
            }

            .services-section,
            .process-section,
            .cta-section-wrapper {
                padding: 40px 0;
            }

            .service-card {
                padding: 1.25rem;
            }

            .btn-primary-custom,
            .btn-outline-custom {
                padding: 0.875rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 320px) {
            .services-section .hero-title {
                font-size: 1.75rem;
            }
            
            .service-card {
                padding: 1rem;
            }

            .btn-primary-custom,
            .btn-outline-custom {
                padding: 0.75rem 1.25rem;
                font-size: 0.85rem;
            }
        }

        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-delay-1 { animation-delay: 0.1s; }
        .animate-delay-2 { animation-delay: 0.2s; }
        .animate-delay-3 { animation-delay: 0.3s; }
        .animate-delay-4 { animation-delay: 0.4s; }
        .animate-delay-5 { animation-delay: 0.5s; }
        .animate-delay-6 { animation-delay: 0.6s; }

        /* Additional responsive utilities */
        .text-responsive {
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* Enhanced mobile responsiveness */
        @media (max-width: 480px) {
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .d-flex.flex-column.flex-sm-row {
                flex-direction: column !important;
            }
            
            .d-flex.flex-column.flex-sm-row .btn {
                margin-bottom: 0.75rem;
            }
            
            .d-flex.flex-column.flex-sm-row .btn:last-child {
                margin-bottom: 0;
            }
        }

        /* COMPLETE FOOTER RESPONSIVE STYLES */

        /* Base Footer Styles (Desktop) - Keep existing styles intact */
        .footer {
          background: #111827;
          color: #fff;
        }

        .footer-logo {
          max-width: 60px;
          flex-shrink: 0;
        }

        .footer-logo img {
          width: 100%;
          height: auto;
          display: block;
          object-fit: contain;
        }

        .social-btn {
          width: 40px;
          height: 40px;
          border-radius: 8px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #fff;
          transition: all 0.3s ease;
          text-decoration: none;
        }
        .social-btn.linkedin {
          background: linear-gradient(to right, #0a66c2, #004182);
        }
        .social-btn.twitter {
          background: linear-gradient(to right, #1da1f2, #0d8ddb);
        }
        .social-btn.youtube {
          background: linear-gradient(to right, #ff0000, #cc0000);
        }
        .social-btn:hover {
          transform: translateY(-3px);
          opacity: 0.9;
          color: #fff;
        }

        .footer-link {
          color: #d1d5db;
          text-decoration: none;
          transition: color 0.3s;
        }
        .footer-link:hover {
          color: #facc15;
          text-decoration: underline;
        }

        .dot {
          width: 6px;
          height: 6px;
          background: linear-gradient(to right, #facc15, #2563eb);
          border-radius: 50%;
          margin-right: 10px;
          flex-shrink: 0;
        }

        .icon-box {
          width: 40px;
          height: 40px;
          background: linear-gradient(to right, #facc15, #ca8a04);
          border-radius: 8px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #fff;
        }

        /* Mobile Responsive Footer Styles */

        /* Extra Small devices (< 576px) */
        @media (max-width: 575.98px) {
          /* Header adjustments for mobile */
          header .container {
            padding: 8px 15px;
          }
          
          .brand-logo {
            width: 80px;
            height: 80px;
          }
          
          .fs-5 {
            font-size: 1rem !important;
          }
          
          .mobile-menu-btn {
            font-size: 1.2rem;
          }

          /* Footer mobile styles */
          .footer {
            padding: 2rem 0 1rem;
          }

          .footer .container {
            padding-left: 15px;
            padding-right: 15px;
          }

          /* Override center alignment for mobile */
          .footer .row {
            text-align: left !important;
          }

          .footer .col-lg-3,
          .footer .col-md-6 {
            text-align: left !important;
            margin-bottom: 2rem;
            padding-left: 15px;
            padding-right: 15px;
          }

          /* Company Info Section */
          .footer .col-lg-3:first-child .d-flex.align-items-center.mb-3 {
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
          }

          .footer-logo {
            max-width: 45px;
          }

          .footer .col-lg-3:first-child h3 {
            font-size: 1rem;
            margin-bottom: 0;
            line-height: 1.2;
          }

          .footer .text-light.small {
            text-align: left;
            margin-bottom: 1rem;
            line-height: 1.4;
          }

          /* Social Media Section */
          .footer h5.fw-semibold.mt-4 {
            text-align: left;
            font-size: 1rem;
            margin-top: 1.5rem !important;
            margin-bottom: 0.75rem;
          }

          .footer .d-flex.gap-3.mt-2 {
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 0.75rem !important;
            margin-top: 0.75rem !important;
          }

          .social-btn {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            font-size: 0.9rem;
          }

          /* Quick Links Section */
          .footer .col-lg-3:nth-child(2) h5 {
            font-size: 1rem;
            margin-bottom: 0.75rem;
            text-align: left;
          }

          .footer .list-unstyled {
            text-align: left;
            margin-bottom: 0;
          }

          .footer .list-unstyled li {
            margin-bottom: 0.5rem;
          }

          .footer-link {
            font-size: 0.9rem;
            line-height: 1.3;
          }

          /* Services Section */
          .footer .col-lg-3:nth-child(3) h5 {
            font-size: 1rem;
            margin-bottom: 0.75rem;
            text-align: left;
          }

          .footer .col-lg-3:nth-child(3) .list-unstyled li {
            margin-bottom: 0.5rem;
          }

          .footer .d-flex.align-items-center.mb-2 {
            align-items: flex-start;
            margin-bottom: 0.5rem !important;
          }

          .footer .dot {
            margin-top: 0.25rem;
            margin-right: 8px;
            flex-shrink: 0;
          }

          /* Contact Information Section */
          .footer .col-lg-3:last-child h5 {
            font-size: 1rem;
            margin-bottom: 0.75rem;
            text-align: left;
          }

          .footer .d-flex.mb-3 {
            justify-content: flex-start;
            align-items: flex-start;
            margin-bottom: 1rem !important;
            gap: 12px;
          }

          .icon-box {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            flex-shrink: 0;
            margin-top: 2px;
          }

          .icon-box i {
            font-size: 0.9rem;
          }

          .footer .d-flex.mb-3 .ms-3 {
            margin-left: 0 !important;
            flex: 1;
          }

          .footer .fw-semibold {
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
          }

          .footer .text-light.small {
            font-size: 0.85rem;
            line-height: 1.3;
          }

          /* Security Badges Section */
          .footer .border-top.border-secondary.pt-4.mt-5 {
            margin-top: 2rem !important;
            padding-top: 1.5rem !important;
          }

          .footer .d-flex.flex-wrap.gap-4 {
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 1rem !important;
          }

          .footer .d-flex.align-items-center.gap-2.text-light.small {
            margin-bottom: 0.5rem;
            font-size: 0.8rem;
            align-items: center;
          }

          .footer .fas.fa-shield-alt,
          .footer .fas.fa-lock {
            font-size: 0.8rem;
          }

          /* Compliance Disclaimer Section */
          .footer .border-top.border-secondary.pt-4.mt-4 {
            margin-top: 1.5rem !important;
            padding-top: 1.5rem !important;
          }

          .footer .bg-secondary.bg-opacity-25.rounded.p-4 {
            padding: 1.5rem !important;
            border-radius: 8px !important;
          }

          .footer h6.fw-semibold.text-warning.mb-3 {
            font-size: 0.9rem;
            margin-bottom: 0.75rem !important;
          }

          .footer .bg-secondary p.small.text-light {
            font-size: 0.75rem !important;
            line-height: 1.4;
            margin-bottom: 0;
          }

          /* Copyright Section - Centered */
          .footer .border-top.pt-4.mt-4.text-center {
            text-align: center !important;
            margin-top: 1.5rem !important;
            padding-top: 1.5rem !important;
          }

          .footer .text-center p {
            text-align: center !important;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
          }

          .footer .text-center p.small {
            font-size: 0.75rem !important;
            margin-bottom: 0;
          }

          .footer .text-center a {
            color: #facc15;
            text-decoration: none;
          }

          .footer .text-center a:hover {
            text-decoration: underline;
          }
        }

        /* Small devices (576px - 767px) */
        @media (min-width: 576px) and (max-width: 767.98px) {
          .footer {
            padding: 3rem 0 2rem;
          }

          /* Keep left alignment but with better spacing */
          .footer .row {
            text-align: left !important;
          }

          .footer .col-lg-3,
          .footer .col-md-6 {
            text-align: left !important;
            margin-bottom: 2rem;
          }

          .footer-logo {
            max-width: 50px;
          }

          .footer h5 {
            font-size: 1.1rem;
          }

          .social-btn {
            width: 38px;
            height: 38px;
          }

          .icon-box {
            width: 38px;
            height: 38px;
          }

          /* Copyright stays centered */
          .footer .text-center {
            text-align: center !important;
          }

          .footer .text-center p {
            text-align: center !important;
          }
        }

        /* Medium devices (768px - 991px) */
        @media (min-width: 768px) and (max-width: 991.98px) {
          .footer .col-md-6 {
            margin-bottom: 2rem;
          }

          /* On tablets, we can start using some centering for better balance */
          .footer .row {
            text-align: left;
          }
        }

        /* Ensure no horizontal overflow in footer */
        .footer * {
          word-wrap: break-word;
          overflow-wrap: break-word;
        }

        .footer .container-fluid {
          padding-left: 15px;
          padding-right: 15px;
        }

        /* Fix for very long text in footer */
        .footer .text-light.small,
        .footer .footer-link {
          word-break: break-word;
          hyphens: auto;
        }

        /* Ensure footer links are touchable on mobile */
@media (max-width: 767.98px) {
  .footer-link,
  .social-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
  }

  .social-btn {
    min-height: 36px;
    justify-content: center;
  }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
  .footer {
    background: #0f172a;
  }
}

/* Privacy Policy Modal Styles */
        .privacy-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10001;
            animation: privacyFadeIn 0.3s ease-in-out;
        }

        @keyframes privacyFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes privacyFadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }

        .privacy-modal {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            max-width: 700px;
            width: 95%;
            max-height: 100vh;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            animation: privacySlideUp 0.4s ease-out;
            position: relative;
        }

        @keyframes privacySlideUp {
            from { 
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .privacy-modal-content {
            background: white;
            margin: 4px;
            border-radius: 16px;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .privacy-modal-header {
            text-align: center;
            padding: 30px 30px 20px;
            border-bottom: 2px solid #f0f0f0;
            flex-shrink: 0;
        }

        .privacy-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 20px;
            color: white;
        }

        .privacy-modal-title {
            color: #2d3436;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .privacy-modal-subtitle {
            color: #636e72;
            font-size: 14px;
            font-weight: 500;
        }

        .privacy-modal-body {
            padding: 20px 30px;
            color: #2d3436;
            font-size: 15px;
            line-height: 1.6;
            overflow-y: auto;
            flex-grow: 1;
        }

        .privacy-section {
            margin-bottom: 20px;
        }

        .privacy-section h4 {
            color: #0984e3;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .privacy-section ul {
            margin-left: 20px;
            margin-top: 10px;
        }

        .privacy-section li {
            margin-bottom: 5px;
        }

        .privacy-highlight {
            background: linear-gradient(120deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #2196f3;
            margin: 15px 0;
        }

        .privacy-contact {
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin: 15px 0;
            text-align: center;
        }

        .privacy-contact strong {
            color: #fff;
        }

        .privacy-modal-footer {
            padding: 20px 30px;
            border-top: 2px solid #f0f0f0;
            text-align: center;
            flex-shrink: 0;
        }

        .privacy-close-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .privacy-close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .privacy-modal-overlay {
                padding: 10px;
            }
            
            .privacy-modal {
                width: 100%;
                max-height: 85vh;
            }
            
            .privacy-modal-content {
                max-height: calc(85vh - 8px);
            }
            
            .privacy-modal-body {
                max-height: calc(85vh - 180px);
                padding: 15px 20px;
                font-size: 14px;
            }
            
            .privacy-modal-header {
                padding: 20px 20px 15px;
            }
            
            .privacy-modal-footer {
                padding: 15px 20px 20px;
            }
            
            .privacy-modal-title {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .privacy-modal {
                max-height: 90vh;
            }
            
            .privacy-modal-content {
                max-height: calc(90vh - 8px);
            }
            
            .privacy-modal-body {
                max-height: calc(90vh - 160px);
                padding: 15px;
            }
            
            .privacy-modal-header {
                padding: 15px;
            }
            
            .privacy-modal-footer {
                padding: 15px;
            }
        }

 /* Floating WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25d366;
      color: #fff;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
      z-index: 1000;
      cursor: pointer;
      transition: 0.3s;
    }

    .whatsapp-float:hover {
      background: #20b954;
      transform: scale(1.1);
    }
   
