*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", sans-serif;
}

html{
  scroll-behavior:smooth;
}
h1{
  font-size: 22px !important;
}
body{
  color:#0B1F3A;
}
p{
  font-size: 22px !important;
}
strong{
  font-size: 18px !important;
}
/* HEADER */
.header{
  background:#FFFFFF;
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid #eee;
}

.nav-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/* .logo img{
  height:42px;
} */

.menu{
  list-style:none;
  display:flex;
  gap:22px;
}

.menu a{
  text-decoration:none;
  color:#0B1F3A;
  font-size:14px;
}

.menu a:hover{
  color:#2F6FDB;
}


.menu li a{
  text-decoration:none;
  color:#0B1F3A;
  font-size:15px;
  font-weight:500;
}

/* CTA */
.btn-outline{
  /* border:1.5px solid #0B1F3A; */
  padding:8px 18px;
  border-radius:6px;
  color:#0B1F3A;
  font-weight:600;
  background-color: #0B1F3A;
  font-size:18px;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:3px;
  background:#0B1F3A;
  border-radius:2px;
}

.header {
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 16px 24px;
}

/* Center logo */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  height: 39px;
}

/* Left: hamburger */
.menu-toggle {
  cursor: pointer;
  z-index: 10;
}

/* Right: Get Started */
nav {
  margin-left: auto;
}


.btn-outline-start {
  margin-left: auto;
  padding: 4px 4px 4px 7px;
}

/* MOBILE */
@media(max-width:992px){
  .menu-toggle{
    display:none;

  }
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
  /* nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
    max-height:0;
    overflow:hidden;
    transition:max-height 0.35s ease;
    padding: 12px;
  } */
  .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      padding: 32px 24px;
  }
  /* nav.active{
    max-height:600px;
  }

  .menu{
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    gap:18px;
  } */

  /* .btn-outline{
    display:block;
    width:100%;
    text-align:center;
  } */
}
@media (max-width: 768px) {
  .logo img {
    height: 36px;
  }

  .btn-outline {
    display: none;
  }
}
.btn-nav{
  background:#2F6FDB;
  color:#fff !important;
  padding:8px 16px;
  border-radius:20px;
}

/* HERO BANNER */
/* .hero-banner{
  position: relative;
  min-height: 550px;
  max-height: 570px;

  background: url("../image/hero-image.png") center center / cover no-repeat;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:15px 5px;
  overflow:hidden;

} */
 .hero-banner{
  position: relative;
  min-height: 620px;

  background: linear-gradient(
      to right,
      rgba(255,255,255,0.95),
      rgba(235,242,255,0.85)
    ),
    url("../image/hero-image.png") center/cover no-repeat;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 20px 40px;
}
/* .hero-overlay{
  position:absolute;
  inset:0;
  background: rgb(8 20 35 / 37%);
  z-index:-1;
} */

.hero-content{
  position:relative;
  max-width:900px;
  /* margin-top: -109px; */
}

.hero-tag{
  display:inline-block;
  background:#EAF1FF;
  color:#2F6FDB;
  padding:8px 16px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:20px;
}

/* .hero-content h1{
  font-size:42px;
  margin-bottom:20px;
} */
.hero-content h1{
  font-size: 48px;
  font-weight: 700;
  color: #3B4C7E;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content p{
  font-size: 20px;
  color: #5F6F8C;
  margin-bottom: 25px;
}
.hero-content h1 span{
  color:#2F6FDB;
}

/* .hero-content p{
  font-size:18px;
  color:#d1d5de;
  margin-bottom:30px;
} */

/* .btn-primary {
    background: #2F6FDB;
    color: #fff;
    padding: 9px 18px;
    border-radius: 37px;
    text-decoration: none;
    font-weight: 600;
} */
.btn-primary {
  display:inline-block;
  background: linear-gradient(135deg, #4F6EDB, #1F3FA3);
  color:#fff;
  padding:16px 32px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:0.3s ease;
}
/* .btn-primary:hover{
  background:#1C4AA3;
} */
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
.hero-rating{
  margin-top:20px;
  font-size:14px;
  color:#444;
}

/* SECTIONS */
.section{
  padding:80px 20px;
  text-align:center;
}

.section.light{
  background:#F4F7FC;
}

.section h2{
  font-size:32px;
  margin-bottom:12px;
}

.section p{
  max-width:700px;
  margin:auto;
  color:#5F6F8C;
  font-size:18px;
}
.btn-outline{
  background:#0F2F6B;
  padding:12px 20px;
  color:#fff;
}
.btn-outline-start a{
  color:#fff !important;
  /* background:#0B1F3A; */
  background: linear-gradient(135deg, #4969c3, #0F2F6B);
  font-size: 18px !important;;

}
.btn-outline-start a:hover{
  background:#0F2F6B;
  color:#fff;
}
/* CTA */
.cta{
  background:#0F2F6B;
  color:#fff;
  text-align:center;
  padding:80px 20px;
}

/* FOOTER */
.footer{
  background:#081E45;
  color:#fff;
  text-align:center;
  padding:20px;
}

/* RESPONSIVE */
@media(max-width:768px){
  /* .hero-content h1{
    font-size:22px;
  }
  .hero-content{
    margin-top: -30px;
    padding: 13px;
    text-align: start;
  }
  .hero-content p {
        font-size: 12px;
        color: #5F6F8C;
        margin-bottom: 30px;
    } */
  .hero-content h1{
    font-size:26px;
  }

  .hero-content p{
    font-size:15px;
  }

  .proof-stats{
    flex-direction:column;
    gap:40px;
  }

  .stat-box h3{
    font-size:38px;
  }
  .menu{
    flex-wrap:wrap;
    justify-content:center;
  }
  .btn-primary {
        font-weight: 800;
        font-size: small;
    }
    .hero-banner {
        min-height: 486px;
    }
    .problem-section {
        background: #F4F7FC;
        padding: 35px 20px;
    }
    .problem-header p {
        font-size: 18px;
        color: #5F6F8C;
        text-align: justify;
    }
    .problem-transition p {
        text-align: justify;

    }

}


/* RESPONSIVE */
@media (max-width: 768px) {
  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero h1 {
    font-size: 28px;
  }
}



.problem-section{
  background:#F4F7FC;
  padding:80px 20px;
}

/* Grid Width */
.problem-grid{
  max-width:1000px;
  margin:0 auto;
}

/* List Layout */
.problem-list{
  list-style:none;
  display:grid;
  flex-direction:column;
  gap:24px;
  padding:0;
  grid-template-columns: repeat(2, 1fr);
}

/* Card Style */
.problem-list li{
  display:flex;
  align-items:flex-start;
  gap:20px;
  background:#ffffff;
  padding:26px 30px;
  border-radius:16px;
  box-shadow:0 8px 30px rgba(16, 24, 40, 0.05);
  transition:all 0.3s ease;
  border:1px solid rgba(15, 23, 42, 0.05);
}

.problem-list li:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(16, 24, 40, 0.08);
}

/* Icon */
.problem-icon{
  min-width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
  /* background:#EAF1FF; */
  border-radius:12px;
}

/* Content */
.problem-content h4{
  margin:0 0 6px;
  font-size:20px;
  color:#0B1F3A;
  font-weight:600;
}

.problem-content p{
  margin:0;
  font-size:16px !important;
  color:#5F6F8C;
  line-height:1.6;
}

/* Transition Box */
.problem-transition{
  max-width:820px;
  margin:70px auto 0;
  text-align:center;
  font-size:20px;
  color:#0B1F3A;
  background:#EAF1FF;
  padding:32px 35px;
  border-radius:16px;
  font-weight:500;
}

@media(max-width:768px){

  .problem-section{
    padding:50px 18px;
  }

  .problem-list li{
    flex-direction:column;
    align-items:flex-start;
    padding:22px;
  }

  .problem-icon{
    margin-bottom:10px;
  }

  .problem-content h4{
    font-size:17px;
  }

  .problem-transition{
    font-size:17px;
    padding:22px;
  }
}


.solution-section{
  background:#FFFFFF;
  padding:100px 85px;
}

.solution-header{
  text-align:center;
  max-width:820px;
  margin:0 auto 70px;
}

.solution-badge{
  display:inline-block;
  background:#EAF1FF;
  color:#2F6FDB;
  padding:8px 18px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  margin-bottom:16px;
}

.solution-header h2{
  font-size:36px;
  margin-bottom:14px;
  color:#0B1F3A;
}

.solution-header p{
  font-size:18px !important;
  color:#5F6F8C;
}

/* Steps */
.solution-steps{
  /*display:grid;*/
  /*grid-template-columns:repeat(3,1fr);*/
  /*gap:30px;*/
  /*padding: 30px 0px;*/
    max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  
}
/*.solution-steps{*/
/*  display:grid;*/
/*  grid-template-columns:repeat(3,1fr);*/
/*  gap:11px;*/
/*}*/
/*.solution-content p{*/
/*  font-size:15px !important;*/
/*  color:#6B7280;*/
/*  line-height:1.7;*/
/*  margin:0;*/
/*  padding: 0px 15px;*/
/*  text-align: justify;*/
/*}*/
.solution-card p {
  font-size: 15px !important;
  line-height: 1.7;
  color: #6B7280;
  margin: 0;
  margin-top: 10px;
}
.solution-card{
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
  box-shadow: 0 8px 30px rgba(11, 61, 145, 0.18);
  min-height: 250px;
  overflow: hidden;
  
}
.solution-card-inner{
  padding:18px 16px 0;
}
.solution-card:hover{
  /*transform:translateY(-6px);*/
  /*box-shadow:0 25px 50px rgba(0,0,0,0.08);*/
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.solution-card-body {
  padding: 47px 21px 21px 24px;
}
/* Top Header */
.solution-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}

/*.solution-top h3{*/
/*  font-size:20px;*/
/*  color:#111827;*/
/*  margin:0;*/
/*  line-height:1.3;*/
/*}*/

.solution-top h3 {
  /*font-size: 20px;*/
  /*font-weight: 600;*/
  /*color: #111827;*/
  /*margin: 0;*/
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  padding-right: 80px; 
}


.solution-tag{
  /* background:#0F2F6B; */
  /*background: linear-gradient(135deg, #4969c3, #0F2F6B);*/
  /*color:#fff;*/
  /*padding:6px 9px;*/
  /*border-radius:14px;*/
  /*font-size:13px;*/
  /*font-weight:600;*/
  
  /*background: linear-gradient(135deg, #4969c3, #0F2F6B);*/
  /*color: #ffffff;*/
  /*font-size: 13px;*/
  /*font-weight: 600;*/
  /*padding: 6px 12px;*/
  /*border-radius: 20px;*/
  
  position: absolute;
  top: 6px;
  right: 6px;
  background: linear-gradient(135deg, #4969c3, #0F2F6B);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Divider */
.solution-card hr{
  border:none;
  height:1px;
  background:#E5E7EB;
  margin:25px 0;
}

/* Includes */
.solution-includes ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.solution-includes li{
  position:relative;
  padding-left:28px;
  font-size:15px;
  color:#6B7280;
  line-height:1.5;
}

.solution-includes li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:#0F2F6B;
  font-weight:bold;
}

/* Bottom Info */
.solution-price{
  margin-top:30px;
}

.solution-price h4{
  font-size:24px;
  margin:0;
  color:#111827;
}

.solution-price span{
  font-size:14px;
  color:#9CA3AF;
}

/* Bottom CTA Bar */
.solution-cta{
  /* margin-top:30px; */
  /*background:linear-gradient(135deg,#4969c3,#0F2F6B);*/
  /*text-align:center;*/
  /*padding:20px;*/
  /*border-bottom-left-radius:28px;*/
  /*border-bottom-right-radius:28px;*/
  
  background: linear-gradient(135deg, #4969c3, #0F2F6B);
  padding: 18px;
  text-align: center;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.solution-cta a{
  /*color:#fff;*/
  /*font-weight:600;*/
  /*text-decoration:none;*/
  /*font-size:18px;*/
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: 0.3s ease;

}

.solution-cta a:hover {
  opacity: 0.85;
}
/* RESPONSIVE */
@media(max-width:992px){
  .solution-steps{
    grid-template-columns:1fr;
  }
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0px 10px 0px 10px !important;
}
  .solution-card{
    padding: 0px 1px;
    min-height: 338px;
  }
.solution-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 35px;
}
  .solution-header h2{
    font-size:30px;
    text-align: center;
  }
  .solution-header p{
    text-align:justify ;
    padding: 8px 12px;
    font-size: 18px !important;
  }
  .solution-section {
    background: #FFFFFF;
    padding: 41px 20px;
}
.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 22px;
    grid-template-columns: repeat(2, 1fr);
}
}



.value-section{
  background:#F4F7FC;
  padding:100px 20px;
}

.value-header{
  text-align:center;
  max-width:900px;
  margin:0 auto 70px;
}

.value-badge{
  display:inline-block;
  background:#EAF1FF;
  color:#1C4AA3;
  padding:8px 18px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  margin-bottom:16px;
}

.value-header h2{
  font-size:28px;
  margin-bottom:14px;
  color:#0B1F3A;
}

.value-header p{
  font-size:15px !important;
  color:#5F6F8C;
}

/* Grid */
.value-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
  padding: 0px 100px 0px 100px;
}

.value-card{
  background:#FFFFFF;
  border-radius:18px;
  padding:36px 30px;
  box-shadow:0 12px 30px rgba(0,0,0,0.06);
  transition:all 0.3s ease;
}

.value-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 45px rgba(0,0,0,0.1);
  border:2px solid #2F6FDB;
}

.value-card.highlight{
  /* border:2px solid #2F6FDB; */
  background:linear-gradient(135deg,#FFFFFF,#F0F6FF);
}

.value-icon{
  width:42px;
  height:42px;
  background:#2F6FDB;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:700;
  margin-bottom:18px;
}

.value-card h3{
  font-size:20px;
  color:#0B1F3A;
  margin-bottom:12px;
}

.value-card p{
  font-size:16px  !important;;
  line-height:1.6;
  color:#5F6F8C;
}

/* Responsive */
@media(max-width:992px){
  .value-grid{
    grid-template-columns:1fr;
  }
.value-section {
    background: #F4F7FC;
    padding: 35px 20px;
}
  .value-header h2{
    font-size:30px;
  }
}


.offer-section{
  background:linear-gradient(135deg,#0F2F6B,#1C4AA3);
  padding:60px 20px;
  color:#fff;
}

.offer-header{
  text-align:center;
  max-width:900px;
  margin:0 auto 70px;
}

.offer-badge{
  display:inline-block;
  background:#FFD166;
  color:#0B1F3A;
  padding:8px 18px;
  border-radius:20px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

.offer-header h2{
  font-size:38px;
  line-height:1.3;
  margin-bottom:16px;
}

.offer-header h2 span{
  color:#FFD166;
}

.offer-header small{
  font-size:18px;
  font-weight:500;
}

.offer-header p{
  font-size:18px  !important;;
  color:#D6E4FF;
}

/* Grid */
.offer-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  max-width:1100px;
  margin:0 auto 70px;
}

.offer-card{
  background:#ffffff;
  color:#0B1F3A;
  border-radius:20px;
  padding:36px 32px;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
  animation:fadeUp 0.8s ease forwards;
}

.offer-card h3{
  margin-bottom:14px;
  font-size:20px;
}

.offer-card p,
.offer-card li{
  font-size:16px !important;
  color:#5F6F8C;
  line-height:1.6;
}

.offer-card ul{
  padding-left:20px;
}

.offer-card.highlight{
  border:3px solid #FFD166;
  transform:scale(1.02);
}

/* CTA */
.offer-cta{
  text-align:center;
}

.btn-offer{
  display:inline-block;
  background:#FFD166;
  color:#0B1F3A;
  padding:18px 34px;
  border-radius:40px;
  font-weight:700;
  text-decoration:none;
  font-size:16px;
  animation:pulse 2s infinite;
}

.offer-scarcity{
  margin-top:20px;
  font-size:15px;
  color:#FFD166;
}

/* Animations */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,209,102,0.6);}
  70%{box-shadow:0 0 0 18px rgba(255,209,102,0);}
  100%{box-shadow:0 0 0 0 rgba(255,209,102,0);}
}

/* Responsive */
@media(max-width:992px){
  .offer-grid{
    grid-template-columns:1fr;
  }

  .offer-header h2{
    font-size:30px;
  }
  .offer-section {
    background: linear-gradient(135deg, #0F2F6B, #1C4AA3);
    padding: 35px 20px;
    color: #fff;
}
}



.proof-section{
  background:#F4F7FC;
  padding:60px 20px;
}

.proof-header{
  text-align:center;
  max-width:900px;
  margin:0 auto 70px;
}

.proof-badge{
  display:inline-block;
  background:#EAF1FF;
  color:#1C4AA3;
  padding:8px 18px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  margin-bottom:16px;
}

.proof-header h2{
  font-size:36px;
  margin-bottom:14px;
  color:#0B1F3A;
}

.proof-header p{
  font-size:18px  !important;;
  color:#5F6F8C;
}

/* Testimonials */
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-bottom:80px;
}

.testimonial-card{
  background:#fff;
  border-radius:20px;
  padding:34px 30px;
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
  transition:all 0.35s ease;
  position:relative;
}

.testimonial-card::before{
  content:"“";
  font-size:80px;
  color:#EAF1FF;
  position:absolute;
  top:-20px;
  left:20px;
  font-family:serif;
}

.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(0,0,0,0.15);
}

.testimonial-card.highlight{
  border:2px solid #2F6FDB;
}

.testimonial-card p{
  font-size:16px !important;;
  color:#5F6F8C;
  line-height:1.6;
  margin-bottom:22px;
}

.author strong{
  display:block;
  color:#0B1F3A;
}

.author span{
  font-size:14px;
  color:#6B7C93;
}

/* Stats */
.stats-section{
  padding:70px 20px;
  background: linear-gradient(
      to right,
      rgba(255,255,255,0.95),
      rgba(235,242,255,0.85)
    );
}
.proof-stats {
  /* width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px; */
    max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
  text-align:center;
}

.stat-box {
  flex:1;
  min-width:200px;
  /* position: relative;
  padding: 40px 30px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
  overflow: hidden; */
}

.stat-box h3{
  font-size:52px;
  font-weight:700;
  color:#3B4C7E;
  margin-bottom:10px;
}
.stat-box p{
  font-size:16px;
  color:#5F6F8C;
}
.stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  /* background: linear-gradient(135deg, #00f0ff, #9d00ff); */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
}

.stat-icon {
  font-size: 40px;
  color: #00f0ff;
  margin-bottom: 20px;
}

/* .stat-box h3 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #00f0ff, #9d00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
} */

/* .stat-box p {
  font-size: 16px;
  color: #cfd8dc;
  letter-spacing: 0.5px;
} */

/* .proof-stats {

  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
  gap:10px;
} */
/* .stat-box {
  text-align: center;
  padding: 20px 10px;
  position: relative;
} */
.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.stat-box h3 {
  font-size: 32px;
  /* color: #2F6FDB; */
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 15px;
  color: #5F6F8C;
}
.stat-box{
  background:linear-gradient(135deg,#0F2F6B,#1C4AA3);
  color:#fff;
  border-radius:18px;
  padding:34px 20px;
  text-align:center;
  transition:transform 0.3s ease;
}

.stat-box:hover{
  transform:scale(1.05);
}

.stat-box h3{
  font-size:36px;
  margin-bottom:8px;
}

.stat-box p{
  font-size:15px !important;;
  color:#D6E4FF;
}

/* Responsive */
@media(max-width:992px){
  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .proof-stats{
    grid-template-columns:1fr 1fr;
  }
  .proof-section {
    background: #F4F7FC;
    padding: 35px 20px;
}

  .proof-header h2{
    font-size:30px;
  }
}

@media(max-width:600px){
  .proof-stats{
    grid-template-columns:1fr;
  }
}


.faq-section{
  background:#FFFFFF;
  padding:60px 20px;
}

.faq-header{
  text-align:center;
  max-width:820px;
  margin:0 auto 60px;
}

.faq-badge{
  display:inline-block;
  background:#EAF1FF;
  color:#1C4AA3;
  padding:8px 18px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  margin-bottom:16px;
}

.faq-header h2{
  font-size:36px;
  margin-bottom:12px;
  color:#0B1F3A;
}

.faq-header p{
  font-size:18px !important;;
  color:#5F6F8C;
}

/* Accordion */
.faq-accordion{
  max-width:900px;
  margin:0 auto;
}

.faq-item{
  border-bottom:1px solid #E3EAF5;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:22px 10px;
  font-size:18px;
  font-weight:600;
  color:#0B1F3A;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  transition:color 0.3s ease;
}

.faq-question:hover{
  color:#2F6FDB;
}

.faq-question .icon{
  font-size:22px;
  color:#2F6FDB;
  transition:transform 0.3s ease;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
}

.faq-answer p{
  padding:0 10px 20px;
  font-size:16px !important;;
  color:#5F6F8C;
  line-height:1.6;
}

/* Active State */
.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-item.active .faq-question .icon{
  transform:rotate(45deg);
}

/* Responsive */
@media(max-width:768px){
  .faq-header h2{
    font-size:30px;
  }
.faq-section{
  background:#FFFFFF;
  padding:35px 20px;
}
  .faq-question{
    font-size:16px;
  }
}


/* FINAL CTA – FORMAL CORPORATE STYLE */
.final-cta{
  background:linear-gradient(180deg,#0B2A5B,#163E8A);
  padding:60px 20px;
  color:#0B1F3A;
}

/* CTA CARD */
.cta-box{
  max-width:880px;
  margin:auto;
  background:#ffffff;
  padding:70px 60px;
  border-radius:16px;
  box-shadow:0 30px 60px rgba(0,0,0,0.18);
  text-align:center;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-box:hover{
  transform:translateY(-4px);
  box-shadow:0 40px 80px rgba(0,0,0,0.22);
}

/* BADGE */
.cta-badge{
  display:inline-block;
  background:#EAF1FF;
  color:#1C4AA3;
  padding:6px 16px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.5px;
  margin-bottom:20px;
}

/* HEADING */
.cta-box h2{
  font-size:36px;
  line-height:1.25;
  margin-bottom:18px;
  color:#0B1F3A;
}

.cta-box h2 span{
  color:#1C4AA3;
}

/* SUB TEXT */
.cta-sub{
  font-size:17px;
  color:#5F6F8C;
  max-width:720px;
  margin:0 auto 36px;
}

/* CTA BUTTON – PROFESSIONAL */
.cta-button{
  display:inline-block;
  /* background:#1C4AA3; */
  background: linear-gradient(135deg, #4969c3, #0F2F6B);
  color:#ffffff;
  padding:16px 36px;
  border-radius:8px;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  margin-bottom:36px;
  transition:background 0.25s ease, transform 0.25s ease;
}

.cta-button:hover{
  background:#163E8A;
  transform:translateY(-2px);
}

/* POINTS */
.cta-points{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px 40px;
  max-width:620px;
  margin:0 auto 34px;
  font-size:14px;
  color:#42526E;
}

/* URGENCY – SUBTLE */
.cta-urgency{
  font-size:14px;
  background:#F4F7FC;
  color:#42526E;
  padding:14px 20px;
  border-radius:10px;
  display:inline-block;
}

.cta-urgency span{
  color:#1C4AA3;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:768px){
  .cta-box{
    padding:51px 15px;
  }
.final-cta{
  padding:35px 20px;
}

  .cta-box h2{
    font-size:28px;
  }

  .cta-points{
    grid-template-columns:1fr;
  }
}

/* CTA POINTS */
.cta-points{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px 36px;
  max-width:620px;
  margin:0 auto 34px;
  font-size:14px;
  color:#42526E;
}

.cta-points li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.5;
}

/* TICK ICON */
.icon-tick{
  width:18px;
  height:18px;
  border-radius:50%;
  background:#EAF1FF;
  border:1px solid #1C4AA3;
  position:relative;
  margin-top:2px;
  flex-shrink:0;
}

.icon-tick::after{
  content:"";
  position:absolute;
  left:5px;
  top:2px;
  width:4px;
  height:8px;
  border:solid #1C4AA3;
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}

/* URGENCY BOX */
.cta-urgency{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  background:#F4F7FC;
  color:#42526E;
  padding:14px 20px;
  border-radius:10px;
  border-left:4px solid #1C4AA3;
}

/* CLOCK ICON */
.icon-clock{
  width:18px;
  height:18px;
  border-radius:50%;
  border:2px solid #1C4AA3;
  position:relative;
  flex-shrink:0;
}

.icon-clock::before{
  content:"";
  position:absolute;
  width:1.5px;
  height:6px;
  background:#1C4AA3;
  top:3px;
  left:8px;
}

.icon-clock::after{
  content:"";
  position:absolute;
  width:5px;
  height:1.5px;
  background:#1C4AA3;
  top:8px;
  left:8px;
}

/* HIGHLIGHT */
.cta-urgency .highlight{
  color:#1C4AA3;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:768px){
  .cta-points{
    grid-template-columns:1fr;
  }
}




/* LEAD SECTION */
.lead-section{
  padding:60px 20px;
  color:#fff;
  position: relative;
  background: url("../image/contact-us.jpg") center/cover no-repeat;
}

.lead-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(15,47,107,0.75); /* Infiniti blue overlay */
  z-index:0;
}
.lead-section .container{
  position:relative;
  z-index:2;
}
.lead-wrapper{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}
.lead-info{
  background:#F1F1F1;
  color:#0B1F3A;
  padding:50px;
  box-shadow:0 40px 80px rgba(0,0,0,0.25);
}

/* LEFT */
.lead-info h2{
  font-size:38px;
  margin-bottom:18px  !important;;
  color:#0B1F3A;
}

.lead-sub{
  font-size:18px !important;;
  /* color:#D6E4FF; */
  margin-bottom:30px;
  color:#444;
}

.trust-list{
  list-style:none;
  margin-bottom:25px;
}

.trust-list li{
  margin-bottom:10px;
  font-size:16px;
  color:#222;
}

.security-badges{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.security-badges span{
  /* background:rgba(255,255,255,0.15); */
  padding:8px 14px;
  border-radius:20px;
  font-size:13px;
  background:#ddd;
  color:#111;
}

/* FORM BOX */
.lead-form-box{
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(14px);
  padding:40px;
  border-radius:0px;
  box-shadow:0 40px 80px rgba(0,0,0,0.35);
  transition:transform 0.4s ease;
  /* background:#1B1F24; */
  color:#fff;
  /* transform:translateX(-40px);  */
}

.lead-form-box:hover{
  transform:translateY(-6px);
}

.lead-form-box h3{
  font-size:26px;
  margin-bottom:22px;
  color:#FFD166;
}

/* FORM */
.lead-form{
  display:grid;
  gap:14px;
}

.lead-form input,
.lead-form select{
  padding:14px 16px;
  border-radius:12px;
  border:none;
  font-size:15px;
  background:#fff;
  color:#000;
}
.lead-form input::placeholder{
  color:#666;
}
.lead-form button{
  margin-top:10px;
  /* background:#FFD166; */
  /* color:#0B1F3A; */
  padding:16px;
  border-radius:40px;
  /* border:none; */
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  transition:all 0.3s ease;
  background:transparent;
  border:2px solid #FFD166;
  color:#FFD166;
}

.lead-form button:hover{
  transform:scale(1.05);
  /* box-shadow:0 0 0 10px rgba(255,209,102,0.25); */
  background:#FFD166;
  color:#0B1F3A;
  box-shadow:none;
}

.privacy-note{
  font-size:13px !important;
  color:#EAF1FF;
  text-align:center;
  margin-top:8px;
}

/* FOOTER */
.site-footer{
  background:#081E45;
  padding:25px 20px;
  color:#CFE3FF;
  font-size:14px !important;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .lead-wrapper{
    grid-template-columns:1fr;
    text-align:center;
  }
.lead-section{
  padding:35px 20px;
}
  .security-badges{
    justify-content:center;
  }
  .lead-form-box{
    transform:none;
  }
  .lead-info,
  .lead-form-box{
    padding:30px 22px;
  }
}

@media(max-width:600px){
  .lead-info h2{
    font-size:30px;
  }

  .lead-form-box{
    padding:30px 20px;
    transform:none;
  }
}




/* dddd */

/* CONTACT STYLE LEFT PANEL */
.contact-style{
  background:#F7F9FC;
  padding:50px;
  color:#0B1F3A;
}

.contact-tag{
  display:inline-block;
  font-size:14px;
  font-weight:600;
  color:#2F6FDB;
  margin-bottom:12px;
}

.contact-style h2{
  font-size:30px;
  margin-bottom:18px;
  line-height:1.2;
}

.contact-style .lead-sub{
  font-size:17px !important;
  color:#5F6F8C;
  max-width:520px;
  margin-bottom:40px;
}

/* ICON ROWS */
.contact-items{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.contact-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
}

.contact-icon{
  width:48px;
  height:48px;
  background:#2F6FDB;
  color:#fff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
}

.contact-item h4{
  font-size:18px;
  margin-bottom:4px;
  color:#0B1F3A;
}

.contact-item p{
  font-size:15px !important;;
  color:#5F6F8C;
  line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-style{
    padding:35px 24px;
    text-align:left;
  }

  .contact-style h2{
    font-size:30px;
  }
  .site-footer {
    background: #081E45;
    padding: 26px 57px !important;
    color: #CFE3FF;
    font-size: 14px !important;
}
}
