:root {
  --navy: #061c43;
  --navy-2: #082b62;
  --blue: #0f55ff;
  --gold: #ffc400;
  --text: #081f45;
  --muted: #53627b;
  --line: #dce5f2;
  --bg: #f6f9fd;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.top-strip {
  background: linear-gradient(90deg, #06265a, #071a3f);
  color: #fff;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.top-strip a {
  background: var(--gold);
  color: #061c43;
  padding: 7px 24px;
  border-radius: 999px;
}
.site-header {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 8%;
  background: #012340;
  box-shadow: 0 10px 28px rgba(11, 31, 63, .08);
  position: sticky;
  top: 0;
  z-index: 20;
}
.logo img { width: 150px; height: auto; }
.nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
  margin-left: auto;
}
.phone { font-weight: 800; color: white; white-space: nowrap; margin-left: auto; }
.menu-toggle { display: none; }

.hero {
    position: relative;
    min-height: 580px;
    padding: 54px 8%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(2, 21, 56, 0.92) 0%,
            rgba(3, 25, 63, 0.85) 47%,
            rgba(3, 28, 65, 0.75) 100%
        ),
        url('../images/bannerhome.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-image {
  position: absolute;
  right: 22%;
  bottom: 0;
  width: 46%;
  max-height: 560px;
  opacity: .9;
}
.hero-content, .lead-card { position: relative; z-index: 2; }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
}
.hero h1 {
  color: white;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  max-width: 760px;
  margin: 0 0 22px;
}
.hero-text {
  color: #f1f6ff;
font-size: 15px;
    line-height: 1.8;
  max-width: 690px;
}
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px 28px;
  max-width: 620px;
  margin: 24px 0;
  color: white;
  font-weight: 700;
}
.bullet-grid span::before,
.trust span::before,
.modes p::before {
  content: "✓";
  color: var(--gold);
  margin-right: 8px;
  font-weight: 900;
}
.hero-metrics {
  display: flex;
  gap: 26px;
  color: white;
  margin: 28px 0;
}
.hero-metrics div {
  border-right: 1px solid rgba(255,255,255,.35);
  padding-right: 26px;
}
.hero-metrics div:last-child { border-right: 0; }
.hero-metrics strong { display: block; font-size: 20px; }
.hero-metrics small { font-weight: 700; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn, .lead-card button, .admin-main button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 900;
  border: 1px solid transparent;
}
.btn.primary, .lead-card button { background: var(--gold); color: #061c43; }
.btn.secondary { border-color: rgba(255,255,255,.75); color: white; }

.lead-card {
  background: white;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 0 rgba(255,255,255,.18), 0 25px 60px rgba(0,0,0,.28);
}
.lead-card h2 { text-align: center; margin: 0; line-height: 1.2; }
.lead-card > p { text-align: center; font-size: 12px; color: var(--muted); }
.lead-card form { display: grid; gap: 11px; }
.lead-card input, .lead-card select {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
}
.lead-card label span, .lead-card legend { font-size: 12px; color: #263957; margin-bottom: 6px; display: block; }
.lead-card fieldset { border: 0; padding: 0; margin: 0; display: flex; gap: 16px; flex-wrap: wrap; }
.lead-card fieldset label { display: flex; align-items: center; gap: 5px; font-size: 13px; }
.lead-card fieldset input { width: auto; height: auto; }
.lead-card button { background: var(--blue); color: white; width: 100%; border: 0; cursor: pointer; }
.trust { display: flex; gap: 12px; justify-content: center; font-size: 11px; margin-top: 14px; color: #1d6a35; font-weight: 700; flex-wrap: wrap; }
.trust span::before { color: #1dba53; }
.alert { padding: 10px; border-radius: 8px; font-size: 13px; }
.alert.success { background: #e9f8ef; color: #1d6a35; }
.alert.error { background: #fdecec; color: #9b1c1c; }

.section { padding: 34px 8%; }
.section h2, .benefits h2 {
    font-size: 40px;
    color: #061c43;
    font-weight: 700;
    text-align: center;
}
.section h2::after, .benefits h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: var(--blue);
  margin: 8px auto 0;
  border-radius: 99px;
}
.cards { display: grid; gap: 22px; }
.cards.four { grid-template-columns: repeat(4, 1fr); max-width: 1120px; margin: auto; }
.cards.three { grid-template-columns: repeat(3, 1fr); max-width: 1120px; margin: auto; }
.cards.three { grid-template-columns: repeat(3, 1fr); max-width: 1120px; margin: auto; }
.cards.six { grid-template-columns: repeat(6, 1fr); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(18, 44, 84, .08);
}
.center { text-align: center; }
.outcome-section { background: linear-gradient(180deg, #ffffff, #f5f8fd); }
.outcome-card { min-height: 210px; border-top: 4px solid var(--blue); text-align:center; }
.outcome-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #eef4ff; color: var(--blue); font-weight: 900; }
.outcome-card h3 { font-size: 20px; }
.outcome-section { background: linear-gradient(180deg, #ffffff, #f5f8fd); padding: 34px 8%;}
.outcome-card { min-height: 210px; border-top: 4px solid #e36c0a; }
.outcome-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #eef4ff; color: var(--blue); font-weight: 900; }
.outcome-card h3 { font-size: 20px; }
.outcome-card h3::after{
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: var(--blue);
    margin: 8px auto 0;
    border-radius: 99px;
}
.card p { color: #334663; margin: 0; font-size: 15px; line-height: 1.8; }
.icon-dot, .square-icon {
  width: 58px;
  height: 58px;
  display: inline-block;
  background: var(--c);
  border-radius: 50%;
  position: relative;
}
.square-icon { border-radius: 14px; }
.icon-dot::after, .square-icon::after {
  content: "✦";
  color: white;
  font-size: 24px;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.dark-band {
  background: radial-gradient(circle at 85% 20%, #123a79, #061c43 55%, #041329);
  color: white;
  padding: 34px 8%;
  display: grid;
  grid-template-columns: .95fr 1.3fr;
  gap: 42px;
}
.dark-band h2 { font-size: 28px; text-transform: uppercase; }
.dark-band p { color: #eaf1ff; font-size: 15px; line-height: 1.8; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.stats strong { color: #26d7ff; font-size: 34px; display: block; }
.stats span { font-size: 15px; line-height: 1.8; }
.skill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.skill-grid div {
    background: linear-gradient(180deg, #1a4588 0%, #163d79 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 20px 18px;
    min-height: 110px;
    transition: 0.3s ease;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 4px 14px rgba(0,0,0,0.12);
}

.skill-grid div:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.22);
    box-shadow:
        0 10px 24px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.skill-grid h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.skill-grid p {
    color: rgba(255,255,255,0.78);
    margin: 0;
	font-size: 15px;
    line-height: 1.8;
}

.benefits {padding: 30px 8%; }
.benefits div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.benefits span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  padding: 55px 8px;
  font-weight: 600;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(18, 44, 84, .06);
align-items: center;
}
.benefits span:nth-child(1){
    background: #e8f1ff;
}

.benefits span:nth-child(2){
    background: #fff4e5;
    color: black;
}

.benefits span:nth-child(3){
    background: #eafaf1;
    color: black;
}

.benefits span:nth-child(4){
    background: #f3ebff;
    color: black;
}

.benefits span:nth-child(5){
    background: #ffecef;
    color: black;
}

.benefits span:nth-child(6){
    background: #e9fbff;
    color: black;
}

.benefits span:nth-child(7){
    background: #fff7db;
    color: black;
}

.benefits span:nth-child(8){
    background: #eef2ff;
    color: black;
}
.modes {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 24px;
  align-items: center;
background: #f7f9fc;
	padding: 34px 8%;
}
.modes h2 { grid-column: 1 / -1; }
.modes .mode-box {
  border: 1px solid #b7d1f5;
  border-radius: 12px;
  padding: 18px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, #f9fcff, #eef7ff);
}
.modes .mode-box:last-child { background: linear-gradient(135deg, #f8fffd, #edf9f4); border-color: #a6d9c6; }
.modes h3 { color: var(--blue); text-transform: uppercase; }
.modes p { margin: 8px 0; font-size: 15px; line-height: 1.8; }
.modes p::before { color: #088c67; }
.hybrid {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  font-weight: 900;
  background: var(--blue);
  border: 7px solid white;
  box-shadow: 0 0 0 2px #97bfff, 0 0 0 12px #eef5ff;
}
.journey-line { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.journey-line > div {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 10px;
  box-shadow: 0 8px 18px rgba(18,44,84,.06);
}
.journey-line b {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  margin-top: -34px;
}
.journey-line h3 {font-size: 15px;
    line-height: 1.8; }
.three-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.three-panel > div {
  background: white;
  border-left: 1px solid var(--line);
  padding: 16px 20px;
}
.three-panel h2 {
	font-size: 38px;
    color: #0d1b4c;
    margin-bottom: 10px;
    font-weight: 700;
}
.three-panel h2::after 
{
	content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: var(--blue);
    margin: 8px auto 0;
    border-radius: 99px;
    text-align: center;
    align-items: center;
}
.expert > div, .person { display: flex; gap: 18px; align-items: center; }
.expert img, .person img { width: 96px; border-radius: 8px; }
.expert small { display: block; margin: 7px 0; color: #334663; }
.logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0; }
.logos span {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px 10px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
blockquote { margin: 0; color: #223b63; line-height: 1.55; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 80px; max-width: 1120px; margin: auto; }
details {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 18px;
}
summary { cursor: pointer; font-weight: 600; font-size: 15px;
    line-height: 1.8;}
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #061c43 0%, #08275c 68%, #174f98 100%);
  color: white;
  padding: 40px 8%;
  display: grid;
  grid-template-columns: 1fr auto auto 220px;
  align-items: center;
  gap: 18px;
}
.final-cta h2 { font-size: 32px; max-width: 620px; margin: 0 0 12px; text-transform: uppercase; }
.final-cta p { margin: 0; color: #e5efff; font-size: 15px;
    line-height: 1.8;}
.final-cta img { align-self: end; margin-bottom: -40px; }
.footer {
  background: #06152e;
  color: white;
  padding: 34px 8%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
 align-items: center;
}
.footer img { width: 150px; }
.footer p, .footer a { color: #cbd7ec; font-size: 15px;
    line-height: 1.8; }
.footer p i{margin-left:5px; margin-right:10px;}
.footer a { display: block; margin: 7px 0; }

@media (max-width: 1200px) {
  .cards.six { grid-template-columns: repeat(3, 1fr); }
  .benefits div { grid-template-columns: repeat(4, 1fr); }
  .hero-image { right: 28%; opacity: .35; }
}

@media (max-width: 900px) {
  .site-header { padding: 0 20px; }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
    width: 42px;
    height: 42px;
    background: #eef4ff;
    border: 0;
    border-radius: 8px;
    font-size: 22px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 18px 22px;
    background: white;
    box-shadow: 0 20px 30px rgba(0,0,0,.12);
    flex-direction: column;
    gap: 16px;
  }
  .nav.open { display: flex; }
  .phone { display: none; }
  .hero { grid-template-columns: 1fr; padding: 42px 20px; }
  .hero-image { width: 80%; right: -20%; }
  .bullet-grid { grid-template-columns: 1fr; }
  .hero-metrics { flex-wrap: wrap; }
  .cards.four, .cards.six, .cards.three, .dark-band, .skill-grid, .modes, .journey-line, .three-panel, .faq-grid, .final-cta, .footer { grid-template-columns: 1fr; }
  .benefits div { grid-template-columns: repeat(2, 1fr); }
  .modes .mode-box { grid-template-columns: 1fr; }
  .hybrid { margin: auto; }
  .final-cta img { display: none; }
}

@media (max-width: 560px) {
  .top-strip { flex-direction: column; gap: 8px; }
  .hero h1 { font-size: 34px; }
  .lead-card { border-radius: 12px; padding: 20px; }
  .hero-metrics { display: grid; grid-template-columns: 1fr; gap: 14px; }
  .hero-metrics div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); padding-bottom: 12px; }
  .benefits div { grid-template-columns: 1fr; }
  .section, .dark-band, .benefits, .final-cta, .footer { padding-left: 18px; padding-right: 18px; }
}
/* Testimonials Section */
.testimonials-section {
   padding: 30px 8%;
    background: #f7f9fc;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 38px;
    color: #0d1b4c;
    margin-bottom: 10px;
    font-weight: 700;
}
.section-title h2:after
{
	content: "";
    display: block;
    width: 90px;
    height: 4px;
    text-align: center;
    align-items: center;
    background: var(--blue);
    margin: 8px auto 0px;
    border-radius: 99px;
}


.section-title p {
    color: #666;
    font-size: 16px;
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.quote-icon {
    font-size: 60px;
    color: #1f57ff;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: bold;
}

.testimonial-text {
    color: #444;
    margin-bottom: 25px;
	font-size: 15px;
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h4 {
    margin: 0;
    font-size: 18px;
    color: #111;
}

.testimonial-user span {
    font-size: 14px;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 30px;
    }

    .testimonial-card {
        padding: 25px;
    }
}

/* Learn from Industry Expert Css */
.experts-section{
    padding: 30px 8%;
    background: #f7f9fc;
    font-family: 'Poppins', sans-serif;
}

.section-heading{
    text-align: center;
    margin-bottom: 55px;
}

.section-heading h2{
    font-size: 40px;
    color: #061c43;
    margin-bottom: 12px;
    font-weight: 700;
}
.section-heading h2:after
{
content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: var(--blue);
    margin: 8px auto 0;
    border-radius: 99px;
    text-align: center;
    align-items: center;
}

.section-heading p{
    color: #667085;
    font-size: 16px;
    margin: 0;
}

.experts-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expert-card{
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    border: 1px solid #e4ebf5;
}

.expert-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.expert-card img{
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.expert-content{
    padding: 28px;
}

.expert-content h3{
    margin: 0 0 8px;
    font-size: 24px;
    color: #061c43;
    font-weight: 700;
}

.expert-content span{
    display: inline-block;
    color: #0f55ff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.expert-content p{
    color: #4b587c;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */

@media(max-width: 991px){

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

}

@media(max-width: 768px){

    .experts-section{
        padding: 60px 20px;
    }

    .section-heading h2{
        font-size: 32px;
    }

    .experts-wrapper{
        grid-template-columns: 1fr;
    }

    .expert-card img{
        height: 280px;
    }

}
/* Footer Css */

/* Box 1 */
.bg-1{
    background: linear-gradient(135deg, #0f55ff, #003ecb);
    color: #fff;
}

/* Box 2 */
.bg-2{
    background: linear-gradient(135deg, #11a75c, #06783d);
    color: #fff;
}

/* Box 3 */
.bg-3{
    background: linear-gradient(135deg, #ff9800, #e67800);
    color: #fff;
}

/* Box 4 */
.bg-4{
    background: linear-gradient(135deg, #7b3cff, #5624c9);
    color: #fff;
}

/* Box 5 */
.bg-5{
    background: linear-gradient(135deg, #00a8c6, #007f96);
    color: #fff;
}

/* Box 6 */
.bg-6{
    background: linear-gradient(135deg, #ff4d6d, #d92d53);
    color: #fff;
}
.outcome-card .know-more-btn{
    display:inline-block;
    padding:12px 28px;
    background:#2563EB;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:all 0.3s ease;
	margin-top:15px;
}

.outcome-card .know-more-btn:hover{
    background:#1D4ED8;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(37,99,235,0.25);
}


