 /* ====== Base / Reset ====== */
    :root {
      --blue-900: #0b2b5a;
      --blue-800: #133a78;
      --blue-700: #1e4f9b;
      --blue-600: #235ec0;
      --blue-500: #2c6ee8;
      --indigo-500: #6b7bff;
      --pink-500: #ff8fb1;
      --pink-400: #ffb3c8;
      --pink-300: #ffd0df;
      --rose-50: #fff5f7;
      --gray-900: #0f172a;
      --gray-800: #1f2937;
      --gray-700: #334155;
      --gray-600: #475569;
      --gray-500: #64748b;
      --gray-400: #94a3b8;
      --gray-300: #cbd5e1;
      --gray-200: #e5e7eb;
      --gray-100: #f1f5f9;
      --white: #ffffff;
      --shadow-soft: 0 10px 24px rgba(18, 35, 76, 0.08);
      --shadow-card: 0 14px 30px rgba(18, 35, 76, 0.10);
      --radius-lg: 22px;
      --radius-xl: 28px;
      --container: 1200px;
    }
    
    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Inter, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
      color: var(--gray-800);
      background: #fafbff;
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(100%, var(--container)); margin-inline: auto; padding-inline: 16px; }
    .btn { display: inline-flex; align-items: center; gap: 10px; border: 0; cursor: pointer; font-weight: 600; border-radius: 999px; padding: 12px 22px; transition: transform .2s ease, box-shadow .2s ease; }
    .btn:active { transform: translateY(1px); }
    .btn-primary { background: var(--blue-600); color: var(--white); box-shadow: 0 8px 16px rgba(44,110,232,.25); }
    .btn-primary:hover { box-shadow: 0 10px 20px rgba(44,110,232,.35); }
    .btn-ghost { background: rgba(255,255,255,.3); color: #0d2a58; border: 1px solid rgba(255,255,255,.5); }

    /* ====== Top Bar ====== */
    .topbar {
      background: var(--blue-900);
      color: #cfe0ff;
      padding: 12px 0;
      
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .topbar .container {
      padding: 0 20px;
    }
    .topbar .row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .topbar .social {
      display: flex;
      align-items: center;
      gap: 15px;
      flex: 1;
      min-width: 300px;
    }
    .topbar .social:first-child {
      justify-content: flex-start;
    }
    .topbar .social:last-child {
      justify-content: flex-end;
    }
    .topbar .chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 10px 18px;
      border-radius: 50px;
      font-size: 15px;
      transition: all 0.3s ease;
    }
    .topbar .chip:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }
    .topbar .chip i {
      font-size: 16px;
    }
    
    /* ====== Navbar ====== */
    .navbar { 
      position: sticky; 
      top: 0; 
      z-index: 30; 
      background: var(--white); 
      box-shadow: 0 2px 0 rgba(0,0,0,0.02); 
    }
    .navbar .nav { 
      display: flex; 
      align-items: center; 
      justify-content: space-between; 
      height: 72px; 
    }
    .brand { 
      display: flex; 
      align-items: center; 
      gap: 10px; 
      font-weight: 800; 
      color: var(--blue-900); 
      letter-spacing: .3px; 
    }
    .menu { 
      display: flex; 
      align-items: center; 
      gap: 26px; 
      font-weight: 500; 
    }
    .menu a { 
      color: var(--gray-700); 
    }
    .menu a.active { 
      color: var(--blue-700); 
    }
    .cta { 
      display: flex; 
      align-items: center; 
      gap: 12px; 
    }
    <style>
/* Dropdown Base */
.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  padding: 8px 12px;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.menu a:hover {
  color: var(--brand, #ffb3c8);
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
}

/* Dropdown Content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  z-index: 99;
  border-radius: 8px;
  overflow: hidden;
}

/* Dropdown Links */
.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #333;
  font-weight: 400;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background: #f4f4f4;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


    /* ====== Hero ====== */
   
    .hero {
      background: linear-gradient(135deg, #ceddff 0%, #ffe0ee 45%, #d7e2ff 100%);
      padding: 80px 0 100px;
      position: relative;
      overflow: hidden;
    }
    .hero:before {
      content: '';
      position: absolute; 
      inset: -40% -20% auto -20%; 
      height: 120%;
      background: radial-gradient(600px 600px at 20% 10%, rgba(255,255,255,.7), transparent 60%),
                  radial-gradient(500px 500px at 90% 10%, rgba(255,255,255,.6), transparent 60%);
      pointer-events: none;
    }
    .hero-grid { 
      display: grid; 
      grid-template-columns: 1.2fr .8fr; 
      gap: 24px; 
      align-items: end; 
    }
    .hero .eyebrow { 
      font-size: 13px; 
      font-weight: 700; 
      letter-spacing: .14em; 
      color: #2b4ea2; 
      text-transform: uppercase; 
    }
    .hero h1 { 
      margin: 8px 0 10px; 
      font-size: 44px; 
      line-height: 1.15; 
      color: #102a5d; 
      font-weight: 800; 
    }
    .hero p { 
      color: #31508d; 
      max-width: 640px; 
    }
    .hero .actions { 
      margin-top: 18px; 
      display: flex; 
      gap: 12px; 
    }
    .hero .call-chip { 
      position: absolute; 
      right: 12px; 
      top: 12px; 
      background: var(--white); 
      padding: 10px 14px; 
      border-radius: 999px; 
      box-shadow: var(--shadow-soft); 
      color: var(--blue-700); 
      font-weight: 600; 
    }

    .hero-figure { 
      position: relative; 
      height: 420px; 
      display: flex; 
      align-items: end; 
      justify-content: center; 
    }
    .person-outline {
      position: absolute;
      bottom: -12px;
      width: 340px;
      height: 420px;
      border-radius: 24px;
      display: grid;
      place-items: end center;
      overflow: hidden;
      border: 1px dashed rgba(16,42,93,.25);
      background: url('image/main_person.jpeg') no-repeat center/cover;
    }

    .person-outline-about{
      position: absolute;
      bottom: -12px;
      width: 340px;
      height: 420px;
      border-radius: 24px;
      display: grid;
      place-items: end center;
      overflow: hidden;
      border: 1px dashed rgba(16,42,93,.25);
      background: url('image/main_person.jpeg') no-repeat center/cover;
    }

    .person-outline:after { 
      content: ""; 
      width: 260px; 
      height: 380px; 
      /* background: radial-gradient(ellipse at center, rgba(255,255,255,.65), rgba(255,255,255,0) 70%);  */
      border-radius: 18px; 
      filter: blur(1px); 
    }
    .hero-badges { 
      position: absolute; 
      left: 10px; 
      bottom: 90px; 
      display: grid; 
      gap: 8px; 
    }
    .badge { 
      background: var(--white); 
      box-shadow: var(--shadow-soft); 
      border-radius: 14px; 
      padding: 8px 12px; 
      font-size: 13px; 
      color: var(--blue-800); 
      font-weight: 600; 
    }

    /* Default (desktop) */
.hero-heading {
  margin-top: -340px;
}

/* Tablets */
@media (max-width: 1024px) {
  .hero-heading {
    margin-top: -200px;
    font-size: 36px; /* shrink font */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-heading {
    margin-top: -120px;
    font-size: 28px;
    line-height: 1.3;
    text-align: center; /* optional */
  }
  .hero-slider {
    margin-top: 10px;
    text-align: center; /* optional */
  }
}


    /* ====== Hero Text Slider ====== */
    .hero-slider {
      position: relative;
      min-height: 80px;
      max-width: 640px;
      overflow: hidden;
    }
    .hero-slider .slide {
      position: absolute;
      width: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      color: #31508d;
      font-size: 1.4rem;
      line-height: 1.5;
    }
    .hero-slider .slide.active {
      opacity: 1;
      position: relative;
    }

    /* ====== Gradient Strip ====== */
    .section { 
      padding: 54px 0; 
    }
    .strip { 
      background: linear-gradient(90deg, #cfe0ff, #f8d0e4, #cfe0ff); 
      border-radius: var(--radius-xl); 
      padding: 30px; 
      box-shadow: var(--shadow-card); 
      color: #1f3782; 
    }
    .strip .btn { 
      background: var(--white); 
      color: var(--blue-700); 
      border: 1px solid #e6ecff; 
    }

    /* ====== Service Section ====== */

    #services h3 {
  color: var(--blue-700);
  font-weight: 600;
  margin-bottom: 15px;
}
#services p {
  color: #444;
  line-height: 1.7;
}
#services img {
  transition: transform 0.4s ease;
}
#services img:hover {
  transform: scale(1.05);
}

    .service-section {
      background: white;
      padding: 2rem 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
    }
    .service-section .section-title {
      color: #102a5d;
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 15px;
    }
    .service-section .section-title:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 4px;
      width: 70px;
      background: linear-gradient(to right, #ff6b6b, #102a5d);
      border-radius: 2px;
    }
    .service-section .lead {
      font-size: 1.2rem;
      line-height: 1.8;
      margin-bottom: 0.5rem;
    }
    .service-section .service-img {
      border-radius: 10px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
    }
    .service-section .service-img:hover {
      transform: translateY(-5px);
    }
    .service-section .btn-custom {
      background: #102a5d;
      color: white;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      border: none;
    }
    .service-section .btn-custom:hover {
      background: #ffffff;
      color: #102a5d;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* ====== Slider Section ====== */
    
 /* ====== Slider Section ====== */
.slider-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #eaf2ff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  margin: 0 0 15px;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-900);
}

.section-subtitle {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-size: 14px;
}

/* ===== Card Slider ===== */
.card-slider {
  position: relative;
}

.slider-container {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.service-card {
  flex: 0 0 calc(33.333% - 13.3px); /* 3 cards desktop */
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.card-image {
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-600);
  margin-bottom: 10px;
  display: inline-block;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue-900);
}

.card-description {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 15px;
  flex-grow: 1;
}

.card-button {
  background: var(--blue-600);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-button:hover {
  background: var(--blue-700);
}
.service-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #ceddff 0%, #ffe0ee 45%, #d7e2ff 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.card-credentialing:hover {
  background: linear-gradient(135deg, #eaf2ff 0%, #fff0f5 45%, #f0f4ff 100%);
}

.card-access:hover {
  background: linear-gradient(135deg, #fff8e7 0%, #fef0e6 45%, #fffce8 100%);
}

.card-rcm:hover {
  background: linear-gradient(135deg, #f9f0ff 0%, #fff0fb 45%, #f8f4ff 100%);
}

.card-marketing:hover {
  background: linear-gradient(135deg, #eafef1 0%, #f0fff8 45%, #e8fef4 100%);
}

.card-support:hover {
  background: linear-gradient(135deg, #fffef0 0%, #fff8e6 45%, #fffdf4 100%);
}

/* Keep smooth hover */
.service-card {
  transition: all 0.4s ease;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* Slider navigation */
.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.slider-arrows .arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrows .arrow:hover {
  background: var(--blue-700);
  transform: scale(1.1);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--blue-600);
  transform: scale(1.2);
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
  .service-card {
    flex: 0 0 calc(50% - 10px); /* 2 cards tablet */
  }
}

@media (max-width: 768px) {
  .service-card {
    flex: 0 0 100%; /* 1 card mobile */
  }
}


    /* ====== Testimonials ====== */
    .testimonials {
      background: linear-gradient(135deg, #f8faff 0%, #eaf2ff 100%);
      padding: 80px 0;
    }
    .testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px; /* adjust as needed */
}

    .testimonial-card:hover {
      background: linear-gradient(135deg, #ceddff 0%, #ffe0ee 45%, #d7e2ff 100%);
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

    .testimonial-card-t {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px; /* adjust as needed */
}

    .testimonial-card-t:hover {
      background: linear-gradient(135deg, #ceddff 0%, #ffe0ee 45%, #d7e2ff 100%);
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

    .testimonial-text {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #444;
      margin: 20px 0;
      font-style: italic;
    }
    .testimonial-user {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testimonial-user .avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #e0ebff;
    }
    .pill {
      display: inline-block;
      padding: 4px 12px;
      font-size: 0.8rem;
      font-weight: 600;
      border-radius: 50px;
      margin-bottom: 15px;
    }
    .pill-blue {
      background: #e8f0ff;
      color: #2d5cff;
    }
    .muted {
      font-size: 0.85rem;
      color: #888;
    }

    /* ====== Contact Section ====== */
    .contact-ss {
      font-family: 'Poppins', sans-serif;
      background: url("https://img.freepik.com/free-photo/group-people-therapy-session_23-2149172700.jpg") no-repeat center center/cover;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      margin: 0;
    }
    .contact-section {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    .contact-box {
      display: flex;
      max-width: 1000px;
      width: 100%;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      transform: translateY(0);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .contact-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    }

    /* Form Side */
    .form-side {
      flex: 1;
      padding: 40px;
      background: #fff;
      position: relative;
      z-index: 2;
    }
    .form-side::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 74, 173, 0.03) 0%, rgba(253, 231, 235, 0.03) 100%);
      z-index: -1;
    }
    .form-side h2 {
      font-weight: 700;
      margin-bottom: 30px;
      color: #102a5d;
      position: relative;
      padding-bottom: 15px;
    }
    .form-side h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 4px;
      background: linear-gradient(to right, #004aad, #ff6b95);
      border-radius: 2px;
    }
    .form-control {
      border-radius: 12px;
      padding: 14px 20px;
      border: 2px solid #e6e6e6;
      transition: all 0.3s ease;
      font-size: 15px;
    }
    .form-control:focus {
      border-color: #004aad;
      box-shadow: 0 0 0 0.25rem rgba(0, 74, 173, 0.15);
    }
    textarea.form-control {
      border-radius: 12px;
      resize: none;
      min-height: 120px;
    }
    .btn-primary {
      border-radius: 12px;
      padding: 14px;
      background: linear-gradient(to right, #004aad, #3a6fc9);
      border: none;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
    }
    .btn-primary:hover {
      background: linear-gradient(to right, #003a8a, #2c5ab0);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
    }

    /* Info Side */
    .info-side {
      flex: 1;
      padding: 40px;
      background: linear-gradient(135deg, #fde7eb 0%, #e6eeff 100%);
      position: relative;
      overflow: hidden;
    }
    .info-side::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
      border-radius: 50%;
      z-index: 1;
    }
    .info-side::after {
      content: '';
      position: absolute;
      bottom: -30px;
      left: -30px;
      width: 150px;
      height: 150px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
      border-radius: 50%;
      z-index: 1;
    }
    .info-side h3 {
      font-weight: 700;
      margin-bottom: 25px;
      color: #102a5d;
      position: relative;
      z-index: 2;
    }
    .info-side h3::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 40px;
      height: 4px;
      background: linear-gradient(to right, #ff6b95, #004aad);
      border-radius: 2px;
    }
    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      font-size: 15px;
      position: relative;
      z-index: 2;
      transition: transform 0.3s ease;
    }
    .info-item:hover {
      transform: translateX(5px);
    }
    .info-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(to right, #004aad, #3a6fc9);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-right: 15px;
      box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
      flex-shrink: 0;
    }
    .social-title {
      font-weight: 600;
      margin: 30px 0 15px;
      color: #102a5d;
      position: relative;
      z-index: 2;
    }
    .social-icons {
      display: flex;
      gap: 12px;
      position: relative;
      z-index: 2;
    }
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: linear-gradient(to right, #004aad, #3a6fc9);
      color: white;
      font-size: 18px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
    }
    .social-icons a:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 74, 173, 0.4);
    }

    /* Decorative elements */
    .decoration {
      position: absolute;
      z-index: 1;
    }
    .decoration.circle {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      background: rgba(0, 74, 173, 0.1);
      bottom: 30px;
      right: 30px;
    }
    .decoration.square {
      width: 20px;
      height: 20px;
      background: rgba(255, 107, 149, 0.1);
      top: 30px;
      right: 30px;
      transform: rotate(45deg);
    }

    /* ====== Footer ====== */
    .footer {
      background: linear-gradient(rgba(10, 30, 70, 0.85), rgba(10, 30, 70, 0.85)), 
                  url('image/f-g.jpg') center/cover no-repeat;
      color: #fff;
      padding: 60px 0 30px;
      
      box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
    }
    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: url('image/f-g.jpg'); */
      opacity: 0.1;
      pointer-events: none;
    }
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-logo {
      margin-bottom: 20px;
    }
    .footer-logo img {
      height: 50px;
      filter: brightness(0) invert(1);
    }
    .footer-heading {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(to right, #4dabf7, #da77f2);
      border-radius: 3px;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 12px;
    }
    .footer-links a {
      color: #e6e6e6;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }
    .footer-links a:hover {
      color: #fff;
      transform: translateX(5px);
    }
    .footer-links a:hover i {
      opacity: 1;
    }
    .footer-links i {
      margin-right: 8px;
      font-size: 14px;
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }
    .contact-info {
      list-style: none;
    }
    .contact-info li {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }
    .contact-info i {
      width: 35px;
      height: 35px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
      font-size: 14px;
      transition: all 0.3s ease;
    }
    .contact-info li:hover i {
      background: linear-gradient(135deg, #4dabf7, #da77f2);
      transform: scale(1.1);
    }
    .social-media {
      display: flex;
      gap: 12px;
      margin-top: 15px;
    }
    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .social-icon::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #4dabf7, #da77f2);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }
    .social-icon i {
      position: relative;
      z-index: 2;
    }
    .social-icon:hover::before {
      opacity: 1;
    }
    .social-icon:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 25px;
      text-align: center;
      font-size: 14px;
      color: #ccc;
    }
    .newsletter-form {
      display: flex;
      margin-top: 15px;
      gap: 10px;
    }
    .newsletter-input {
      flex: 1;
      padding: 12px 15px;
      border: none;
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      outline: none;
    }
    .newsletter-input::placeholder {
      color: #ccc;
    }
    .newsletter-btn {
      padding: 12px 20px;
      border: none;
      border-radius: 30px;
      background: linear-gradient(135deg, #4dabf7, #da77f2);
      color: #fff;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
    }
    .newsletter-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* ====== Responsiveness ====== */
    @media (max-width: 1080px) {
      .hero-grid, .stats-grid, .cta-card, .contact { 
        grid-template-columns: 1fr; 
      }
      .hero-figure { 
        height: 360px; 
      }
    }
    @media (max-width: 768px) {
      .menu { 
        display: none; 
      }
      .hero h1 { 
        font-size: 34px; 
      }
      .topbar .row {
        flex-direction: column;
        gap: 15px;
      }
      .topbar .social {
        min-width: 100%;
        justify-content: center !important;
      }
      .contact-box {
        flex-direction: column;
      }
      .info-side {
        order: -1;
      }
      .form-side, .info-side {
        padding: 30px;
      }
      .service-card {
        flex: 0 0 100%;
      }
      .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .newsletter-form {
        flex-direction: column;
      }
    }
    
    .button-hero {
      background: linear-gradient(135deg, #4f46e5, #3b82f6);
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .button-hero:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
      background: linear-gradient(135deg, #3b82f6, #2563eb);
    }

    .button-hero:active {
      transform: scale(0.95);
    }

     .section {
      padding: 54px 0;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }
    
    .eyebrow {
      color: var(--blue-700);
      font-weight: 700;
      letter-spacing: .18em;
      font-size: 12px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 10px;
    }
    
    h2 {
      margin: 6px 0 30px;
      font-size: 30px;
      color: var(--blue-900);
      font-weight: 800;
    }
    
    /* Blog Section Styling */
    .blog { 
      display: grid; 
      grid-template-columns: repeat(4, 1fr); 
      gap: 24px; 
      margin-top: 16px; 
    }
    
    .post { 
      background: var(--white); 
      border-radius: var(--radius-lg); 
      box-shadow: var(--shadow-card); 
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .post:hover {
      transform: translateY(-8px);
      background: linear-gradient(135deg, #ceddff 0%, #ffe0ee 45%, #d7e2ff 100%);
    }
    
    .post .thumb { 
      height: 160px; 
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }
    
    .post .thumb::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 60%;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
      opacity: 0.8;
    }
    
    .post .thumb .country-flag {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      z-index: 2;
      border: 2px solid white;
    }
    
    .post .body { 
      padding: 20px; 
      position: relative;
    }
    
    .post h4 { 
      margin: 0 0 12px; 
      font-size: 18px; 
      color: var(--blue-900); 
      font-weight: 700;
      line-height: 1.4;
    }
    
    .country-name {
      display: inline-block;
      background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
      color: white;
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(44, 110, 232, 0.25);
    }
    
    .post p { 
      font-size: 14px; 
      color: var(--gray-600);
      line-height: 1.6;
      margin-bottom: 20px;
    }
    
   
    
    
    /* Responsive Design */
    @media (max-width: 1080px) {
      .blog { 
        grid-template-columns: repeat(2, 1fr); 
      }
    }
    
    @media (max-width: 640px) {
      .blog { 
        grid-template-columns: 1fr; 
      }
      
      h2 {
        font-size: 26px;
      }
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }
    

/* ====== Mobile Responsive Enhancements ====== */
@media (max-width: 1200px) {
  :root {
    --container: 100%;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    order: 2;
    text-align: center;
    margin-top: 0;
  }
  
  .hero-figure {
    order: 1;
    height: 320px;
  }
  
  .hero-badges {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  .badge {
    margin: 5px;
  }
}

@media (max-width: 992px) {
  .blog {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  /* Topbar adjustments */
  .topbar .row {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .topbar .social {
    min-width: 100%;
    justify-content: center !important;
  }
  
  /* Navbar adjustments */
  .navbar .nav {
    height: auto;
    padding: 15px 0;
    flex-wrap: wrap;
  }
  
  .brand {
    margin-bottom: 15px;
  }
  
  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    display: none;
  }
  
  .menu.active {
    display: flex;
  }
  
  .cta {
    margin-left: auto;
  }
  
  /* Mobile menu toggle */
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--blue-900);
    cursor: pointer;
    margin-left: 15px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 0 80px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-slider {
    min-height: 120px;
  }
  
  .hero .actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero .call-chip {
    position: relative;
    right: auto;
    top: auto;
    margin: 20px auto 0;
    display: inline-block;
  }
  
  /* Service cards */
  .slider-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 5px;
  }
  
  .slider-track {
    padding: 5px;
  }
  
  .service-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    margin: 0 5px;
  }
  
  .slider-arrows {
    display: none;
  }
  
  /* Contact section */
  .contact-box {
    flex-direction: column;
  }
  
  .info-side {
    order: -1;
  }
  
  .form-side, .info-side {
    padding: 25px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  /* Blog section */
  .blog {
    grid-template-columns: 1fr;
  }
  
  /* Testimonials */
  .testimonial-card {
    margin-bottom: 20px;
  }
  
  /* General section adjustments */
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  /* Base adjustments */
  .container {
    padding-inline: 12px;
  }
  
  .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  /* Hero section */
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero-slider .slide {
    font-size: 1.1rem;
  }
  
  .person-outline {
    width: 280px;
    height: 350px;
  }
  
  /* Service cards */
  .service-card {
    flex: 0 0 92%;
  }
  
  .card-title {
    font-size: 18px;
  }
  
  /* Contact form */
  .form-control {
    padding: 12px 16px;
  }
  
  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }
  
  .social-icon, .info-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  /* Topbar chips */
  .topbar .chip {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  /* Dropdown menu */
  .dropdown-content {
    min-width: 160px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile menu toggle button (add to your HTML) */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover {
    transform: none;
  }
  
  .btn:active {
    transform: scale(0.98);
  }
  
  .menu a:hover {
    color: inherit;
  }
  
  .menu a.active {
    color: var(--blue-700);
  }
}

/* High-resolution devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero {
    background: linear-gradient(135deg, #ceddff 0%, #ffe0ee 45%, #d7e2ff 100%);
  }
}

/* Orientation-specific styles */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: 40px 0 60px;
  }
  
  .hero-figure {
    height: 250px;
  }
}

/* Print styles */
@media print {
  .topbar, .navbar, .cta, .slider-arrows, .social-icons {
    display: none !important;
  }
}

/* ====== Responsive Media Queries ====== */
/* ===== Desktop ===== */

/* ===== Desktop ===== */
.hamburger {
  display: none; /* hide hamburger on desktop */
}

.menu {
  display: flex; /* always flex on desktop */
  align-items: center;
  gap: 20px;
}

.desktop-cta {
  display: block;
}

.mobile-btn {
  display: none;
}

/* ===== Mobile ===== */

@media (max-width: 992px) {
  .hamburger {
    display: block;               /* show hamburger */
    position: relative;           /* relative to parent container */
    margin-left: 16px;            /* move towards left */
    margin-top: 8px;              /* optional vertical spacing */
    width: 50px;                  /* bigger size */
    height: 50px;                 /* bigger size */
    font-size: 28px;              /* icon size */
    cursor: pointer;
    z-index: 10000;               /* stay on top */
  }

  .menu {
    display: none; /* hidden by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 9999;
  }

  .menu a, .menu .dropbtn {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .dropdown-content {
  display: none;
  flex-direction: column;
  width: 100%;
  background: #f9f9f9;
  padding: 0;
}


  .dropdown.open .dropdown-content {
    display: flex;
  }

  .desktop-cta {
    display: none; /* hide desktop button on mobile */
  }

  .mobile-btn {
    display: inline-block; /* show mobile button */
    margin-top: 10px;
  }
}


.testimonial-card:hover {
  transform: translateY(-5px);
}
.patner {
      background: linear-gradient(90deg, #cfe0ff, #cfe0ff); 
      
    }


/* Button */
        .announcement-btn {
            position: fixed;
            top: 40%;
            right: 0;
            background: linear-gradient(90deg,  #f81212);
            
            color: white;
            padding: 15px 10px;
            font-weight: bold;
            cursor: pointer;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            border-radius: 10px 0 0 10px;
            z-index: 1000;
            box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .announcement-btn:hover {
           background: linear-gradient(90deg, #cfe0ff, #f8d0e4, #cfe0ff); 
            padding-right: 12px;
        }
        
        .announcement-btn i {
            writing-mode: horizontal-tb;
            font-size: 18px;
        }
        
        /* Panel */
        .announcement-panel {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100%;
            background: #fff;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
            transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            z-index: 999;
            display: flex;
            flex-direction: column;
        }
        
        .announcement-panel.active {
            right: 0;
        }
        
        .announcement-header {
             background: linear-gradient(90deg, #cfe0ff, #f8d0e4, #cfe0ff); 
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 3px solid #004aad;
        }
        
        .announcement-header h3 {
            margin: 0;
            color: #004aad;
            font-size: 1.5rem;
        }
        
        .close-btn {
            background: transparent;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #004aad;
            transition: transform 0.3s ease;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-btn:hover {
            transform: rotate(90deg);
            background: rgba(255, 255, 255, 0.2);
        }
        
        .announcement-body {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            background: #f9f9f9;
        }
        
        .announcement-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .announcement-list li {
            margin-bottom: 15px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .announcement-list li:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .announcement-list a {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            color: #004aad;
            text-decoration: none;
            font-weight: 500;
            position: relative;
        }
        
        .announcement-list a:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
            background: #eebce7;
            transition: width 0.3s ease;
        }
        
        .announcement-list a:hover:before {
            width: 8px;
        }
        
        .announcement-list i {
            margin-right: 12px;
            color: black;
            font-size: 18px;
        }
        
        .new-badge {
            background: #ff5252;
            color: white;
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 20px;
            margin-left: 10px;
            font-weight: bold;
        }
        
        /* Overlay when panel is active */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(3px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Responsive design */
        @media (max-width: 500px) {
            .announcement-panel {
                width: 100%;
                right: -100%;
            }
            
            .announcement-btn {
                padding: 12px 8px;
                font-size: 0.9rem;
            }
        }
@keyframes bigJump {
  0%   { transform: scale(1) translateY(0); }
  20%  { transform: scale(1.8) translateY(-40px); } /* huge jump */
  40%  { transform: scale(0.9) translateY(10px); }  /* squash */
  60%  { transform: scale(1.4) translateY(-20px); } /* bounce back */
  80%  { transform: scale(1.05) translateY(5px); }  /* settle bounce */
  100% { transform: scale(1) translateY(0); }
}

.announcement-btn.pop-once {
  animation: bigJump 1.5s cubic-bezier(0.28, 1.15, 0.36, 1.0);
}





.testimonial-card-t {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.testimonial-text {
  font-size: 15px;
  color: #444;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.author-img {
  width: 80px;   /* increased size */
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2b4ea2;
}

.author-info {
  text-align: left;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #102a5d;
}

.author-role {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Testimonial slider styles (scoped) */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 0;
}

.testimonial-slider .slides {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

.testimonial-slider .slide {
  min-width: 100%;
  box-sizing: border-box;
  opacity: 1; /* each slide is fully visible, container handles movement */
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-slider .testimonial-card-t {
  width: 100%;
  max-width: 800px;
}

/* navigation buttons */
.testimonial-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  z-index: 20;
  width: 44px;
  height: 44px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-slider .prev { left: 8px; }
.testimonial-slider .next { right: 8px; }

/* small responsive tweaks */
@media (max-width: 576px) {
  .testimonial-slider .slider-btn { width: 38px; height: 38px; font-size: 1.2rem; }
  .testimonial-slider .testimonial-card-t { padding: 20px; }
}
