/* =============================================
   GLOBAL RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:    #003a99;
  --blue-main:    #0055cc;
  --blue-mid:     #1a6be0;
  --blue-light:   #e8f0fe;
  --blue-pale:    #f4f8ff;
  --blue-pale-alt: #eef4ff;
  --white:        #ffffff;
  --black : #000000;
  --text-dark:    #0d1b3e;
  --text-body:    #3a4a6b;
  --text-muted:   #6b7fa8;
  --border:       #d0dff8;
  --shadow-sm:    0 2px 12px rgba(0,85,204,0.10);
  --shadow-md:    0 8px 32px rgba(0,85,204,0.14);
  --shadow-lg:    0 20px 60px rgba(0,85,204,0.18);
  --radius:       12px;
  --radius-lg:    20px;
  --font-head:    'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white); 
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

.section-info
{
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================
   TYPOGRAPHY
============================================= */
.section-eyebrow {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-main);
  margin-bottom: 10px;
}
.section-eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-title.center { text-align: center; }

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
}
.section-desc.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-desc.justify { margin-left: auto; margin-right: auto; text-align: justify;max-width: 730px;margin-top: 10px; }



/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-main);
  color: var(--white);
  border-color: var(--blue-main);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--blue-main);
  border-color: var(--blue-main);
}
.btn-outline:hover {
  background: var(--blue-main);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--blue-main);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}
.btn-lg { padding: 14px 34px; font-size: 15px; }

/* =============================================
   TOPBAR
============================================= */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.topbar-badges {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-badges img {
  height: 24px;
  border-radius: 4px;
  display: inline;
}
.topbar-badges a { display: flex; align-items: center; }
.topbar-badges .fab { font-size: 18px; color: #fff; }
.topbar-phone a { color: rgba(255,255,255,0.9);font-size: 17px; }
.topbar-phone i { margin-right: 6px; }
.talk-expert{ font-size: 18px; }

/* =============================================
   HEADER / NAV
============================================= */
.header {
  /*position: sticky;*/
  top: 0;
  z-index: 999;
  background: linear-gradient(135deg, var(--blue-pale) 0%, #dce9ff 100%, var(--white) 100%);
  box-shadow: 0 2px 16px rgba(0,85,204,0.10);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img { height: 90px; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 6px;
  transition: all var(--transition);
} 
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--blue-main);
  background: var(--blue-pale);
}
.nav-list > li > a .fa-chevron-down { font-size: 11px; transition: transform 0.2s; }
.nav-list > li.has-dropdown:hover > a .fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 265px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px 0;
  z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 17px;
  color: var(--text-body);
  transition: all var(--transition);
}
.dropdown li a:hover {
  background: var(--blue-pale);
  color: var(--blue-main);
  padding-left: 24px;
}

.nav-ctas { display: flex; gap: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue-main);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
============================================= */
.hero {
  background: linear-gradient(135deg, var(--blue-pale) 0%, #dce9ff 60%, var(--white) 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0 60px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}
.shape-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--blue-main), transparent 70%);
  top: -120px; right: -100px;
}
.shape-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--blue-mid), transparent 70%);
  bottom: -60px; left: 10%;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-content { flex: 1; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(0,85,204,0.10);
  color: var(--blue-main);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,85,204,0.20);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight { color: var(--blue-main); }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img {
  border-radius: var(--radius-lg);
  /*box-shadow: var(--shadow-lg);*/
  max-width: 100%;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -10px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
  border-left: 4px solid var(--blue-main);
}
.hero-badge i { color: var(--blue-main); font-size: 22px; }

/* =============================================
   BAND
============================================= */
.band {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-main) 50%, var(--blue-dark) 100%);
  padding: 36px 0;
  text-align: center;
}
/*.band-title {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 8px;
}*/
.band-title
{
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 18px;
}
.band-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
}

/* =============================================
   FEATURES
============================================= */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  /*background: var(--blue-pale);*/
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(208,223,248,0.5);
  box-shadow: 0 4px 20px rgba(0,85,204,0.05);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  background: var(--white);
}
.feature-icon {
  width: 60px; height: 60px;
  background: var(--blue-main);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon i { color: var(--white); font-size: 24px; }
.feature-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.feature-card p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   CORE VALUES
============================================= */
/*.core-values { background: var(--blue-pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }*/
.core-values-inner {
  display: flex;
  align-items: center;
  gap: 72px;
}
.core-values-image {
  flex: 1;
  position: relative;
}
.core-values-image img {
  /*border-radius: var(--radius-lg);*/
  /*box-shadow: var(--shadow-lg);*/
  width: 100%;
}
.values-stat-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--blue-main);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.stat-num {
  display: block;
  font-size: 30px;
  font-weight: 800;
  font-family: var(--font-head);
  line-height: 1;
}
.stat-label { font-size: 12px; opacity: 0.88; }
.core-values-content { flex: 1; }
.values-list {
  margin: 20px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: var(--text-muted);
}
.values-list li i { color: var(--blue-main); font-size: 18px; flex-shrink: 0; }

/* =============================================
   TESTIMONIALS SLIDER
============================================= */
.testimonials { background: var(--white); }
.slider-wrapper { position: relative; overflow: hidden; margin-top: 48px; }
.slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slide {
  min-width: 100%;
  padding: 0 8px;
}
.testimonial-card {
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  border: 1px solid var(--border);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.quote-icon {
  font-size: 40px;
  color: var(--blue-main);
  opacity: 0.25;
  margin-bottom: 18px;
}
.testimonial-card > p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  /*font-style: italic;*/
  margin-bottom: 32px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviewer-avatar img {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid var(--blue-main);
  display: inline;
}
.reviewer strong {
  display: block;
  font-size: 17px; 
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.reviewer span {
  font-size: 16px;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue-main);
  background: var(--white);
  color: var(--blue-main);
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--blue-main);
  color: var(--white);
}
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--blue-main);
  width: 24px;
  border-radius: 5px;
}

/* =============================================
   ENGAGEMENT MODELS
============================================= */
.engagement { background: #f6f9fdc4; 
  /*border-top: 1px solid var(--border); */
  border-bottom: 1px solid var(--border); }
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.engagement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.engagement-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.engagement-img { overflow: hidden; }
.engagement-img img {
  width: 100%;
  transition: transform 0.4s;
}
.engagement-card:hover .engagement-img img { transform: scale(1.05); }
.engagement-card h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 22px 24px 8px;
}
.engagement-card p {
  font-size: 17px;
  color: var(--text-muted);
  padding: 0 24px 20px;
  line-height: 1.65;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 24px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-main);
  transition: gap 0.2s;
}
.card-link:hover { gap: 12px; }

/* =============================================
   CTA BAND
============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  padding: 60px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-text h3 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,0.78); font-size: 17px;}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--blue-pale);
  color: var(--text-muted);
  padding-top: 70px;
  /*border-top: 1px solid var(--border);*/
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-logo { height: 90px; margin-bottom: 18px; }
.footer-brand p { font-size: 17px; line-height: 1.7; margin-bottom: 20px; color: var(--text-muted); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all var(--transition);
  color: var(--blue-main);
}
.footer-socials a:hover {
  background: var(--blue-main);
  color: var(--white);
  border-color: var(--blue-main);
}
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 16.5px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-main); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  margin-bottom: 12px;
  color: var(--text-muted);
}
.footer-contact li a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact li a:hover { color: var(--blue-main); }
.footer-contact li i { color: var(--blue-main); margin-top: 3px; }
.footer-newsletter h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 20px 0 10px;
}
.newsletter-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  background: var(--white);
  border: none;
  outline: none;
  color: var(--text-dark);
  font-size: 13px;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  padding: 11px 16px;
  background: var(--blue-main);
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--blue-mid); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* =============================================
   RESPONSIVE — TABLET (≤ 960px)
============================================= */
@media (max-width: 960px) {

  .features-grid,
  .engagement-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-inner { flex-direction: column; gap: 40px; text-align: center; }
  .hero-content { order: 1; }
  .hero-image { order: 2; max-width: 520px; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -16px; }

  .core-values-inner { flex-direction: column; gap: 50px; }
  .values-stat-badge { right: 10px; }

  .cta-band-inner { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }

  .nav-list > li > a { font-size: 13px; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 640px)
============================================= */
@media (max-width: 640px) {

  .has-dropdown:hover .dropdown { display: none; }

  .topbar { display: none; }
  .section { padding: 56px 0; }

  /* Nav */
  .hamburger { display: flex; }
  .nav {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 24px 40px;
    overflow-y: auto;
    z-index: 998;
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav-list { flex-direction: column; width: 100%; gap: 0; }
  .nav-list > li > a {
    padding: 13px 70px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    border-radius: 0;
    font-size: 15px;
  }
  .dropdown {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--blue-pale);
    padding: 0;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding: 10px 16px;text-align: center; }
  .nav-ctas {
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
  }
  .nav-ctas .btn { width: 100%; justify-content: center; padding: 13px; }

  /* Hero */
  .hero { padding: 60px 0 80px; }
  .hero-title { font-size: 30px; }
  .hero-badge { position: static; transform: none; margin-top: 16px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 22px; }

  /* Core Values */
  .values-stat-badge { right: 0; }

  /* Testimonials */
  .testimonial-card { padding: 28px 22px; }
  .testimonial-card > p { font-size: 15px; }

  /* Engagement */
  .engagement-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* CTA */
  .cta-band-inner { align-items: stretch; }
  .cta-band-inner .btn { text-align: center; justify-content: center; }
}

/* =============================================
   HAMBURGER ANIMATION
============================================= */
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.msg-success{
    color:green;
}

.msg-danger{
    color:red;
}