:root {
    --primary-color: #0d1b2a;
    --secondary-color: #1b263b;
    --accent-color: #00b4d8;
    --accent-glow: rgba(0, 180, 216, 0.6);
    --text-light: #e0e1dd;
    --text-dark: #1b263b;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

.home-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-center .section-title {
    text-align: center;
}

/* Buttons */
/* .btn-modern {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-modern.primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-modern.primary:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px var(--accent-glow);
} */

.btn-modern.secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-modern.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* 1. Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.9)), url('../images/new_home/hero_drone_bg.png') center/cover no-repeat;
    color: var(--white);
    padding-top: 100px;
    /* Offset for header */
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-support {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 40px;
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* 2. Trust Section */
.trust-section {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.trust-intro {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item {
    padding: 20px;
    border-radius: 10px;
    background: var(--bg-light);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.trust-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* 3. About Section */
.about-section {
    background: var(--bg-light);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 4. Ecosystem Section */
.ecosystem-section {
    background: var(--primary-color);
    color: var(--white);
}

.ecosystem-section .section-title {
    color: var(--white);
}

.eco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.eco-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.eco-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.eco-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.eco-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* 5. Why Section */
.why-section {
    background: var(--white);
}

.why-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.why-list li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.why-list li i {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 15px;
    background: rgba(29, 111, 193, 0.16);
    padding: 10px;
    border-radius: 50%;
}

/* 6. Opportunity Section */
.opportunity-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
}

.opp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.opp-tag {
    background: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    background: #1e60aa;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.opp-tag:hover {
    transition: var(--transition);
    background: #1c6fc1;
    box-shadow: 0 4px 15px rgba(30, 96, 170, 0.56);
    transform: translateY(-3px);
}

/* 7. Career Section */
.career-section {
    background: var(--secondary-color);
    color: var(--white);
}

.career-section .section-title {
    color: var(--white);
}

.career-stats {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    margin-top: 30px;
}

.career-stats h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* 8. Program Highlight */
.program-section {
    background: var(--white);
}

.program-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid #eee;
}

.program-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #1a4b82;
}

.program-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-color);
}



/* 9. Product Highlight */
.product-section {
    background: var(--bg-light);
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.feature-item i {
    font-size: 2rem;
    color: #1a4b82;
    margin-right: 20px;
}

/* 10. Impact Section */
.impact-section {
    background: var(--primary-color);
    color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.31));
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.impact-card h4 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
}











/* HERO */
.hero-bg-vd {
    position: relative;
    min-height: calc(100dvh - 100px);
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    padding: 40px 0 40px;
    display: flex;
    align-items: center;
}

.hero-bg-vd::before {
    background: linear-gradient(rgba(7, 21, 34, 0.25), rgba(7, 21, 34, 0.39));
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1;
}

.hero-bg-vd .left {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-bg-vd svg {
    width: 18px;
    height: 18px;
    display: block
}

/* Background media */
.hero-bg-vd .bg-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden
}

.hero-bg-vd .bg-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: blur(1px) brightness(0.8) saturate(1.1);
    transform: scale(1.08); */
}

.hero-bg-vd .bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 80% 20%, rgba(10, 132, 255, .25), transparent 60%),
        radial-gradient(900px 600px at 10% 90%, rgba(94, 242, 255, .12), transparent 60%),
        linear-gradient(180deg, rgba(4, 7, 13, .55) 0%, rgba(4, 7, 13, .85) 60%, rgba(4, 7, 13, .95) 100%);
}

/* .hero-bg-vd .bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(120, 170, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 170, 255, .08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    animation: gridMove 20s linear infinite;
} */

.hero-bg-vd .bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(253, 253, 253, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(253, 253, 253, 0.12) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    to {
        background-position: 48px 48px, 48px 48px
    }
}

/* .glow{position:absolute;border-radius:50%;filter:blur(80px);opacity:.55;pointer-events:none}
  .glow-1{width:520px;height:520px;background:#0a84ff;top:-120px;right:-120px;animation:pulseGlow 8s ease-in-out infinite}
  .glow-2{width:420px;height:420px;background:#5ef2ff;bottom:-160px;left:-100px;opacity:.35;animation:pulseGlow 10s ease-in-out infinite reverse}
  .glow-3{width:300px;height:300px;background:#7c5bff;top:40%;left:40%;opacity:.18;animation:pulseGlow 12s ease-in-out infinite}
  @keyframes pulseGlow{0%,100%{transform:scale(1);opacity:.4}50%{transform:scale(1.15);opacity:.7}} */


/* Container */
.hero-container {
    position: relative;
    z-index: 3;
    /* max-width:1440px;margin:0 auto;
    padding:60px 56px 0; */
    /* display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center; */
}

/* Left */
.hero-bg-vd .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(10, 132, 255, .1);
    border: 1px solid rgb(35, 113, 190);
    font-size: 16px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, #0a84ff, #5ab8ff);
    background: linear-gradient(135deg, rgb(27, 84, 149), #184170);
}

.hero-bg-vd .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 12px #fff;
    animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.4);
        opacity: .6
    }
}

.hero-bg-vd .heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: cclamp(22px, 3.6vw, 40px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 24px 0 22px;
    color: #fff;
}

.hero-bg-vd .gradient-text,
.gradient-text {
    background: linear-gradient(120deg, #5ef2ff 0%, #3da9ff 50%, #a78bff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-bg-vd .sub {
    font-size: 17px;
    line-height: 1.65;
    color: #fff;
}

.hero-bg-vd .support {
    margin-top: 14px;
    font-size: 14px;
    color: #fff;
}

.hero-bg-vd .cta-row {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-bg-vd .btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .02em;
	cursor: pointer;
	transition: all .3s cubic-bezier(.2, .8, .2, 1);
	border: 1px solid transparent;
	font-family: 'Inter', sans-serif;
}

.hero-bg-vd .btn svg {
    width: 16px;
    height: 16px
}

.hero-bg-vd .btn-primary {
    background: linear-gradient(135deg, #184272, #1e60aa);
    color: white;
    box-shadow: 0 10px 30px -8px rgba(10, 132, 255, .6), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.hero-bg-vd .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px -10px rgba(10, 132, 255, .8), 0 0 30px rgba(94, 242, 255, .4)
}

.hero-bg-vd .btn-ghost {
    background: rgba(255, 255, 255, .04);
    border-color: #fff;
    backdrop-filter: blur(12px);
    color: #e7f0ff;
}

.hero-bg-vd .btn-ghost:hover {
    background: #ffff;
    border-color: #fff;
    color: #000;
}

/* Stats */
/* .stats{
    margin-top:50px;display:flex;align-items:center;gap:28px;flex-wrap:wrap;
    padding:22px 26px;border-radius:18px;
    background:rgba(15,26,46,0.45);
    border:1px solid rgba(120,170,255,0.18);
    backdrop-filter:blur(18px);
    box-shadow:0 30px 80px -20px rgba(0,120,255,.35);
    max-width:620px;
  }
  .stat-num{font-family:'Space Grotesk';font-size:28px;font-weight:700;color:white;letter-spacing:-.01em}
  .stat-num span{font-size:18px;color:#5ef2ff;margin-left:2px}
  .stat-label{font-size:12px;color:#8ea0bd;margin-top:2px;letter-spacing:.04em}
  .divider{width:1px;height:36px;background:linear-gradient(180deg,transparent,rgba(120,170,255,0.18),transparent)} */

/* Right */
/* .right{position:relative;height:620px}
  .drone-wrap{
    position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
    animation:float 6s ease-in-out infinite;
  }
  .drone{
    width:90%;max-width:520px;height:auto;
    filter:drop-shadow(0 30px 60px rgba(10,132,255,.5)) drop-shadow(0 0 40px rgba(94,242,255,.25));
    border-radius:24px;
    object-fit:cover;
    aspect-ratio:1/1;
    -webkit-mask-image:radial-gradient(circle at center,#000 60%,transparent 100%);
            mask-image:radial-gradient(circle at center,#000 60%,transparent 100%);
  }
  .drone-glow{
    position:absolute;width:60%;height:60%;border-radius:50%;
    background:radial-gradient(circle,#3da9ff,transparent 70%);
    filter:blur(60px);opacity:.6;animation:pulseGlow 4s ease-in-out infinite;
  }
  @keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-18px)}}
  
  .glass-card{
    position:absolute;
    background:linear-gradient(135deg,rgba(20,32,55,.65),rgba(10,18,35,.45));
    border:1px solid rgba(120,170,255,0.18);
    backdrop-filter:blur(20px) saturate(1.2);
    border-radius:18px;
    box-shadow:0 20px 60px -15px rgba(0,30,80,.6),inset 0 1px 0 rgba(255,255,255,.06);
  }
  .dashboard {
	bottom: 10px;
	right: -10px;
	width: 240px;
	padding: 18px;
	animation: floatY 7s ease-in-out infinite;
}
  .card-head{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:16px}
  .card-title{font-size:13px;font-weight:600;color:white}
  .card-sub{font-size:11px;color:#8ea0bd;margin-top:2px}
  .live{display:inline-flex;align-items:center;gap:6px;font-size:10px;font-weight:700;letter-spacing:.1em;color:#5ef2ff;padding:4px 8px;background:rgba(94,242,255,.1);border-radius:6px}
  .pulse-dot{width:6px;height:6px;border-radius:50%;background:#5ef2ff;box-shadow:0 0 8px #5ef2ff;animation:pulseDot 1.4s infinite}
  .metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:14px}
  .metric{padding:8px;background:rgba(255,255,255,.03);border-radius:10px;border:1px solid rgba(255,255,255,.04)}
  .m-label{font-size:9px;color:#8ea0bd;letter-spacing:.08em;text-transform:uppercase}
  .m-value{font-family:'Space Grotesk';font-size:16px;font-weight:600;color:white;margin-top:2px}
  .m-value span{font-size:10px;color:#5ef2ff;margin-left:2px;font-weight:400}
  .bar{height:6px;background:rgba(255,255,255,.06);border-radius:99px;overflow:hidden}
  .bar-fill{height:100%;width:72%;background:linear-gradient(90deg,#3da9ff,#5ef2ff);border-radius:99px;box-shadow:0 0 10px #5ef2ff;animation:barShift 3s ease-in-out infinite alternate}
  @keyframes barShift{to{width:88%}}
  .card-foot{font-size:10px;color:#8ea0bd;margin-top:8px;letter-spacing:.04em}
  
  .mini{
    display:flex;align-items:center;gap:12px;
    padding:12px 16px;border-radius:14px;
  }
  .mini-1{top:20px;right:20px;animation:floatY 6s ease-in-out infinite}
  .mini-2{top:45%;left:-30px;animation:floatY 8s ease-in-out infinite reverse}
  .mini-3{top:30px;left:30%;animation:floatY 9s ease-in-out infinite}
  .mini-icon{
    width:36px;height:36px;border-radius:10px;
    background:linear-gradient(135deg,rgba(10,132,255,.25),rgba(94,242,255,.1));
    border:1px solid rgba(94,242,255,.25);
    display:flex;align-items:center;justify-content:center;color:#5ef2ff;
  }
  .mini-icon.green{color:#62f5b1;background:linear-gradient(135deg,rgba(34,197,94,.2),rgba(94,242,255,.05));border-color:rgba(98,245,177,.3)}
  .mini-title{font-size:12px;font-weight:600;color:white}
  .mini-sub{font-size:10px;color:#8ea0bd;margin-top:1px}
  @keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}} */

/* Scroll indicator */
.scroll-ind {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #8ea0bd;
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    z-index: 4;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(180, 200, 230, .4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px
}

.wheel {
    width: 3px;
    height: 7px;
    background: #5ef2ff;
    border-radius: 2px;
    animation: wheel 1.8s ease-in-out infinite;
    box-shadow: 0 0 8px #5ef2ff
}

@keyframes wheel {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    100% {
        transform: translateY(12px);
        opacity: 0
    }
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s ease, transform .9s cubic-bezier(.2, .8, .2, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

.reveal:nth-child(1) {
    transition-delay: .05s
}

.reveal:nth-child(2) {
    transition-delay: .15s
}

.reveal:nth-child(3) {
    transition-delay: .25s
}

.reveal:nth-child(4) {
    transition-delay: .35s
}

.reveal:nth-child(5) {
    transition-delay: .45s
}

.reveal:nth-child(6) {
    transition-delay: .55s
}

/* Responsive */
@media (max-width:640px) {
    .heading {
        font-size: 34px
    }

    .sub {
        font-size: 15px
    }

    .scroll-ind {
        display: none
    }

    .btn {
        padding: 13px 20px;
        font-size: 13px
    }
}






/* ── Section ── */
.trust-section {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding: 3rem 0;
    overflow: hidden;
    /* background: linear-gradient(170deg, #162031 0%, #1a2740 40%, #1e2d4a 100%); */
}

/* Background image overlay */
.trust-section .bg-image-overlay {
    position: absolute;
    inset: 0;
    background:
        url('../images/home/product_bg.webp') center/cover no-repeat;
    opacity: 0.5;
    pointer-events: none;
    background-attachment: fixed;
    background-position: right;
}

/* Dotted pattern */
.trust-section .bg-dotted {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* Blurred blobs */
.trust-section .bg-blob {
    position: absolute;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.trust-section .blob-left {
    top: 20%;
    left: -10rem;
    background: rgba(14, 165, 233, 0.08);
}

.trust-section.blob-right {
    bottom: 20%;
    right: -10rem;
    background: rgba(45, 185, 140, 0.08);
}

/* ── Container ── */
/* .container {
    position: relative;
    z-index: 10;
    max-width: 72rem;
    margin: 0 auto;
    width: 100%;
  } */

/* ── Header ── */
.trust-section .section_header {
    text-align: center;
    margin-bottom: 2rem;
}

/* .trust-section .badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #0ea5e9;
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    border: 1px solid rgba(14,165,233,0.25);
    background: rgba(14,165,233,0.08);
    margin-bottom: 1rem;
  } */

/* .section_title {
    font-size: clamp(1.2rem, 4vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    width: fit-content;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
} */

.gradient-text1 {
    /* background: linear-gradient(90deg, #020202, #00b4d8); */
    background: linear-gradient(135deg, #0ea5e9, #2db88c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text3 {
    /* background: linear-gradient(90deg, #020202, #00b4d8);  */
    /* background: linear-gradient(120deg, #020202 0%, #00b4d8 50%, #00b4d8 100%); */
    background: linear-gradient(120deg, #020202 0%, #22971c 50%, #1f941c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheading {
    color: #000;
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: normal;
    text-align: center;
}

/* ── Cards Grid ── */
.trust-section .cards-grid {
    display: grid;
    gap: 1.5rem;
}

.trust-section .top-row {
    grid-template-columns: repeat(5, 1fr);
}

/* .trust-section.bottom-row { grid-template-columns: repeat(2, 1fr); max-width: 50rem; margin: 1.5rem auto 0; } */

/* ── Card ── */
.trust-section .card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 1.2rem;
    cursor: default;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    background: linear-gradient(135deg, rgb(22, 32, 49), #1e60aa);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(51, 65, 85, 0.45);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.trust-section .card::before {
    content: "";
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.19) 1px, #0000000d 1px);
    background-size: 24px 24px;
    pointer-events: none;
    position: absolute;
}

.trust-section svg {
    width: 22px;
    height: 22px;
}

.trust-section .card:hover {
    transform: translateY(-4px) scale(1.02);
}

.trust-section .card.primary:hover {
    border-color: rgba(14, 165, 233, 0.98);
    box-shadow: 0 0 30px -5px rgba(14, 165, 233, 0.48), 0 0 60px -10px rgba(14, 165, 233, 0.08);
}

.trust-section .card.accent:hover {
    border-color: rgb(45, 184, 140);
    box-shadow: 0 0 30px -5px rgba(45, 184, 140, 0.42), 0 0 60px -10px rgba(45, 184, 140, 0.08);
}

/* Top accent line */
.trust-section .card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0.6;
    transition: opacity 0.4s;
}

.trust-section .card:hover .card-accent {
    opacity: 1;
}

.trust-section .card.primary .card-accent {
    background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
}

.trust-section .card.accent .card-accent {
    background: linear-gradient(90deg, transparent, #2db88c, transparent);
}

/* Icon */
.trust-section .card-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.trust-section .primary-icon {
    background: #fff;
    color: #000;
}

.trust-section .accent-icon {
    background: #fff;
    color: #000;
}

.trust-section .card:hover .primary-icon {
    background: rgba(14, 165, 233, 0.2);
    color: #fff;
}

.trust-section .card:hover .accent-icon {
    background: rgba(45, 184, 140, 0.2);
    color: #fff;
}

.trust-section .card-title {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    color: #fff;
}

.trust-section .card-desc {
    color: #7c8ba5;
    font-size: 0.875rem;
    line-height: 1.65;
}

/* ── Scroll Reveal ── */
.trust-section .reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.trust-section .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .trust-section .top-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .trust-section {
        padding: 4rem 1rem;
    }

    .trust-section .top-row,
    .bottom-row {
        grid-template-columns: 1fr;
    }

    .trust-section .card {
        padding: 1.5rem;
    }
}






.ecosystem {
    position: relative;
    overflow: hidden;
    padding: 50px 0 50px;
    /* background: radial-gradient(1200px 600px at 90% -10%, rgba(0, 194, 255, .12), transparent 60%), radial-gradient(900px 500px at -10% 110%, rgba(122, 92, 255, .10), transparent 60%), linear-gradient(180deg, #f5f8ff 0%, #eaf1ff 100%); */
}

.ecosystem .bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 107, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 107, 255, .07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
    pointer-events: none;
}

.ecosystem .bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
    pointer-events: none
}

.ecosystem .glow-1 {
    width: 420px;
    height: 420px;
    background: #2061ab1f;
    top: -120px;
    right: -120px
}

.ecosystem .glow-2 {
    width: 380px;
    height: 380px;
    background: #c8b8ff;
    bottom: -140px;
    left: -100px
}



.ecosystem .eco-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* .ecosystem .eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    padding:8px 16px;border-radius:999px;
    background:rgba(255,255,255,.7);
    border:1px solid rgba(15,30,80,.08);
    backdrop-filter:blur(10px);
    font-size:13px;font-weight:500;color:#445072;
    letter-spacing:.02em;
    box-shadow:0 6px 18px rgba(20,40,90,.06);
  }
  .ecosystem .dot{width:8px;height:8px;border-radius:50%;background:#1e6bff;box-shadow:0 0 0 4px rgba(30,107,255,.18)} */

.ecosystem .eco-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 700;
    letter-spacing: -.02em;
    margin: 22px 0 18px;
    line-height: 1.05;
    color: #000;
}

.gradient-text2 {
    background: linear-gradient(120deg, #1e6bff, #00c2ff 50%, #7a5cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ecosystem .eco-header p {
    font-size: clamp(15px, 1.6vw, 18px);
    color: #000;
    line-height: normal;
}

.ecosystem .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.ecosystem .card {
    position: relative;
    background: linear-gradient(180deg, #fff, #fbfcff);
    border: 1px solid rgba(15, 30, 80, .08);
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: 0 6px 18px rgba(20, 40, 90, .06);
    transition: transform .5s cubic-bezier(.2, .7, .2, 1), box-shadow .5s, border-color .5s;
    overflow: hidden;
    isolation: isolate;
}

.ecosystem .card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, rgb(30, 107, 255), rgb(4, 171, 213), rgb(33, 118, 205));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .5s;
    pointer-events: none;
}

.ecosystem .card::after {
    content: "";
    position: absolute;
    inset: auto -40% -60% auto;
    width: 280px;
    height: 280px;
    background: radial-gradient(closest-side, rgba(0, 194, 255, .18), transparent 70%);
    opacity: 0;
    transition: opacity .6s;
    z-index: -1;
}

.ecosystem .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(20, 40, 90, .14);
    border-color: transparent
}

.ecosystem .card:hover::before,
.card:hover::after {
    opacity: 1
}

.ecosystem .icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(30, 107, 255, .10), rgba(0, 194, 255, .10));
    border: 1px solid rgba(30, 107, 255, .15);
    color: #1e6bff;
    margin-bottom: 22px;
    transition: transform .5s, background .5s, color .5s;
}

.ecosystem .icon-wrap svg {
    width: 28px;
    height: 28px
}

.ecosystem .card:hover .icon-wrap {
    background: linear-gradient(135deg, rgb(0, 180, 216), rgb(29, 111, 193));
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
}

.ecosystem .card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: 10px;
    color: #0b1220;
}

.ecosystem .card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #6b7796;
    margin-bottom: 0
}

.ecosystem .card-link {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e6bff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .3s;
}

.ecosystem .card:hover .card-link {
    gap: 10px
}

.ecosystem .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--d, 0s)
}

.ecosystem .reveal.in {
    opacity: 1;
    transform: none
}

@media (max-width:991.5px) {
    /* .ecosystem .ecosystem {
        padding: 80px 18px
    } */

    .ecosystem .card {
        padding: 20px 15px;
        text-align: center;
    }

    .ecosystem .icon-wrap {
        margin: 0 auto 12px;
    }

    /* .ecosystem .eco-header {
        margin-bottom: 44px
    } */
}

@media (prefers-reduced-motion:reduce) {
    .ecosystem .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .ecosystem .card,
    .ecosystem .icon-wrap,
    .ecosystem .card-link {
        transition: none
    }
}







.why_choosus_sec {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: hsl(210, 25%, 8%);
    color: hsl(200, 20%, 95%);
}

.why_choosus_sec {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.why_choosus_sec .bg-image {
    position: absolute;
    inset: 0;
    background: url('../images/bg.webp') center/cover no-repeat;
    animation: slowDrift 20s ease-in-out infinite;
}

.why_choosus_sec .overlay {
    position: absolute;
    inset: 0;
    background: hsla(210, 30%, 5%, 0.85);
}

.why_choosus_sec .particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.why_choosus_sec .particle {
    position: absolute;
    border-radius: 50%;
    background: hsla(185, 80%, 55%, 0.1);
    animation: floatParticle 8s ease-in-out infinite;
}

.why_choosus_sec .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    background: hsla(185, 80%, 55%, 0.05);
}

.why_choosus_sec .glow-left {
    top: 25%;
    left: -128px;
    width: 256px;
    height: 256px;
}

.why_choosus_sec .glow-right {
    bottom: 25%;
    right: -128px;
    width: 320px;
    height: 320px;
}

.why_choosus_sec .content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0 40px;
}

.why_choosus_sec .inner {
    max-width: 768px;
    width: 100%;
}



.why_choosus_sec ul {
    list-style: none;
}

.why_choosus_sec .feature-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.why_choosus_sec .feature-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.why_choosus_sec .feature-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid hsla(185, 80%, 55%, 0.1);
    cursor: default;
    transition: border-color 0.5s;
}

.why_choosus_sec .feature-row:hover {
    border-color: hsla(185, 80%, 55%, 0.3);
}

.why_choosus_sec .icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: hsla(185, 80%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.5s;
}

.why_choosus_sec .feature-row:hover .icon-box {
    background: hsla(185, 80%, 55%, 0.2);
    box-shadow: 0 0 20px hsla(185, 80%, 55%, 0.15);
}

.why_choosus_sec .feature-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: hsla(200, 20%, 95%, 0.9);
    padding-top: 10px;
    transition: color 0.3s;
}

.why_choosus_sec .feature-row:hover .feature-text {
    color: hsl(200, 20%, 95%);
}

.why_choosus_sec .hover-line {
    margin-left: auto;
    flex-shrink: 0;
    align-self: center;
    width: 0;
    height: 2px;
    background: hsla(185, 80%, 55%, 0.6);
    border-radius: 2px;
    transition: width 0.5s;
}

.why_choosus_sec .feature-row:hover .hover-line {
    width: 32px;
}

@keyframes slowDrift {

    0%,
    100% {
        transform: scale(1.05) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(-1%, -1%);
    }
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-80px);
    }
}

@media (max-width: 991.5px) {
    .home-section {
        padding: 50px 0;
    }

    /* .why-list li {
        text-align: center;
        justify-content: center;
    } */

    .why_choosus_sec .icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* .career-stats {
        text-align: center;
    }

    .program-card {
        text-align: center;
    } */

    .why_choosus_sec .feature-row {
        gap: 16px;
        padding: 16px 0;
    }

    .why_choosus_sec .feature-text {
        padding-top: 6px;
    }

    .why_choosus_sec .hover-line {
        display: none;
    }

    .why_choosus_sec .content {
        padding: 60px 16px;
    }
}



.mfp-figure .mfp-close {
    display: none;
}