
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: #1e1e2f;
      background: #fafcff;
    }

    section { padding: 80px 0; }

    /* navbar */
    .navbar {
      background: rgba(255,255,255,0.85) !important;
      backdrop-filter: blur(8px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.04);
    }
   /* Navbar - Brand with NO hover effects */
.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e1e2f !important;
  text-decoration: none !important;
  transition: none !important;
}

.navbar-brand:hover {
  color: #1e1e2f !important;
  text-decoration: none !important;
  transform: none !important;
}

.navbar-brand img {
  display: inline-block;
  vertical-align: middle;
  transition: none !important;
}

.navbar-brand img:hover {
  transform: none !important;
}

    .nav-link { 
      font-weight: 500; 
      color: #1e1e2f;
      position: relative;
      padding: 8px 16px !important;
      transition: color 0.3s ease;
    }

    .nav-link:hover { 
      color: #0d6efd !important; 
    }

    .nav-link.active { 
      color: #0d6efd !important; 
    }

    /* Only active link gets underline */
    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 80%;
      height: 2.5px;
      background: #0d6efd;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    /* Dropdown hover effect */
    .dropdown-item {
      position: relative;
      transition: all 0.3s ease;
      padding: 8px 20px;
    }

    .dropdown-item:hover {
      background: #f0f7ff;
      color: #0d6efd;
      padding-left: 26px;
    }

    .dropdown-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background: #0d6efd;
      transform: scaleY(0);
      transition: transform 0.3s ease;
    }

    .dropdown-item:hover::before {
      transform: scaleY(1);
    }

    /* Mobile nav fixes - Underline starts from left */
    @media (max-width: 991.98px) {
      .navbar-collapse {
        padding: 10px 0;
      }
      
      .navbar-nav {
        padding: 0;
        width: 100%;
      }
      
      .navbar-nav .nav-item {
        width: 100%;
        padding: 0;
      }
      
      .navbar-nav .nav-link {
        padding: 12px 16px !important;
        width: 100%;
        border-radius: 8px;
        margin: 2px 0;
        display: flex;
        align-items: center;
      }
      
      /* Mobile underline - starts from left edge */
      .navbar-nav .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 16px !important;
        width: 25% !important;
        height: 2.5px;
        background: #0d6efd;
        transform: none !important;
        border-radius: 2px;
      }
      
      .navbar-nav .dropdown-menu {
        border: none;
        background: transparent;
        padding: 0;
        margin: 0;
      }
      
      .navbar-nav .dropdown-item {
        padding: 10px 16px 10px 32px !important;
        border-radius: 8px;
        margin: 2px 0;
      }
      
      .navbar-nav .dropdown-item::before {
        left: 16px;
      }
      
      .navbar-nav .dropdown-toggle::after {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
      }
      
      .navbar-nav .nav-item.dropdown {
        position: relative;
      }
    }

    /* buttons */
    .btn-custom-primary {
      background: #0d6efd;
      color: #fff;
      padding: 12px 32px;
      border-radius: 50px;
      font-weight: 600;
      box-shadow: 0 8px 22px rgba(13,110,253,0.25);
      transition: 0.2s;
    }
    .btn-custom-primary:hover {
      background: #0b5ed7;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(13,110,253,0.3);
    }
    .btn-outline-light-custom {
      border: 2px solid rgba(255,255,255,0.6);
      color: #fff;
      border-radius: 50px;
      padding: 10px 28px;
      font-weight: 500;
      transition: 0.2s;
    }
    .btn-outline-light-custom:hover {
      background: #fff;
      color: #0d6efd;
      border-color: #fff;
    }

    /* hero */
    .hero {
      background: linear-gradient(145deg, #f0f6ff 0%, #ffffff 100%);
      min-height: 90vh;
      display: flex;
      align-items: center;
    }
    .hero h1 { font-weight: 700; font-size: 3.2rem; letter-spacing: -1px; }
    .hero p { color: #4a4a5a; font-size: 1.2rem; }

    .hero-img {
      border-radius: 32px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.08);
      transition: 0.3s;
    }
    .hero-img:hover { transform: scale(1.01); }

    /* cards */
    .card-service, .card-stat, .card-process, .testimonial-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 30px 24px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.03);
      border: 1px solid rgba(0,0,0,0.02);
      transition: 0.25s ease;
      height: 100%;
    }
    .card-service:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(13,110,253,0.08);
      border-color: rgba(13,110,253,0.15);
    }
    .card-stat {
      text-align: center;
      background: #fff;
      border-radius: 40px;
      padding: 32px 16px;
      border: 1px solid rgba(13,110,253,0.08);
      transition: 0.3s ease;
    }
    .card-stat:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(13,110,253,0.1);
    }
    .card-stat .number {
      font-size: 3rem;
      font-weight: 700;
      color: #0d6efd;
    }
    .card-process {
      border-left: 4px solid #0d6efd;
      border-radius: 20px;
      background: #ffffff;
    }
    .card-process .step { 
      font-weight: 700; 
      color: #0d6efd; 
      font-size: 1.6rem;
    }

    .testimonial-card {
      background: #fff;
      border-radius: 40px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: 0 12px 32px rgba(0,0,0,0.02);
    }
    .testimonial-card img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 16px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.04);
    }
    .testimonial-card h5 { font-weight: 600; }

    /* carousel arrows */
    .carousel-control-prev,
    .carousel-control-next {
      width: 48px;
      height: 48px;
      top: 50%;
      transform: translateY(-50%);
      background: #ffffff;
      border-radius: 60px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
      opacity: 0.9;
      border: 1px solid #e9edf4;
    }
    .carousel-control-prev { left: -24px; }
    .carousel-control-next { right: -24px; }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #0d6efd;
      border-radius: 60px;
      background-size: 60% 60%;
    }

    /* contact map */
    .map-placeholder {
      background: #eef3fa;
      border-radius: 24px;
      padding: 48px 20px;
      text-align: center;
      border: 1px dashed #b6c8db;
      color: #2a3b56;
    }

    /* footer */
    footer {
      background: #0b1426;
      color: #d6dfed;
      padding: 50px 0 20px;
    }
    footer a { color: #b8c7e0; text-decoration: none; transition: 0.15s; }
    footer a:hover { color: #ffffff; text-decoration: underline; }
    footer .bi { font-size: 1.6rem; margin-right: 16px; }

    /* Background colors for alternating sections */
    .bg-white-section { background: #ffffff; }
    .bg-soft-primary-section { background: #f0f7ff; }

    /* stats section */
    .stats-section {
      padding: 60px 0;
    }

    /* counter number styling */
    .counter-number {
      font-size: 3rem;
      font-weight: 700;
      color: #0d6efd;
    }
    .counter-suffix {
      font-size: 3rem;
      font-weight: 700;
      color: #0d6efd;
    }
    .counter-numberl {
      font-size: 3rem;
      font-weight: 700;
      color: #0d6efd;
    }

    @media (max-width: 768px) {
      section { padding: 56px 0; }
      .hero h1 { font-size: 2.4rem; }
      .hero { min-height: auto; padding: 60px 0; }
      .carousel-control-prev { left: 4px; }
      .carousel-control-next { right: 4px; }
      .stats-section { padding: 40px 0; }
      .counter-number { font-size: 2.2rem; }
      .counter-numberl { font-size: 2.2rem; }
      .counter-suffix { font-size: 2.2rem; }
    }
	
	
	
	 /* ============================================
       CONTACT US PAGE SPECIFIC CSS
       ============================================ */

    /* ---------- HERO SECTION (Contact) ---------- */
    .hero-contact {
      background: linear-gradient(145deg, #0d6efd 0%, #0056d2 100%);
      min-height: 60vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-contact::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 200%;
      background: rgba(255,255,255,0.05);
      transform: rotate(15deg);
      border-radius: 50%;
    }
    .hero-contact h1 { 
      font-weight: 700; 
      font-size: 3.8rem; 
      letter-spacing: -1px;
      color: #fff;
    }
    .hero-contact p { 
      color: rgba(255,255,255,0.85); 
      font-size: 1.2rem; 
    }
    .hero-contact .breadcrumb {
      background: transparent;
      padding: 0;
    }
    .hero-contact .breadcrumb-item a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: 0.2s;
    }
    .hero-contact .breadcrumb-item a:hover {
      color: #fff;
    }
    .hero-contact .breadcrumb-item.active {
      color: #fff;
    }
    .hero-contact .breadcrumb-item + .breadcrumb-item::before {
      color: rgba(255,255,255,0.5);
    }

    /* ---------- SECTION 1: Contact Info Cards ---------- */
    .contact-info-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 30px 24px;
      text-align: center;
      height: 100%;
      transition: 0.3s ease;
      border: 1px solid rgba(0,0,0,0.02);
    }
    .contact-info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    }
    .contact-info-card .icon-circle {
      width: 64px;
      height: 64px;
      background: #f0f7ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      transition: 0.3s ease;
    }
    .contact-info-card:hover .icon-circle {
      background: #0d6efd;
    }
    .contact-info-card .icon-circle i {
      font-size: 1.8rem;
      color: #0d6efd;
      transition: 0.3s ease;
    }
    .contact-info-card:hover .icon-circle i {
      color: #fff;
    }
    .contact-info-card h5 {
      font-weight: 600;
      margin-bottom: 8px;
    }
    .contact-info-card p {
      color: #6c757d;
      margin: 0;
      font-size: 0.95rem;
    }
    .contact-info-card a {
      color: #6c757d;
      text-decoration: none;
      transition: 0.2s;
    }
    .contact-info-card a:hover {
      color: #0d6efd;
    }

    /* ---------- SECTION 2: Contact Form ---------- */
    .contact-form-wrapper {
      background: #ffffff;
      border-radius: 24px;
      padding: 48px 40px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.03);
      border: 1px solid rgba(0,0,0,0.02);
    }
    .contact-form-wrapper .form-control {
      border-radius: 12px;
      padding: 12px 16px;
      border: 1px solid #e9edf4;
      transition: 0.2s;
    }
    .contact-form-wrapper .form-control:focus {
      border-color: #0d6efd;
      box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
    }
    .contact-form-wrapper .form-label {
      font-weight: 500;
      color: #1e1e2f;
    }
    .contact-form-wrapper .btn-submit {
      background: #0d6efd;
      color: #fff;
      padding: 14px 40px;
      border-radius: 50px;
      font-weight: 600;
      border: none;
      transition: 0.2s;
    }
    .contact-form-wrapper .btn-submit:hover {
      background: #0b5ed7;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(13,110,253,0.3);
    }
.btn0-submit{
		background: #0d6efd;
      color: #fff;
      padding: 14px 40px;
      border-radius: 50px;
      font-weight: 600;
      border: none;
      transition: 0.2s;
}

.btn0-submit:hover {
	  background: #0b5ed7;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(13,110,253,0.3);
}
	  
    /* ---------- SECTION 3: Map ---------- */
    .map-wrapper {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.03);
      border: 1px solid rgba(0,0,0,0.02);
    }
    .map-wrapper iframe {
      width: 100%;
      height: 400px;
      border: 0;
      display: block;
    }

    /* ---------- SECTION 4: FAQ ---------- */
    .faq-item {
      background: #ffffff;
      border-radius: 16px;
      padding: 20px 24px;
      margin-bottom: 12px;
      border: 1px solid rgba(0,0,0,0.02);
      transition: 0.3s ease;
    }
    .faq-item:hover {
      border-color: rgba(13,110,253,0.1);
      box-shadow: 0 4px 16px rgba(0,0,0,0.02);
    }
    .faq-item .faq-question {
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .faq-item .faq-question i {
      color: #0d6efd;
      transition: 0.3s ease;
    }
    .faq-item .faq-answer {
      color: #6c757d;
      padding-top: 12px;
      margin: 0;
      display: none;
    }
    .faq-item.active .faq-answer {
      display: block;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    /* ---------- CONTACT RESPONSIVE ---------- */
    @media (max-width: 768px) {
      .hero-contact { min-height: 40vh; }
      .hero-contact h1 { font-size: 2.4rem; }
      .hero-contact .breadcrumb { font-size: 0.9rem; }
      .contact-form-wrapper { padding: 30px 20px; }
      .map-wrapper iframe { height: 250px; }
      .faq-item { padding: 16px 18px; }
    }
	
	
	
	
    /* ============================================
       ABOUT US PAGE SPECIFIC CSS
       ============================================ */

    /* ---------- HERO SECTION (About Us) ---------- */
    .hero-about {
      background: linear-gradient(145deg, #0d6efd 0%, #0056d2 100%);
      min-height: 60vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-about::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 200%;
      background: rgba(255,255,255,0.05);
      transform: rotate(15deg);
      border-radius: 50%;
    }
    .hero-about h1 { 
      font-weight: 700; 
      font-size: 3.8rem; 
      letter-spacing: -1px;
      color: #fff;
    }
    .hero-about p { 
      color: rgba(255,255,255,0.85); 
      font-size: 1.2rem; 
    }
    .hero-about .breadcrumb {
      background: transparent;
      padding: 0;
    }
    .hero-about .breadcrumb-item a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: 0.2s;
    }
    .hero-about .breadcrumb-item a:hover {
      color: #fff;
    }
    .hero-about .breadcrumb-item.active {
      color: #fff;
    }
    .hero-about .breadcrumb-item + .breadcrumb-item::before {
      color: rgba(255,255,255,0.5);
    }

    /* ---------- SECTION 1: Our Story ---------- */
    .about-story-img {
      border-radius: 24px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      transition: 0.3s;
    }
    .about-story-img:hover {
      transform: scale(1.01);
    }

    /* ---------- SECTION 2: Mission & Vision ---------- */
    .mission-card {
      background: #fff;
      border-radius: 24px;
      padding: 40px 30px;
      text-align: center;
      height: 100%;
      border: 1px solid rgba(13,110,253,0.08);
      transition: 0.3s ease;
    }
    .mission-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(13,110,253,0.08);
    }
    .mission-card .icon {
      font-size: 3.5rem;
      color: #0d6efd;
      margin-bottom: 20px;
      display: block;
    }
    .mission-card h4 {
      font-weight: 700;
      margin-bottom: 12px;
    }
    .mission-card p {
      color: #6c757d;
      line-height: 1.7;
    }

    /* ---------- SECTION 3: Our Journey (Timeline) ---------- */
    .timeline-item {
      display: flex;
      gap: 24px;
      padding: 24px 0;
      position: relative;
      border-left: 3px solid #0d6efd;
      padding-left: 30px;
      transition: 0.3s ease;
    }
    .timeline-item:hover {
      transform: translateX(6px);
    }
    .timeline-item .year {
      font-size: 1.8rem;
      font-weight: 700;
      color: #0d6efd;
      min-width: 80px;
      flex-shrink: 0;
    }
    .timeline-item .content h5 {
      font-weight: 600;
      margin-bottom: 4px;
    }
    .timeline-item .content p {
      color: #6c757d;
      margin: 0;
      line-height: 1.6;
    }
    .timeline-item .content .badge-timeline {
      background: #f0f7ff;
      color: #0d6efd;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 1rem;
      font-weight: 600;
      display: inline-block;
      margin-top: 8px;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -8px;
      top: 30px;
      width: 13px;
      height: 13px;
      background: #0d6efd;
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 0 0 3px #0d6efd;
    }

    /* ---------- SECTION 4: Values ---------- */
    .value-item {
      display: flex;
      gap: 16px;
      padding: 20px;
      background: #fff;
      border-radius: 16px;
      transition: 0.3s ease;
      border: 1px solid rgba(0,0,0,0.02);
      height: 100%;
    }
    .value-item:hover {
      transform: translateX(6px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      border-color: rgba(13,110,253,0.1);
    }
    .value-item .value-icon {
      font-size: 2rem;
      color: #0d6efd;
      flex-shrink: 0;
      margin-top: 4px;
    }
    .value-item .value-content h5 {
      font-weight: 600;
      margin-bottom: 4px;
    }
    .value-item .value-content p {
      color: #6c757d;
      margin: 0;
      font-size: 0.95rem;
    }

    /* ---------- SECTION 5: CTA ---------- */
    .cta-about {
      background: linear-gradient(145deg, #0d6efd 0%, #0056d2 100%);
      border-radius: 32px;
      padding: 60px 40px;
      color: #fff;
    }
    .cta-about h2 {
      font-weight: 700;
    }
    .cta-about p {
      opacity: 0.85;
    }

    /* ---------- ABOUT US RESPONSIVE ---------- */
    @media (max-width: 768px) {
      .hero-about { min-height: 40vh; }
      .hero-about h1 { font-size: 2.4rem; }
      .hero-about .breadcrumb { font-size: 0.9rem; }
      .cta-about { padding: 40px 24px; border-radius: 24px; }
      .cta-about h2 { font-size: 1.6rem; }
      .timeline-item { 
        flex-direction: column; 
        gap: 8px;
        padding-left: 20px;
      }
      .timeline-item .year { 
        font-size: 1.4rem; 
        min-width: auto;
      }
      .timeline-item::before {
        top: 24px;
        left: -8px;
      }
    }
	
	
	
	
	
    /* ============================================
       SERVICES PAGE SPECIFIC CSS
       ============================================ */

    /* ---------- HERO SECTION (Services) ---------- */
    .hero-services {
      background: linear-gradient(145deg, #0d6efd 0%, #0056d2 100%);
      min-height: 60vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-services::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 200%;
      background: rgba(255,255,255,0.05);
      transform: rotate(15deg);
      border-radius: 50%;
    }
    .hero-services h1 { 
      font-weight: 700; 
      font-size: 3.8rem; 
      letter-spacing: -1px;
      color: #fff;
    }
    .hero-services p { 
      color: rgba(255,255,255,0.85); 
      font-size: 1.2rem; 
    }
    .hero-services .breadcrumb {
      background: transparent;
      padding: 0;
    }
    .hero-services .breadcrumb-item a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: 0.2s;
    }
    .hero-services .breadcrumb-item a:hover {
      color: #fff;
    }
    .hero-services .breadcrumb-item.active {
      color: #fff;
    }
    .hero-services .breadcrumb-item + .breadcrumb-item::before {
      color: rgba(255,255,255,0.5);
    }

    /* ---------- SECTION 1: Services Grid ---------- */
    .service-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 40px 30px;
      height: 100%;
      transition: 0.3s ease;
      border: 1px solid rgba(0,0,0,0.02);
      position: relative;
      overflow: hidden;
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(13,110,253,0.08);
      border-color: rgba(13,110,253,0.15);
    }
    .service-card .icon-wrapper {
      width: 70px;
      height: 70px;
      background: #f0f7ff;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: 0.3s ease;
    }
    .service-card:hover .icon-wrapper {
      background: #0d6efd;
    }
    .service-card .icon-wrapper i {
      font-size: 2.2rem;
      color: #0d6efd;
      transition: 0.3s ease;
    }
    .service-card:hover .icon-wrapper i {
      color: #fff;
    }
    .service-card h4 {
      font-weight: 700;
      margin-bottom: 12px;
    }
    .service-card p {
      color: #6c757d;
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .service-card .service-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .service-card .service-features li {
      padding: 4px 0;
      color: #4a4a5a;
      font-size: 0.95rem;
    }
    .service-card .service-features li i {
      color: #0d6efd;
      margin-right: 8px;
    }
    .service-card .learn-more {
      display: inline-block;
      margin-top: 16px;
      color: #0d6efd;
      font-weight: 600;
      text-decoration: none;
      transition: 0.2s;
    }
    .service-card .learn-more:hover {
      color: #0056d2;
      transform: translateX(4px);
    }
    .service-card .learn-more i {
      transition: 0.2s;
    }
    .service-card .learn-more:hover i {
      transform: translateX(4px);
    }

    /* ---------- SECTION 2: Why Choose Us ---------- */
    .why-card {
      text-align: center;
      padding: 30px 20px;
      background: #fff;
      border-radius: 20px;
      height: 100%;
      transition: 0.3s ease;
      border: 1px solid rgba(0,0,0,0.02);
    }
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    }
    .why-card .number-circle {
      width: 60px;
      height: 60px;
      background: #f0f7ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 1.6rem;
      font-weight: 700;
      color: #0d6efd;
    }
    .why-card h5 {
      font-weight: 600;
      margin-bottom: 8px;
    }
    .why-card p {
      color: #6c757d;
      font-size: 0.95rem;
      margin: 0;
    }

    /* ---------- SECTION 3: CTA ---------- */
    .cta-services {
      background: linear-gradient(145deg, #0d6efd 0%, #0056d2 100%);
      border-radius: 32px;
      padding: 60px 40px;
      color: #fff;
    }
    .cta-services h2 {
      font-weight: 700;
    }
    .cta-services p {
      opacity: 0.85;
    }

    /* ---------- SERVICES RESPONSIVE ---------- */
    @media (max-width: 768px) {
      .hero-services { min-height: 40vh; }
      .hero-services h1 { font-size: 2.4rem; }
      .hero-services .breadcrumb { font-size: 0.9rem; }
      .service-card { padding: 30px 20px; }
      .cta-services { padding: 40px 24px; border-radius: 24px; }
      .cta-services h2 { font-size: 1.6rem; }
    }
	
	
	
	
	 /* ============================================
       TERMS & CONDITIONS SPECIFIC CSS
       ============================================ */

    .hero-terms {
      background: linear-gradient(145deg, #0d6efd 0%, #0056d2 100%);
      min-height: 40vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-terms::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 200%;
      background: rgba(255,255,255,0.05);
      transform: rotate(15deg);
      border-radius: 50%;
    }
    .hero-terms h1 { 
      font-weight: 700; 
      font-size: 3.5rem; 
      letter-spacing: -1px;
      color: #fff;
    }
    .hero-terms p { 
      color: rgba(255,255,255,0.85); 
      font-size: 1.1rem; 
    }
    .hero-terms .breadcrumb {
      background: transparent;
      padding: 0;
    }
    .hero-terms .breadcrumb-item a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: 0.2s;
    }
    .hero-terms .breadcrumb-item a:hover {
      color: #fff;
    }
    .hero-terms .breadcrumb-item.active {
      color: #fff;
    }
    .hero-terms .breadcrumb-item + .breadcrumb-item::before {
      color: rgba(255,255,255,0.5);
    }

    .terms-content {
      background: #ffffff;
      border-radius: 24px;
      padding: 48px 40px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.03);
      border: 1px solid rgba(0,0,0,0.02);
    }
    .terms-content h4 {
      font-weight: 700;
      color: #0d6efd;
      margin-bottom: 8px;
    }
    .terms-content p {
      color: #4a4a5a;
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .terms-content .last-updated {
      color: #6c757d;
      font-size: 0.9rem;
      border-top: 1px solid #e9edf4;
      padding-top: 20px;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .hero-terms { min-height: 30vh; }
      .hero-terms h1 { font-size: 2.2rem; }
      .hero-terms .breadcrumb { font-size: 0.9rem; }
      .terms-content { padding: 30px 20px; }
    }
	
	
	
    /* ============================================
       PRIVACY POLICY SPECIFIC CSS
       ============================================ */

    .hero-privacy {
      background: linear-gradient(145deg, #0d6efd 0%, #0056d2 100%);
      min-height: 40vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-privacy::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 200%;
      background: rgba(255,255,255,0.05);
      transform: rotate(15deg);
      border-radius: 50%;
    }
    .hero-privacy h1 { 
      font-weight: 700; 
      font-size: 3.5rem; 
      letter-spacing: -1px;
      color: #fff;
    }
    .hero-privacy p { 
      color: rgba(255,255,255,0.85); 
      font-size: 1.1rem; 
    }
    .hero-privacy .breadcrumb {
      background: transparent;
      padding: 0;
    }
    .hero-privacy .breadcrumb-item a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: 0.2s;
    }
    .hero-privacy .breadcrumb-item a:hover {
      color: #fff;
    }
    .hero-privacy .breadcrumb-item.active {
      color: #fff;
    }
    .hero-privacy .breadcrumb-item + .breadcrumb-item::before {
      color: rgba(255,255,255,0.5);
    }

    .privacy-content {
      background: #ffffff;
      border-radius: 24px;
      padding: 48px 40px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.03);
      border: 1px solid rgba(0,0,0,0.02);
    }
    .privacy-content h4 {
      font-weight: 700;
      color: #0d6efd;
      margin-bottom: 8px;
    }
    .privacy-content p {
      color: #4a4a5a;
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .privacy-content ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }
    .privacy-content ul li {
      color: #4a4a5a;
      line-height: 1.8;
      margin-bottom: 6px;
    }
    .privacy-content .last-updated {
      color: #6c757d;
      font-size: 0.9rem;
      border-top: 1px solid #e9edf4;
      padding-top: 20px;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .hero-privacy { min-height: 30vh; }
      .hero-privacy h1 { font-size: 2.2rem; }
      .hero-privacy .breadcrumb { font-size: 0.9rem; }
      .privacy-content { padding: 30px 20px; }
    }