 * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: #fafcff;
      scroll-behavior: smooth;
    }
    /* ----- navbar (glass) ----- */
    .navbar {
      background: rgba(10, 25, 47, 0.88);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 4px 30px rgba(0, 20, 40, 0.15);
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .navbar-brand {
      font-weight: 800;
      letter-spacing: -0.5px;
      font-size: 1.6rem;
      color: #fff !important;
    }
    .navbar-brand i {
      color: #f8b81f;
      margin-right: 8px;
    }
    .navbar-nav .nav-link {
      font-weight: 600;
      font-size: 0.95rem;
      padding: 0.6rem 1.2rem;
      color: rgba(255, 255, 255, 0.8) !important;
      border-radius: 0 !important;
      transition: all 0.2s ease;
      margin: 0 2px;
      position: relative;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #fff !important;
      background: rgba(248, 184, 31, 0.12);
      box-shadow: inset 0 0 0 2px rgba(248, 184, 31, 0.3);
    }
    .navbar-nav .nav-link.active {
      background: #f8b81f;
      color: #0a192f !important;
      font-weight: 700;
      box-shadow: inset 0 0 0 2px #f8b81f, 0 4px 12px rgba(248, 184, 31, 0.25);
    }
    @media (max-width: 991px) {
      .navbar-nav .nav-link { padding: 0.5rem 1rem; }
    }

    /* ----- hero with full image cover ----- */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: #0a192f;
      background-image: url('../images/top-banner.jpg');
      background-size: cover;
      background-position: center center;
    }
    .hero .overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 20%, rgba(248,184,31,0.08) 0%, transparent 60%),
                  radial-gradient(circle at 10% 80%, rgba(13,110,253,0.10) 0%, transparent 50%),
                  rgba(10, 25, 47, 0.55);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
    }
    .hero-content .badge {
      background: #f8b81f !important;
      color: #0a192f !important;
      font-weight: 700;
      border-radius: 40px;
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
      box-shadow: 0 6px 18px rgba(248, 184, 31, 0.25);
    }
    .hero-content h1 {
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1px;
    }
    .hero-content .lead {
      font-size: 1.2rem;
      opacity: 0.9;
      max-width: 600px;
    }
    .btn-warning {
      background: #f8b81f;
      border: none;
      color: #0a192f;
      font-weight: 700;
      border-radius: 60px;
      padding: 0.75rem 2.5rem;
      box-shadow: 0 8px 24px rgba(248, 184, 31, 0.35);
      transition: 0.2s;
    }
    .btn-warning:hover {
      background: #ffca3a;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(248, 184, 31, 0.4);
      color: #0a192f;
    }
    .btn-outline-light {
      border: 2px solid rgba(255,255,255,0.5);
      border-radius: 60px;
      padding: 0.75rem 2.2rem;
      font-weight: 600;
      transition: 0.2s;
    }
    .btn-outline-light:hover {
      background: rgba(255,255,255,0.08);
      border-color: #fff;
      transform: translateY(-2px);
    }

    /* sections */
    section { padding: 80px 0; }
    .section-title { font-weight: 800; letter-spacing: -0.5px; }

    /* service cards */
    .service-card {
      background: #fff;
      border-radius: 32px;
      border: none;
      transition: 0.3s cubic-bezier(0.2, 0, 0, 1);
      box-shadow: 0 10px 30px -10px rgba(0,20,40,0.06);
      padding: 2.2rem 1.8rem;
      position: relative;
      overflow: hidden;
    }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #f8b81f, #0d6efd);
      opacity: 0;
      transition: 0.3s;
    }
    .service-card:hover::after { opacity: 1; }
    .service-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 30px 50px -15px rgba(13,110,253,0.15);
    }
    .service-card .icon {
      width: 70px;
      height: 70px;
      background: #eef4ff;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 24px;
      font-size: 2rem;
      color: #0d6efd;
      margin-bottom: 1.5rem;
      transition: 0.3s;
    }
    .service-card:hover .icon {
      background: #0d6efd;
      color: #fff;
      transform: rotate(4deg) scale(1.02);
    }
    .service-card h4 { font-weight: 700; }
    .service-card p { color: #4a5b6e; line-height: 1.6; }

    /* why us */
    .why-box {
      background: #fff;
      border-radius: 28px;
      padding: 2rem 1.2rem;
      transition: 0.3s;
      border: 1px solid rgba(0,0,0,0.02);
      box-shadow: 0 8px 24px rgba(0,0,0,0.02);
    }
    .why-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(13,110,253,0.08);
      border-color: #e0e8f5;
    }
    .why-box i { transition: 0.3s; }
    .why-box:hover i { transform: scale(1.08) rotate(-2deg); }

    /* process */
    .process-number {
      width: 68px;
      height: 68px;
      background: linear-gradient(145deg, #0d6efd, #0a58ca);
      color: #fff;
      font-size: 1.8rem;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.8rem;
      box-shadow: 0 12px 28px rgba(13,110,253,0.25);
      transition: 0.3s;
    }
    .process-box:hover .process-number {
      transform: scale(1.05);
      box-shadow: 0 18px 36px rgba(13,110,253,0.35);
    }

    /* testimonials */
    .testimonial-card {
      background: #fff;
      border-radius: 40px;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
      border: 1px solid rgba(255,255,255,0.5);
      transition: 0.2s;
    }
    .testimonial-card .client-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(145deg, #dce3ec, #f0f4fa);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.6rem;
      color: #1a3a5c;
      margin: 0 auto 1rem;
      box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #0d6efd;
      border-radius: 50%;
      padding: 1.2rem;
      background-size: 50%;
      box-shadow: 0 6px 18px rgba(13,110,253,0.25);
    }

    /* cta */
    .cta-section {
      background: linear-gradient(135deg, #0a192f 0%, #1a3a5c 100%);
    }

    /* ===== STATS CARDS - BEAUTIFUL CIRCLE DESIGN ===== */
    .stat-circle-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(4px);
      padding: 1.8rem 1rem;
      box-shadow: 0 15px 40px rgba(0,0,0,0.08);
      transition: 0.4s cubic-bezier(0.2, 0, 0, 1);
      height: 100%;
      border: none;
      border-radius: 60px 20px 60px 20px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 180px;
    }
    /* gradient border glow */
    .stat-circle-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 60px 20px 60px 20px;
      padding: 2px;
      background: linear-gradient(135deg, #f8b81f, #0d6efd, #f8b81f);
      background-size: 300% 300%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      animation: borderGlow 4s ease-in-out infinite;
    }
    @keyframes borderGlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    .stat-circle-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 30px 60px rgba(13,110,253,0.15);
      background: #ffffff;
    }
    .stat-circle-card .stat-icon-circle {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, #eef4ff, #dce8fa);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #0d6efd;
      margin-bottom: 0.8rem;
      transition: 0.4s;
      box-shadow: 0 8px 20px rgba(13,110,253,0.08);
    }
    .stat-circle-card:hover .stat-icon-circle {
      background: linear-gradient(135deg, #0d6efd, #0a58ca);
      color: #fff;
      transform: scale(1.05) rotate(-6deg);
      box-shadow: 0 12px 30px rgba(13,110,253,0.25);
    }
    .stat-circle-card h2 {
      font-weight: 800;
      color: #0a192f;
      font-size: 2.6rem;
      margin-bottom: 0.1rem;
      letter-spacing: -0.5px;
    }
    .stat-circle-card p {
      color: #4a5b6e;
      font-weight: 500;
      margin-bottom: 0;
      font-size: 0.95rem;
      letter-spacing: 0.3px;
    }
    /* subtle background decoration */
    .stat-circle-card::after {
      content: '';
      position: absolute;
      top: -40%;
      right: -20%;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(13,110,253,0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ===== FAQ - FIXED VERSION (same as services page) ===== */
    .faq-item {
      background: #fff;
      border-radius: 16px;
      margin-bottom: 1rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      border: 1px solid rgba(0,0,0,0.03);
      overflow: hidden;
      transition: 0.3s;
      cursor: pointer;
    }
    .faq-item:hover {
      box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    }
    .faq-item .faq-question {
      padding: 1.2rem 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: #0a192f;
      font-size: 1.05rem;
      transition: 0.2s;
    }
    .faq-item .faq-question i {
      color: #0d6efd;
      transition: 0.3s;
      font-size: 0.9rem;
    }
    .faq-item .faq-answer {
      padding: 0 1.8rem 1.2rem;
      color: #4a5b6e;
      line-height: 1.7;
      display: none;
    }
    .faq-item.active .faq-answer {
      display: block;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    .faq-item.active {
      border-color: rgba(13,110,253,0.15);
      box-shadow: 0 8px 30px rgba(13,110,253,0.06);
    }

    /* footer */
    footer a {
      text-decoration: none;
      color: rgba(255,255,255,0.7);
      transition: 0.2s;
    }
    footer a:hover { color: #f8b81f !important; }
    footer .social-link {
      display: inline-block;
      color: rgba(255,255,255,0.7);
      font-size: 1.3rem;
      margin-right: 1rem;
      transition: 0.2s;
    }
    footer .social-link:hover {
      color: #f8b81f !important;
      transform: translateY(-3px);
    }
    .footer-list { list-style: none; padding-left: 0; }
    .footer-list li { margin-bottom: 0.5rem; }

    .counter { font-weight: 800; }

   .about-img-placeholder {
    background: url('../images/support.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    min-height: 300px;
    padding: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

    @media (max-width: 768px) {
      .hero-content h1 { font-size: 2.8rem; }
      .hero-content .lead { font-size: 1rem; }
      section { padding: 60px 0; }
      .stat-circle-card h2 { font-size: 2rem; }
      .stat-circle-card {
        border-radius: 40px 16px 40px 16px;
        min-height: 150px;
        padding: 1.5rem 0.8rem;
      }
      .stat-circle-card .stat-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
      }
    }
	
	
	
	 /* ABOUT US ----- */
	 
	  /* about-us specific inline style */
    .about-hero {
      background: linear-gradient(135deg, #0a192f 0%, #1a3a5c 100%);
      min-height: 60vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .about-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(248,184,31,0.06) 0%, transparent 60%),
                  radial-gradient(circle at 20% 80%, rgba(13,110,253,0.06) 0%, transparent 50%);
      z-index: 0;
    }
    .about-hero .container {
      position: relative;
      z-index: 1;
    }
    .about-hero h1 {
      font-weight: 800;
      letter-spacing: -1px;
    }
    .about-hero .breadcrumb {
      background: transparent;
      padding: 0;
    }
    .about-hero .breadcrumb-item a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: 0.2s;
    }
    .about-hero .breadcrumb-item a:hover {
      color: #f8b81f;
    }
    .about-hero .breadcrumb-item.active {
      color: #f8b81f;
    }

    /* mission card */
    .mission-card {
      background: #fff;
      border-radius: 32px;
      padding: 2.5rem 2rem;
      box-shadow: 0 20px 50px -12px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.02);
      transition: 0.3s;
      height: 100%;
      text-align: center;
    }
    .mission-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(13,110,253,0.08);
    }
    .mission-card .icon-box {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #eef4ff, #dce8fa);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.4rem;
      color: #0d6efd;
      margin: 0 auto 1.2rem;
      transition: 0.3s;
    }
    .mission-card:hover .icon-box {
      background: linear-gradient(135deg, #0d6efd, #0a58ca);
      color: #fff;
      transform: scale(1.05) rotate(-4deg);
    }

    /* values section with gradient */
    .values-section {
      background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
    }
    .value-item {
      background: #fff;
      border-radius: 24px;
      padding: 2rem 1.5rem;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02);
      border-left: 4px solid #0d6efd;
      transition: 0.3s;
    }
    .value-item:hover {
      transform: translateX(6px);
      box-shadow: 0 12px 30px rgba(13,110,253,0.06);
    }
    .value-item i {
      color: #0d6efd;
      margin-bottom: 0.8rem;
    }
    .value-item h6 { font-weight: 700; }

    /* why choose us - enhanced for about page */
    .why-choose-card {
      background: #fff;
      border-radius: 28px;
      padding: 2rem 1.5rem;
      transition: 0.3s;
      border: 1px solid rgba(0,0,0,0.02);
      box-shadow: 0 8px 24px rgba(0,0,0,0.02);
      height: 100%;
      text-align: center;
    }
    .why-choose-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(13,110,253,0.08);
      border-color: #e0e8f5;
    }
    .why-choose-card .icon-wrap {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, #eef4ff, #dce8fa);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #0d6efd;
      margin: 0 auto 1rem;
      transition: 0.3s;
    }
    .why-choose-card:hover .icon-wrap {
      background: linear-gradient(135deg, #0d6efd, #0a58ca);
      color: #fff;
      transform: scale(1.05) rotate(-4deg);
    }
    .why-choose-card h5 { font-weight: 700; }
    .why-choose-card p { color: #4a5b6e; font-size: 0.95rem; }

    /* process - enhanced */
    .process-step {
      text-align: center;
      padding: 1.5rem 1rem;
    }
    .process-step .step-number {
      width: 68px;
      height: 68px;
      background: linear-gradient(145deg, #0d6efd, #0a58ca);
      color: #fff;
      font-size: 1.8rem;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.8rem;
      box-shadow: 0 12px 28px rgba(13,110,253,0.25);
      transition: 0.3s;
    }
    .process-step:hover .step-number {
      transform: scale(1.05);
      box-shadow: 0 18px 36px rgba(13,110,253,0.35);
    }
    .process-step h5 { font-weight: 700; margin-top: 0.5rem; }
    .process-step p { color: #4a5b6e; font-size: 0.95rem; }
	
	
	
	
	
	
	

    /* ----- CONTACT US PAGE-  Contact Hero (soft gradient) ----- */
    .contact-hero {
      background: linear-gradient(135deg, #0a192f 0%, #1a3a5c 100%);
      min-height: 45vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .contact-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(248,184,31,0.06) 0%, transparent 60%),
                  radial-gradient(circle at 20% 80%, rgba(13,110,253,0.06) 0%, transparent 50%);
      z-index: 0;
    }
    .contact-hero .container {
      position: relative;
      z-index: 1;
    }
    .contact-hero h1 {
      font-weight: 800;
      letter-spacing: -1px;
    }
    .contact-hero .breadcrumb {
      background: transparent;
      padding: 0;
    }
    .contact-hero .breadcrumb-item a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: 0.2s;
    }
    .contact-hero .breadcrumb-item a:hover {
      color: #f8b81f;
    }
    .contact-hero .breadcrumb-item.active {
      color: #f8b81f;
    }

    /* ----- Contact cards (info boxes) ----- */
    .contact-info-card {
      background: #fff;
      border-radius: 32px;
      padding: 2rem 1.5rem;
      box-shadow: 0 15px 40px -10px rgba(0,20,40,0.06);
      border: 1px solid rgba(0,0,0,0.02);
      transition: 0.3s cubic-bezier(0.2, 0, 0, 1);
      height: 100%;
      text-align: center;
    }
    .contact-info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 25px 50px rgba(13,110,253,0.08);
      border-color: #e0e8f5;
    }
    .contact-info-card .icon-circle {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, #eef4ff, #dce8fa);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #0d6efd;
      margin: 0 auto 1rem;
      transition: 0.3s;
    }
    .contact-info-card:hover .icon-circle {
      background: linear-gradient(135deg, #0d6efd, #0a58ca);
      color: #fff;
      transform: scale(1.05) rotate(-4deg);
    }
    .contact-info-card h5 { font-weight: 700; }
    .contact-info-card p { color: #4a5b6e; margin-bottom: 0; }

    /* ----- Contact form card ----- */
    .contact-form-card {
      background: #fff;
      border-radius: 32px;
      padding: 2.5rem 2.5rem;
      box-shadow: 0 15px 40px -10px rgba(0,20,40,0.06);
      border: 1px solid rgba(0,0,0,0.02);
    }
    .contact-form-card .form-control {
      border-radius: 16px;
      padding: 0.8rem 1.2rem;
      border: 1.5px solid #eef2f6;
      font-size: 0.95rem;
      transition: 0.2s;
    }
    .contact-form-card .form-control:focus {
      border-color: #0d6efd;
      box-shadow: 0 0 0 4px rgba(13,110,253,0.08);
    }
    .contact-form-card .form-label {
      font-weight: 600;
      color: #0a192f;
      font-size: 0.95rem;
    }
    .btn-submit {
      background: #0d6efd;
      border: none;
      border-radius: 60px;
      padding: 0.8rem 2.5rem;
      font-weight: 700;
      color: #fff;
      transition: 0.2s;
      box-shadow: 0 8px 24px rgba(13,110,253,0.25);
    }
    .btn-submit:hover {
      background: #0a58ca;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(13,110,253,0.35);
      color: #fff;
    }

    /* ===== FAQ Styles (matching services page) ===== */
    .faq-item {
      background: #fff;
      border-radius: 16px;
      margin-bottom: 1rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      border: 1px solid rgba(0,0,0,0.03);
      overflow: hidden;
      transition: 0.3s;
      cursor: pointer;
    }
    .faq-item:hover {
      box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    }
    .faq-item .faq-question {
      padding: 1.2rem 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: #0a192f;
      font-size: 1.05rem;
      transition: 0.2s;
    }
    .faq-item .faq-question i {
      color: #0d6efd;
      transition: 0.3s;
      font-size: 0.9rem;
    }
    .faq-item .faq-answer {
      padding: 0 1.8rem 1.2rem;
      color: #4a5b6e;
      line-height: 1.7;
      display: none;
    }
    .faq-item.active .faq-answer {
      display: block;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    .faq-item.active {
      border-color: rgba(13,110,253,0.15);
      box-shadow: 0 8px 30px rgba(13,110,253,0.06);
    }
	
	
	
	 /* ============================================================
       SERVICES PAGE 
       ============================================================ */

    /* ----- Services Hero (lighter, more focused) ----- */
    .services-hero {
      background: linear-gradient(135deg, #0a192f 0%, #1a3a5c 100%);
      min-height: 50vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .services-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(248,184,31,0.06) 0%, transparent 60%),
                  radial-gradient(circle at 20% 80%, rgba(13,110,253,0.06) 0%, transparent 50%);
      z-index: 0;
    }
    .services-hero .container {
      position: relative;
      z-index: 1;
    }
    .services-hero h1 {
      font-weight: 800;
      letter-spacing: -1px;
    }
    .services-hero .breadcrumb {
      background: transparent;
      padding: 0;
    }
    .services-hero .breadcrumb-item a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: 0.2s;
    }
    .services-hero .breadcrumb-item a:hover {
      color: #f8b81f;
    }
    .services-hero .breadcrumb-item.active {
      color: #f8b81f;
    }

    /* ----- Service Detail Cards (enhanced for services page) ----- */
    .service-detail-card {
      background: #fff;
      border-radius: 32px;
      padding: 2.5rem 2rem;
      box-shadow: 0 15px 40px -10px rgba(0,20,40,0.06);
      border: 1px solid rgba(0,0,0,0.02);
      transition: 0.4s cubic-bezier(0.2, 0, 0, 1);
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    /* decorative gradient bar on BOTTOM (changed from top) */
    .service-detail-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, #f8b81f, #0d6efd);
      opacity: 0;
      transition: 0.4s;
    }
    .service-detail-card:hover::after {
      opacity: 1;
    }
    .service-detail-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 30px 60px rgba(13,110,253,0.10);
      border-color: #e0e8f5;
    }
    .service-detail-card .icon-xl {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #eef4ff, #dce8fa);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.4rem;
      color: #0d6efd;
      margin-bottom: 1.2rem;
      transition: 0.4s;
    }
    .service-detail-card:hover .icon-xl {
      background: linear-gradient(135deg, #0d6efd, #0a58ca);
      color: #fff;
      transform: scale(1.05) rotate(-6deg);
      box-shadow: 0 12px 30px rgba(13,110,253,0.2);
    }
    .service-detail-card h4 {
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .service-detail-card p {
      color: #4a5b6e;
      line-height: 1.7;
      font-size: 0.98rem;
    }
    .service-detail-card .feature-list {
      list-style: none;
      padding-left: 0;
      margin-top: 1rem;
    }
    .service-detail-card .feature-list li {
      padding: 0.4rem 0;
      color: #4a5b6e;
      font-size: 0.92rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .service-detail-card .feature-list li i {
      color: #0d6efd;
      font-size: 0.9rem;
      width: 20px;
    }

    /* ----- Process step for services ----- */
    .service-process-step {
      text-align: center;
      padding: 1.5rem 0.5rem;
    }
    .service-process-step .step-num {
      width: 72px;
      height: 72px;
      background: linear-gradient(145deg, #0d6efd, #0a58ca);
      color: #fff;
      font-size: 2rem;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.8rem;
      box-shadow: 0 12px 28px rgba(13,110,253,0.25);
      transition: 0.3s;
    }
    .service-process-step:hover .step-num {
      transform: scale(1.05);
      box-shadow: 0 18px 36px rgba(13,110,253,0.35);
    }
    .service-process-step h5 { font-weight: 700; margin-top: 0.5rem; }
    .service-process-step p { color: #4a5b6e; font-size: 0.95rem; }

    /* ===== FAQ Styles ===== */
    .faq-item {
      background: #fff;
      border-radius: 16px;
      margin-bottom: 1rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      border: 1px solid rgba(0,0,0,0.03);
      overflow: hidden;
      transition: 0.3s;
      cursor: pointer;
    }
    .faq-item:hover {
      box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    }
    .faq-item .faq-question {
      padding: 1.2rem 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: #0a192f;
      font-size: 1.05rem;
      transition: 0.2s;
    }
    .faq-item .faq-question i {
      color: #0d6efd;
      transition: 0.3s;
      font-size: 0.9rem;
    }
    .faq-item .faq-answer {
      padding: 0 1.8rem 1.2rem;
      color: #4a5b6e;
      line-height: 1.7;
      display: none;
    }
    .faq-item.active .faq-answer {
      display: block;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    .faq-item.active {
      border-color: rgba(13,110,253,0.15);
      box-shadow: 0 8px 30px rgba(13,110,253,0.06);
    }
	
	
	
	
	
  <!-- ============================================================
       PRIVACY PAGE SPECIFIC STYLES
       ============================================================ -->
  
    /* ----- Privacy Hero (soft gradient) ----- */
    .privacy-hero {
      background: linear-gradient(135deg, #0a192f 0%, #1a3a5c 100%);
      min-height: 40vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .privacy-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(248,184,31,0.06) 0%, transparent 60%),
                  radial-gradient(circle at 20% 80%, rgba(13,110,253,0.06) 0%, transparent 50%);
      z-index: 0;
    }
    .privacy-hero .container {
      position: relative;
      z-index: 1;
    }
    .privacy-hero h1 {
      font-weight: 800;
      letter-spacing: -1px;
    }
    .privacy-hero .breadcrumb {
      background: transparent;
      padding: 0;
    }
    .privacy-hero .breadcrumb-item a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: 0.2s;
    }
    .privacy-hero .breadcrumb-item a:hover {
      color: #f8b81f;
    }
    .privacy-hero .breadcrumb-item.active {
      color: #f8b81f;
    }

    /* ----- Privacy content card ----- */
    .privacy-content {
      background: #fff;
      border-radius: 32px;
      padding: 3rem 2.5rem;
      box-shadow: 0 15px 40px -10px rgba(0,20,40,0.06);
      border: 1px solid rgba(0,0,0,0.02);
    }
    .privacy-content h4 {
      font-weight: 700;
      color: #0a192f;
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }
    .privacy-content h4:first-of-type {
      margin-top: 0;
    }
    .privacy-content p {
      color: #4a5b6e;
      line-height: 1.8;
      margin-bottom: 1rem;
    }
    .privacy-content ul {
      color: #4a5b6e;
      line-height: 1.8;
      padding-left: 1.5rem;
    }
    .privacy-content ul li {
      margin-bottom: 0.5rem;
    }
    .privacy-content .last-updated {
      color: #8a9bb0;
      font-size: 0.9rem;
      border-bottom: 1px solid #eef2f6;
      padding-bottom: 1rem;
      margin-bottom: 1.5rem;
    }




 /* ----- TERMS PAGE ----- */
    .terms-hero {
      background: linear-gradient(135deg, #0a192f 0%, #1a3a5c 100%);
      min-height: 40vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .terms-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(248,184,31,0.06) 0%, transparent 60%),
                  radial-gradient(circle at 20% 80%, rgba(13,110,253,0.06) 0%, transparent 50%);
      z-index: 0;
    }
    .terms-hero .container {
      position: relative;
      z-index: 1;
    }
    .terms-hero h1 {
      font-weight: 800;
      letter-spacing: -1px;
    }
    .terms-hero .breadcrumb {
      background: transparent;
      padding: 0;
    }
    .terms-hero .breadcrumb-item a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: 0.2s;
    }
    .terms-hero .breadcrumb-item a:hover {
      color: #f8b81f;
    }
    .terms-hero .breadcrumb-item.active {
      color: #f8b81f;
    }

    /* ----- Terms content card ----- */
    .terms-content {
      background: #fff;
      border-radius: 32px;
      padding: 3rem 2.5rem;
      box-shadow: 0 15px 40px -10px rgba(0,20,40,0.06);
      border: 1px solid rgba(0,0,0,0.02);
    }
    .terms-content h4 {
      font-weight: 700;
      color: #0a192f;
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }
    .terms-content h4:first-of-type {
      margin-top: 0;
    }
    .terms-content p {
      color: #4a5b6e;
      line-height: 1.8;
      margin-bottom: 1rem;
    }
    .terms-content ul {
      color: #4a5b6e;
      line-height: 1.8;
      padding-left: 1.5rem;
    }
    .terms-content ul li {
      margin-bottom: 0.5rem;
    }
    .terms-content .last-updated {
      color: #8a9bb0;
      font-size: 0.9rem;
      border-bottom: 1px solid #eef2f6;
      padding-bottom: 1rem;
      margin-bottom: 1.5rem;
    }