*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', sans-serif;
  color: #1e3a8a;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 200;
}

/* TOP BAR */
.top-bar {
  background: #1e3a8a;
  padding: 0px 0;
  font-size: 15px;
  color: #ffffff;
  height: 70px;
  line-height: 70px;
}
.top-bar .tb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar .tb-right { display: flex; gap: 20px; }
.top-bar i { margin-right: 4px; }

/* NAVBAR */
.site-nav {
  background: #fff;
  padding: 0px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 0 #f0f0f0;
  line-height: 110px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-size: 20px;
  font-weight: 100;
  color: #1e3a8a;
  text-decoration: none;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img {
  height: 80px;
  width: auto;
}
.nav-menu { display: flex; gap: 0; list-style: none; margin-bottom: 0px; }
.nav-menu li a {
  font-size: 17px;
  font-weight: 100;
  color: #444;
  text-decoration: none;
  padding: 6px 17px;
  transition: color .15s;
}
.nav-menu li a:hover,
.nav-menu li a.active { color: #0066cc; }
.mob-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #1e3a8a;
  cursor: pointer;
  padding: 8px 12px;
  transition: all .3s ease;
}
.mob-toggle:hover {
  color: #0066cc;
  transform: scale(1.1);
}

/* HERO WHITE SECTION */
.hero-white {
  background: #fff;
  padding: 56px 0 56px;
}
.hero-white h1 {
  font-size: 55px;
  font-weight: 100;
  line-height: 1.18;
  color: #1e3a8a;
}
.hero-white h1 .grn { color: #0066cc; }
.hero-white .hero-body {
  font-size: 19px;
  color: #666;
  line-height: 1.78;
  margin: 18px 0 24px;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: slideInRight 0.8s ease-out;
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-img-box {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
  border-radius: 20px;
  padding: 24px;
  margin: 20px 20px;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.hero-img-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(30, 58, 138, 0.1);
  border-radius: 50%;
  border: 2px dashed rgba(30, 58, 138, 0.2);
}
.hero-img-box::after {
  content: '📦';
  position: absolute;
  font-size: 48px;
  z-index: 1;
}
.btn-dark {
  background: #1e3a8a;
  color: #fff;
  font-size: 18px;
  font-weight: 200;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}
.btn-dark:hover { 
  background: #0066cc; 
  color: #fff; 
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(30, 58, 138, 0.3);
}

/* HERO SAGE GREEN SECTION */
.hero-sage {
  background: url('images/3603.jpg') top/cover no-repeat;
  padding: 80px 0 80px;
  position: relative;
}
.hero-sage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 74, 153, 0.7); */
  z-index: 1;
}
.hero-sage .container {
  position: relative;
  z-index: 2;
}

/* CTA SECTION */
.cta-container {
  max-width: 500px;
  width: 100%;
}
.cta-card {
  background: rgba(26, 50, 117, 0.8);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-heading {
  font-size: 32px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.cta-subtext {
  font-size: 14px;
  font-weight: 300;
  color: #d0d0d0;
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.cta-btn-primary {
  background: #0066cc;
  color: #fff;
}
.cta-btn-primary:hover {
  background: #004999;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 102, 204, 0.4);
}
.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}
.cta-btn-tertiary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cta-btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}
.cta-btn i {
  font-size: 18px;
}

/* WHATSAPP FLOATING BUTTON WITH CHAT BUBBLE */
.whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.whatsapp-chat-bubble {
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  animation: slideIn 0.4s ease-out;
  border: 1px solid #e0e0e0;
}
.bubble-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.bubble-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}
.bubble-title {
  font-size: 14px;
  font-weight: 600;
  color: #020800;
  margin: 0;
}
.bubble-status {
  width: 10px;
  height: 10px;
  background: #25D366;
  border-radius: 50%;
  margin-left: auto;
  border: 2px solid #fff;
}
.bubble-message {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  padding-left: 50px;
}
.whatsapp-btn {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  background-image: url('images/faviconlogo.png');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 575px) {
  .whatsapp-container {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-chat-bubble {
    max-width: 240px;
    padding: 10px 12px;
  }
  .bubble-avatar {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .bubble-title {
    font-size: 12px;
  }
  .bubble-message {
    font-size: 12px;
    padding-left: 46px;
  }
  .whatsapp-btn {
    width: 55px;
    height: 55px;
  }
}
.trust-bar {
  background: #f7f7f5;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 78px 0;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}
.ti {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ti-icon { font-size: 80px; color: #555; line-height: 1; }
.ti-text { font-size: 25px; line-height: 1.35; color: #555; }
.ti-text b { font-size: 16px; font-weight: 500; color: #222; display: block; }

/* ABOUT */
.about-sec {
  background: #1e3a8a;
  padding: 100px 0;
  color: #fbfbfb;
  min-height: auto;
}
.about-img-box {
  background: rgba(255,255,255,.4) url('images/14909.jpg') center/cover no-repeat;
  border-radius: 25px;
  height: 450px;
  width: 100%;
}
.about-sec .eyebrow {
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .75;
  margin-bottom: 15px;
  color: #ffffff;
}
.about-sec h2 {
  font-size: 48px;
  font-weight: 200;
  line-height: 1.25;
  margin-bottom: 25px;
  color: #ffffff;
}
.about-sec p {
  font-size: 16px;
  line-height: 1.8;
  opacity: .85;
  margin-bottom: 40px;
  color: #ffffff;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 2px solid rgba(30, 58, 138, .2);
  padding-top: 40px;
  margin-top: 40px;
}
.stat-cell { flex: 1; text-align: center; }
.stat-cell .sn {
  font-size: 48px;
  font-weight: 200;
  line-height: 1;
  color: #ffffff;
}
.stat-cell .sl {
  font-size: 14px;
  opacity: .75;
  margin-top: 12px;
  color: #ffffff;
  font-weight: 500;
}
.stat-div {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

/* WHY US */
.why-sec {
  padding: 100px 0 80px;
  background: #fff;
}
.why-sec h2 {
  font-size: 44px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 50px;
  color: #1e3a8a;
}
.why-sec h2 .grn { color: #0066cc; }
.wi {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.wi:last-of-type { border-bottom: none; }
.wi-head {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #1e3a8a;
}
.wi-head::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
  margin-right: 2px;
}
.wi-badge {
  background: transparent;
  color: #999;
  font-size: 11px;
  font-weight: 400;
  padding: 0;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0.4px;
  margin-left: auto;
}
.wi p { font-size: 14px; color: #777; line-height: 1.7; }

.why-img-box {
  background: #9fa89f url('images/3625.jpg') center/cover no-repeat;
  border-radius: 20px;
  height: 380px;
  width: 100%;
  margin-bottom: 24px;
}
.rating-box {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 40px 36px;
  color: #fff;
  margin-top: 0;
}
.rating-box .stars { color: #0066cc; font-size: 28px; margin-bottom: 16px; letter-spacing: 3px; }
.rating-box .r-title { font-size: 18px; font-weight: 500; margin-bottom: 12px; color: #fff; }
.rating-box .r-sub { font-size: 14px; color: #888; line-height: 1.75; }

/* SERVICES */
.services-sec {
  padding: 100px 0 80px;
  background: #f9faf9;
}
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: #0066cc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.services-sec h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 67.2px;
  margin-bottom: 20px;
  color: #020800;
}
.services-sec h2 .grn { color: #0066cc; }
.services-sec .sec-body {
  font-size: 18px;
  color: #808380;
  line-height: 28.8px;
  margin-top: 20px;
}
.srv-action-btns { margin-top: 20px; align-items: center; justify-content: flex-end; }
.btn-grn-sm {
  background: #0066cc;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 24px;
  margin-right: 10px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s ease;
}
.btn-grn-sm:hover { 
  background: #004999; 
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 102, 204, 0.3);
}
.btn-outline-grn-sm {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s ease;
  background: #6b9fd9;
}
.btn-outline-grn-sm:hover { 
  background: #5587c9; 
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(107, 159, 217, 0.3);
}

.srv-card {
  border: none;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  min-height: 342px;
  background: #ffffff;
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.srv-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.srv-card:nth-child(2),
.srv-card:nth-child(3),
.srv-card:nth-child(4),
.srv-card:nth-child(5),
.srv-card:nth-child(6) {
  background: #fff;
}
.srv-icon {
  width: 48px;
  height: 48px;
  background: #0066cc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.srv-card h6 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 14px;
  color: #020800;
  display: flex;
  align-items: center;
  gap: 12px;
}
.srv-sup { 
  font-size: 14px; 
  color: #98a393; 
  vertical-align: baseline; 
  margin-left: 0px;
  font-weight: 400;
}
.srv-card p { 
  font-size: 16px; 
  color: #808380; 
  line-height: 25.6px; 
  margin-bottom: 20px; 
  flex-grow: 1; 
}
.srv-link {
  font-size: 16px;
  font-weight: 400;
  color: #0066cc;
  text-decoration: none;
  margin-top: auto;
}
.srv-link:hover { text-decoration: underline; }

/* PROMO */
.promo-sec {
  background: linear-gradient(rgba(255, 170, 170, 0.69), rgba(139, 21, 21, 0.5)), url('images/2148060047.jpg') center/cover no-repeat;
  padding: 120px 0;
  text-align: center;
}
.promo-sec h2 {
  font-size: 48px;
  font-weight: 400;
  color: #0066cc;
  margin-bottom: 24px;
  line-height: 67.2px;
}
.promo-sec p {
  font-size: 28px;
  color: #fff;
  line-height: 38.4px;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.promo-sec .btn-dark {
  background: #1e3a8a;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 8px;
  display: inline-block;
}
.promo-sec .btn-dark:hover { 
  background: #0066cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(30, 58, 138, 0.3);
}

/* PROCESS */
.process-sec {
  padding: 100px 0 80px;
  background: #fff;
}
.process-img-box {
  background: url('images/1106.jpg') center/cover no-repeat;
  border-radius: 20px;
  aspect-ratio: 1;
  width: 100%;
  padding: 24px;
}
.expert-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 24px;
  background: #eceeeb;
  border-radius: 20px;
}
.ex-avs { display: flex; }
.ex-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #6b9fd9;
  margin-right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.ex-label { font-size: 16px; font-weight: 400; color: #020800; margin-bottom: 4px; }
.ex-sub { font-size: 14px; color: #808380; line-height: 1.6; }

.process-sec .eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: #1e3a8a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.process-sec h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 67.2px;
  margin-bottom: 40px;
  color: #020800;
}
.process-sec h2 .grn { color: #0066cc; }
.ps {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}
.ps:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.ps::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 24px;
  right: 0;
  height: 1px;
  background: #e8e8e8;
}
.ps:last-of-type::after {
  display: none;
}
.ps-num {
  min-width: 48px;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #ccc;
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  letter-spacing: 2px;
}
.ps h6 { font-size: 18px; font-weight: 400; margin-bottom: 8px; color: #020800; }
.ps p { font-size: 16px; color: #808380; line-height: 25.6px; margin: 0; }

/* TEAM */
.team-sec {
  padding: 68px 0 56px;
  background: #f5f5f3;
}
.team-sec h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 36px;
}
.team-sec h2 .grn { color: #0066cc; }
.tc {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.tc-img {
  height: 165px;
  background: #c4d4b4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #6a8a5a;
}
.tc-body { padding: 14px 15px; }
.tc-body h6 { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.tc-body p { font-size: 11.5px; color: #888; }

/* TESTIMONIALS */
.testimonials-sec {
  padding: 68px 0 60px;
  background: #fff;
}
.testimonials-sec .eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  color: #0066cc;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 7px;
}
.testimonials-sec h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 36px;
}
.testimonials-sec h2 .grn { color: #0066cc; }
.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.reviews-badge {
  background: #f0f0f0;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
}
.reviews-count {
  font-size: 32px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 4px;
}
.reviews-label {
  font-size: 12px;
  color: #666;
}
.review-badge-green {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
  margin-top: 4px;
}
.testimonial-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 24px 20px;
  height: 100%;
  border: 1px solid #e8e8e8;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: box-shadow .2s;
}
.testimonial-stars {
  font-size: 16px;
  color: #1e3a8a;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 12px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
  min-height: 60px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 500;
  color: #0066cc;
}

/* FOOTER */
footer {
  background: #f0f0f0;
  color: #000;
  padding: 80px 0 0;
}
.f-brand { 
  font-size: 32px; 
  font-weight: 400; 
  color: #1e3a8a; 
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.f-desc { 
  font-size: 16px; 
  color: #000; 
  line-height: 28px; 
  margin-bottom: 32px; 
  max-width: 360px;
  font-weight: 400;
}
.f-sub { display: flex; }
.f-sub input {
  flex: 1;
  background: #fff;
  border: 1px solid #ccc;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  border-radius: 8px 0 0 8px;
  outline: none;
}
.f-sub input::placeholder { color: #999; }
.f-sub button {
  background: #1e3a8a;
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: all .3s ease;
}
.f-sub button:hover { 
  background: #0066cc;
  transform: translateY(-2px);
}
.f-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1e3a8a;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all .3s ease;
}
.f-chat-btn i {
  font-size: 18px;
}
.f-chat-btn:hover {
  background: #0066cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(30, 58, 138, 0.3);
}
footer h6 { 
  color: #000; 
  font-size: 16px; 
  font-weight: 400; 
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 14px; }
footer ul li a { 
  color: #000; 
  font-size: 15px; 
  text-decoration: none; 
  transition: color .15s;
  font-weight: 400;
}
footer ul li a:hover { color: #0066cc; }
.f-bottom {
  border-top: 1px solid #ccc;
  padding: 32px 0;
  margin-top: 60px;
}
.f-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.f-bottom span { font-size: 14px; color: #000; font-weight: 400; }

/* POPUP/MODAL */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}
.popup-overlay.hidden {
  display: none;
}
.popup-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  width: 90%;
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.popup-close:hover {
  color: #333;
}
.popup-left {
  flex: 1;
  min-width: 250px;
}
.popup-left h3 {
  font-size: 28px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.popup-left p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}
.popup-left p:last-of-type {
  margin-bottom: 0;
}
.popup-right {
  flex: 1;
  min-width: 250px;
}
.popup-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.popup-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.popup-btn {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}
.popup-btn-accept {
  background: #0066cc;
  color: #fff;
}
.popup-btn-accept:hover {
  background: #004999;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 102, 204, 0.3);
}
.popup-btn-reject {
  background: transparent;
  color: #333;
  border: 1px solid #ddd;
}
.popup-btn-reject:hover {
  background: #f5f5f5;
  border-color: #999;
}

@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
  .popup-left h3 {
    font-size: 22px;
  }
  .popup-buttons {
    flex-direction: column;
  }
  .popup-btn {
    width: 100%;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .why-img-box { height: 200px; }
  .about-img-box { height: 220px; margin-bottom: 28px; }
  .nav-menu { gap: 10px; }
  .services-sec h2, .about-sec h2, .why-sec h2 { font-size: 36px; }
  .srv-card { min-height: 300px; }
  .process-img-box { aspect-ratio: auto; height: 250px; }
}
@media (max-width: 767px) {
  /* Typography */
  .hero-white h1 { font-size: 28px; line-height: 1.3; }
  .services-sec h2, .about-sec h2, .why-sec h2, .team-sec h2, .testimonials-sec h2 { font-size: 24px; }
  .promo-sec h2 { font-size: 24px; }
  .promo-sec p { font-size: 18px; }
  .qc-heading { font-size: 24px; }
  
  /* Hero image */
  .hero-image { border-radius: 12px; margin-top: 20px; }
  
  /* Navigation */
  .nav-menu { display: none; gap: 0; }
  .mob-toggle { display: block; }
  .nav-brand img { height: 60px; }
  .site-nav { line-height: 80px; }
  
  /* Top bar */
  .top-bar .tb-inner { flex-direction: column; gap: 8px; line-height: 1.5; }
  .top-bar { height: auto; line-height: auto; padding: 12px 0; }
  .top-bar .tb-right { gap: 8px; flex-direction: column; font-size: 13px; }
  
  /* Hero sections */
  .hero-white { padding: 40px 0; }
  .hero-sage { padding: 60px 0; }
  .hero-img-box { aspect-ratio: auto; height: 250px; margin: 15px 0; padding: 20px; }
  .cta-card { padding: 32px 24px; }
  .cta-heading { font-size: 24px; }
  .cta-subtext { font-size: 13px; margin-bottom: 32px; }
  .cta-btn { font-size: 14px; padding: 14px 20px; }
  
  /* Buttons */
  .btn-dark { font-size: 16px; padding: 12px 24px; }
  .btn-grn-sm, .btn-outline-grn-sm { font-size: 14px; padding: 12px 16px; margin-right: 6px; }
  .srv-action-btns { justify-content: flex-start !important; flex-direction: column; }
  .btn-grn-sm, .btn-outline-grn-sm { width: 100%; max-width: 200px; margin-bottom: 10px; }
  .qc-btn { width: 100%; }
  
  /* Quote card */
  .quote-card { max-width: 100%; }
  .qc-2col { flex-direction: column; }
  .qc-field { font-size: 14px; }
  
  /* About section */
  .about-sec { padding: 60px 0; }
  .about-img-box { height: 200px; }
  .stat-cell .sn { font-size: 28px; }
  .stats-row { gap: 20px; }
  
  /* Services section */
  .services-sec { padding: 60px 0 40px; }
  .srv-card { padding: 24px; min-height: auto; }
  .srv-icon { width: 40px; height: 40px; font-size: 20px; }
  .srv-card h6 { font-size: 18px; }
  .srv-card p { font-size: 14px; }
  
  /* Promo section */
  .promo-sec { padding: 60px 0; }
  
  /* Process section */
  .process-sec { padding: 60px 0 40px; }
  .process-img-box { aspect-ratio: auto; height: 200px; }
  .expert-row { flex-direction: column; text-align: center; padding: 16px; }
  .ex-avs { justify-content: center; margin-bottom: 12px; }
  .ex-label { text-align: center; }
  .ps { gap: 12px; padding-bottom: 24px; margin-bottom: 24px; }
  .ps-num { min-width: 40px; font-size: 18px; }
  .ps h6 { font-size: 16px; }
  
  /* Team section */
  .team-sec { padding: 40px 0; }
  .tc-img { height: 120px; font-size: 32px; }
  
  /* Testimonials */
  .testimonials-sec { padding: 40px 0; }
  .testimonials-header { flex-direction: column; }
  .reviews-badge { width: 100%; margin-bottom: 16px; }
  .testimonial-card { padding: 16px; }
  .testimonial-text { font-size: 13px; }
  
  /* Footer */
  footer { padding: 40px 0 0; }
  .f-brand { font-size: 24px; }
  .f-desc { font-size: 14px; max-width: 100%; }
  .f-sub { flex-direction: column; }
  .f-sub input { border-radius: 8px; margin-bottom: 8px; padding: 12px; }
  .f-sub button { border-radius: 8px; width: 100%; }
  .f-chat-btn { width: 100%; justify-content: center; }
  .f-bottom .container { flex-direction: column; text-align: center; }
  .f-bottom span { font-size: 12px; }
  footer h6 { font-size: 14px; margin-bottom: 16px; }
  footer ul li { margin-bottom: 10px; }
  footer ul li a { font-size: 13px; }
  
  /* Why section */
  .why-sec { padding: 60px 0 40px; }
  .wi { padding-bottom: 24px; margin-bottom: 24px; }
  .rating-box { padding: 24px 20px; }
  
  /* Trust bar */
  .trust-bar { padding: 40px 0; }
  .trust-row { gap: 20px; }
  .ti { flex-direction: column; text-align: center; }
  .ti-icon { font-size: 48px; margin-bottom: 8px; }
  .ti-text { font-size: 16px; }
}

@media (max-width: 575px) {
  /* Extra small devices */
  .hero-white h1 { font-size: 22px; }
  .hero-white .hero-body { font-size: 15px; }
  .services-sec h2, .about-sec h2, .why-sec h2 { font-size: 20px; }
  .promo-sec h2 { font-size: 20px; }
  .promo-sec p { font-size: 16px; }
  .qc-heading { font-size: 20px; }
  
  /* Container padding */
  .container { padding-left: 12px; padding-right: 12px; }
  
  /* Navigation */
  .site-nav { line-height: 70px; }
  .nav-brand img { height: 50px; }
  
  /* Hero sections */
  .hero-white { padding: 30px 0; }
  .hero-sage { padding: 40px 0; }
  .hero-img-box { height: 200px; margin: 10px 0; padding: 15px; }
  
  /* Buttons */
  .btn-dark { font-size: 14px; padding: 10px 20px; border-radius: 6px; }
  .btn-grn-sm, .btn-outline-grn-sm { font-size: 13px; padding: 10px 14px; max-width: 100%; }
  
  /* Sections */
  .about-sec { padding: 40px 0; }
  .services-sec { padding: 40px 0 30px; }
  .process-sec { padding: 40px 0 30px; }
  .team-sec { padding: 30px 0; }
  .testimonials-sec { padding: 30px 0; }
  
  /* Cards */
  .srv-card { padding: 16px; }
  .srv-icon { width: 36px; height: 36px; font-size: 18px; }
  .srv-card h6 { font-size: 16px; }
  .srv-card p { font-size: 13px; }
  .testimonial-card { padding: 12px; }
  .rating-box { padding: 16px; }
  
  /* Quote card */
  .qc-field { padding: 12px 14px; font-size: 13px; }
  .qc-field::placeholder { font-size: 12px; }
  .qc-section-label { font-size: 12px; margin: 16px 0 8px; }
  .qc-btn { width: 100%; font-size: 14px; padding: 12px 20px; }
  
  /* Process */
  .ps { padding-bottom: 16px; margin-bottom: 16px; }
  .ps-num { font-size: 16px; }
  .ps h6 { font-size: 14px; }
  .ps p { font-size: 13px; }
  
  /* Footer */
  .f-brand { font-size: 20px; }
  .f-desc { font-size: 13px; }
  .f-sub input { font-size: 12px; padding: 10px 12px; }
  .f-sub button { font-size: 12px; padding: 10px 12px; }
  .f-chat-btn { font-size: 12px; padding: 10px 14px; }
  footer h6 { font-size: 12px; margin-bottom: 12px; }
  footer ul li a { font-size: 12px; }
  
  /* Stats */
  .stat-cell .sn { font-size: 24px; }
  .stat-cell .sl { font-size: 12px; }
  
  /* Testimonials */
  .testimonial-stars { font-size: 14px; letter-spacing: 1px; }
  .testimonial-text { font-size: 12px; }
  .testimonial-author { font-size: 12px; }
}

@media (max-width: 480px) {
  /* Very small phones */
  .top-bar { font-size: 12px; padding: 8px 0; }
  .top-bar .tb-right { font-size: 11px; }
  .nav-brand img { height: 40px; }
  .site-nav { line-height: 60px; }
  
  .hero-white h1 { font-size: 20px; }
  .hero-white .hero-body { font-size: 14px; }
  .hero-img-box { height: 180px; margin: 12px 0; padding: 10px; }
  
  .btn-dark { font-size: 13px; padding: 9px 18px; }
  
  .qc-heading { font-size: 18px; margin-bottom: 20px; }
  .quote-card { padding: 24px 20px; }
  
  .about-sec { padding: 30px 0; }
  .about-img-box { height: 180px; }
  
  .services-sec h2, .about-sec h2, .why-sec h2 { font-size: 18px; }
  .srv-card { padding: 12px; margin-bottom: 12px; }
  
  .promo-sec { padding: 40px 0; }
  .promo-sec h2 { font-size: 18px; }
  
  .process-img-box { height: 180px; }
  .expert-row { padding: 12px; margin-top: 16px; }
  .ex-av { width: 40px; height: 40px; font-size: 16px; }
  
  footer { padding: 30px 0 0; }
  .f-bottom { padding: 16px 0; margin-top: 30px; }
}

/* External CSS - Inline Styles Extracted */

/* Bubble header flex container */
.bubble-header-flex {
  flex: 1;
}

/* Promo section heading white text */
.promo-heading-white {
  color: #ffffff;
}

/* Expert avatar variations */
.ex-av-variant-1 {
  background: #5587c9;
}

.ex-av-variant-2 {
  background: #4975b8;
}

/* Popup modal image */
.popup-modal-img {
  max-width: 100%;
  height: auto;
}

/* Footer brand logo image */
.f-brand-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

/* Footer link */
.footer-link-keryar {
  color: #000;
  text-decoration: none;
}

/* Mobile Navigation Show State */
@media (max-width: 767px) {
  .nav-menu.show-nav {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    background: #fff;
    left: 0;
    right: 0;
    top: 100%;
    padding: 16px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    z-index: 997;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-menu.show-nav li {
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-menu.show-nav li:last-child {
    border-bottom: none;
  }
  .nav-menu.show-nav li a {
    padding: 12px 20px;
    display: block;
  }
}
