/* GLOBAL */

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

body{
background:#081120;
color:#dbeafe;
line-height:1.6;
font-family:"Inter", Arial, sans-serif;
font-size:16px;
font-weight:400;
}

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

header .container{
width:min(96%, 1320px);
max-width:1320px;
}


/* HEADER */

header{
background:#ffffff;
color:#333;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
position:relative;
z-index:1000;
}

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 0;
}

.logo{
height:60px;
width:140px;
}

nav ul{
display:flex;
list-style:none;
margin:0;
padding:0;
}

nav ul li{
margin-left:25px;
}

nav ul li a{
color:#333;
text-decoration:none;
transition:0.3s;
font-weight:500;
font-size:16px;
padding:8px 12px;
border-radius:4px;
}

nav ul li a:hover{
color:#001F3F;
background:#f8f9fa;
text-decoration:underline;
}

a:hover{
text-decoration:underline;
}


.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
background:none;
border:none;
color:#333;
padding:8px;
border-radius:4px;
transition:0.3s;
}

.menu-toggle:hover{
background:#f8f9fa;
}


/* CAROUSEL */

.carousel{
position:relative;
width:100%;
height:clamp(360px,56.25vw,760px);
overflow:hidden;
background:#081120;
}

.carousel-container{
position:relative;
height:100%;
max-width:1400px;
margin:0 auto;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:opacity 0.8s ease;
}

.slide.active{
opacity:1;
}

.slide img{
width:100%;
height:100%;
object-fit:contain;
object-position:center;
background:
radial-gradient(circle at 50% 35%,rgba(59,130,246,0.18),transparent 34%),
linear-gradient(135deg,#050b15,#081120 58%,#0d1730);
}

.slide-content{
position:absolute;
bottom:clamp(120px,15vw,190px);
left:50px;
color:white;
background:rgba(0,0,0,0.5);
padding:20px;
border-radius:8px;
max-width:400px;
}

.slide-content h2{
margin-bottom:10px;
}

.prev,
.next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.6);
color:white;
border:none;
font-size:28px;
padding:10px 15px;
cursor:pointer;
}

.prev{ left:20px; }
.next{ right:20px; }


/* HERO */

.hero{
min-height:680px;
padding:70px 20px 42px;
background:#06121f;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
position:relative;
overflow:hidden;
}

.hero::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(6,18,31,0.96),rgba(6,18,31,0.78) 48%,rgba(6,18,31,0.92));
z-index:1;
}

.hero::after{
content:"";
position:absolute;
inset:0;
background:url("../images/hero.jpg") center/cover no-repeat;
opacity:0.24;
filter:saturate(1.15);
z-index:0;
}

.hero-mesh,
.hero-grid,
.hero-particles,
.hero-floating-card{
position:absolute;
pointer-events:none;
}

.hero-mesh{
inset:-20%;
background:
radial-gradient(circle at 22% 28%,rgba(18,195,201,0.55),transparent 26%),
radial-gradient(circle at 80% 20%,rgba(242,186,73,0.38),transparent 22%),
radial-gradient(circle at 62% 76%,rgba(54,211,153,0.32),transparent 26%),
linear-gradient(135deg,rgba(21,69,118,0.55),rgba(8,20,35,0.1));
filter:blur(10px);
animation:meshShift 16s ease-in-out infinite alternate;
z-index:1;
}

.hero-grid{
inset:0;
background-image:
linear-gradient(rgba(255,255,255,0.08) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,0.08) 1px,transparent 1px);
background-size:52px 52px;
mask-image:linear-gradient(to bottom,transparent,black 18%,black 78%,transparent);
animation:gridMove 18s linear infinite;
opacity:0.5;
z-index:1;
}

.hero-particles{
inset:0;
z-index:2;
}

.hero-particles span{
position:absolute;
width:8px;
height:8px;
border-radius:50%;
background:#7cf5d2;
box-shadow:0 0 22px rgba(124,245,210,0.85);
animation:particleFloat 9s ease-in-out infinite;
}

.hero-particles span:nth-child(1){left:12%;top:24%;animation-delay:0s;}
.hero-particles span:nth-child(2){left:24%;top:72%;animation-delay:1.4s;background:#70c7ff;}
.hero-particles span:nth-child(3){left:78%;top:26%;animation-delay:2.2s;background:#ffd56d;}
.hero-particles span:nth-child(4){left:88%;top:66%;animation-delay:3.1s;}
.hero-particles span:nth-child(5){left:46%;top:18%;animation-delay:4s;background:#70c7ff;}
.hero-particles span:nth-child(6){left:58%;top:84%;animation-delay:5.2s;background:#ffd56d;}

.hero-content{
position:relative;
z-index:3;
max-width:1040px;
width:100%;
margin:auto;
}

.hero h1{
font-size:58px;
line-height:1.08;
max-width:920px;
margin:0 auto;
font-weight:800;
letter-spacing:0;
text-wrap:balance;
animation:headlineRise 0.9s ease both;
}

.hero-eyebrow{
display:inline-flex;
align-items:center;
gap:8px;
padding:8px 14px;
border:1px solid rgba(255,255,255,0.22);
background:rgba(255,255,255,0.08);
border-radius:999px;
font-size:14px;
font-weight:700;
letter-spacing:0;
margin-bottom:18px;
backdrop-filter:blur(12px);
}

.hero-tagline{
font-size:20px;
margin:18px 0 10px;
color:#cde7ff;
font-weight:700;
}

.hero-copy{
max-width:720px;
margin:0 auto;
font-size:18px;
line-height:1.7;
color:#e6eef7;
}

.rotating-keywords{
display:block;
height:72px;
margin-top:10px;
overflow:hidden;
color:#7cf5d2;
text-shadow:0 0 28px rgba(124,245,210,0.35);
}

.rotating-keywords span{
display:block;
height:72px;
animation:keywordSlide 10s infinite;
}

.hero-actions{
display:flex;
justify-content:center;
gap:14px;
flex-wrap:wrap;
margin-top:30px;
}

.hero-btn{
position:relative;
display:inline-flex;
align-items:center;
justify-content:center;
min-height:52px;
padding:0 26px;
border-radius:6px;
font-size:16px;
font-weight:800;
text-decoration:none;
overflow:hidden;
transition:transform 0.3s ease,box-shadow 0.3s ease,border-color 0.3s ease;
}

.hero-btn:hover{
transform:translateY(-3px);
text-decoration:none;
}

.hero-btn-primary{
background:linear-gradient(135deg,#10b8c7,#35d399);
color:#03141f;
box-shadow:0 14px 38px rgba(16,184,199,0.28);
}

.hero-btn-primary::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(110deg,transparent 10%,rgba(255,255,255,0.55),transparent 55%);
transform:translateX(-120%);
animation:buttonShine 3.8s ease-in-out infinite;
}

.hero-btn-secondary{
border:1px solid rgba(255,255,255,0.32);
background:rgba(255,255,255,0.08);
color:#ffffff;
backdrop-filter:blur(12px);
}

.hero-floating-card{
z-index:3;
width:210px;
padding:16px;
border:1px solid rgba(255,255,255,0.2);
border-radius:8px;
background:rgba(255,255,255,0.09);
box-shadow:0 18px 48px rgba(0,0,0,0.22);
backdrop-filter:blur(14px);
text-align:left;
animation:cardFloat 7s ease-in-out infinite;
}

.hero-floating-card strong,
.hero-floating-card span{
display:block;
}

.hero-floating-card strong{
font-size:16px;
color:#ffffff;
}

.hero-floating-card span{
margin-top:6px;
font-size:13px;
line-height:1.4;
color:#c8d8e8;
}

.hero-card-a{
left:5%;
top:20%;
}

.hero-card-b{
right:5%;
bottom:18%;
animation-delay:1.7s;
}

.cta-btn{
margin-top:20px;
padding:15px 30px;
background:linear-gradient(45deg,#007BFF,#6F42C1);
border:none;
color:white;
border-radius:5px;
font-size:18px;
cursor:pointer;
transition:0.3s;
}

.cta-btn:hover{
opacity:0.9;
}

@keyframes meshShift{
0%{transform:translate3d(-2%,0,0) scale(1);}
100%{transform:translate3d(3%,2%,0) scale(1.08);}
}

@keyframes gridMove{
0%{background-position:0 0,0 0;}
100%{background-position:52px 52px,52px 52px;}
}

@keyframes particleFloat{
0%,100%{transform:translate3d(0,0,0) scale(1);opacity:0.35;}
50%{transform:translate3d(28px,-34px,0) scale(1.45);opacity:1;}
}

@keyframes headlineRise{
0%{opacity:0;transform:translateY(22px);}
100%{opacity:1;transform:translateY(0);}
}

@keyframes keywordSlide{
0%,20%{transform:translateY(0);}
25%,45%{transform:translateY(-100%);}
50%,70%{transform:translateY(-200%);}
75%,95%{transform:translateY(-300%);}
100%{transform:translateY(0);}
}

@keyframes buttonShine{
0%,45%{transform:translateX(-120%);}
70%,100%{transform:translateX(120%);}
}

@keyframes cardFloat{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-18px);}
}


/* ABOUT */

.about{
background:white;
padding:60px 0;
}

.about-flex{
display:flex;
align-items:start;
gap:60px;
flex-wrap:wrap;
}

.about-text{
flex:1;
line-height:1.6;
}

.about-tagline{
font-size:18px;
color:#666;
margin-bottom:15px;
}

.about-image{
flex:1;
}

.about-image img{
width:100%;
border-radius:10px;
}


/* SERVICES */

.services{
padding:60px 0;
text-align:center;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:30px;
}

.card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}


/* FEATURES */

.features{
padding:60px 0;
text-align:center;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:30px;
}

.feature-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}


/* WHY CHOOSE US */

.why-us{
background:url("../images/why-choose-us1.jpg") top center / cover no-repeat;
padding:80px 0;
color:white;
text-align:center;
}

.why-us h2{
font-size:36px;
margin-bottom:10px;
}

.why-subtitle{
color:#ddd;
margin-bottom:40px;
font-size:16px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
grid-auto-rows:1fr;
gap:20px;
max-width:1200px;
margin:auto;
align-items:stretch;
justify-items:stretch;
}

.why-card{
background:rgba(255,255,255,0.12);
padding:28px;
border-radius:14px;
backdrop-filter:blur(5px);
border:1px solid rgba(255,255,255,0.18);
transition:all 0.35s ease;
display:flex;
flex-direction:column;
justify-content:space-between;
min-height:180px;
}

.why-card h3{
margin-bottom:10px;
font-size:18px;
}

.why-card p{
font-size:14px;
color:#ddd;
}

.why-card:hover{
transform:translateY(-10px) scale(1.03);
background:rgba(255,255,255,0.2);
box-shadow:0 15px 35px rgba(0,0,0,0.4);
cursor:pointer;
}


/* VISION & MISSION */

.vision-mission{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin:40px auto;
}

.vm-card{
background:#f4f6fb;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}


/* TEAM */

.team{
padding:60px 0;
text-align:center;
}

.team-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
max-width:600px;
margin:1em auto;
}

.team-card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.team-card img{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
margin-bottom:10px;
}


/* FOOTER */

/* FOOTER */

/* ------------------------
   CSV Picker & Common UI
   Fancy blue rounded buttons, file input, preview and modal
   Responsive and mobile-friendly
   ------------------------ */
:root{
  --bg: #081120;
  --bg-soft: #0b1728;
  --card: rgba(255,255,255,0.08);
  --muted: #9fb3c8;
  --accent: #3B82F6;
  --accent-2: #7C3AED;
  --cyan: #06B6D4;
  --glass: rgba(255,255,255,0.08);
  --glass-strong: rgba(255,255,255,0.14);
  --border: rgba(148,163,184,0.22);
  --text: #eaf2ff;
}

/* reset a few form elements to match site */
button, .cta-btn, input[type="submit"], .btn{
  -webkit-appearance:none;appearance:none;border:0;cursor:pointer;font-weight:600;
}

/* Common blue rounded button used across UI */
.btn-blue, .cta-btn, .btn-primary{
  display:inline-flex;align-items:center;gap:8px;padding:10px 16px;border-radius:12px;
  background:linear-gradient(180deg,var(--accent),var(--accent-2));color:white;box-shadow:0 8px 30px rgba(30,144,255,0.16);
  border:1px solid rgba(255,255,255,0.06);transition:transform .18s ease, box-shadow .18s ease;
}
.btn-blue:hover, .cta-btn:hover{transform:translateY(-3px);box-shadow:0 14px 40px rgba(30,144,255,0.18)}
.btn-ghost{background:transparent;border:1px solid rgba(15,23,42,0.06);color:var(--muted);padding:8px 12px;border-radius:10px}

/* File input - hide native and style label */
input[type="file"]{position:relative;overflow:hidden;display:none}
.file-label{
  display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border-radius:12px;background:linear-gradient(180deg,var(--accent),#2ea0ff);
  color:white;font-weight:700;box-shadow:0 10px 30px rgba(30,144,255,0.12);border:1px solid rgba(255,255,255,0.08);cursor:pointer;
}
.file-label .filename{max-width:220px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.preview-area{margin-top:16px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:12px;border-radius:10px;border:1px solid rgba(0,0,0,0.04)}
.preview-table{width:100%;border-collapse:collapse;font-size:14px}
.preview-table th{color:var(--muted);text-align:left;padding:8px;border-bottom:1px dashed rgba(0,0,0,0.06)}
.preview-table td{padding:8px;border-bottom:1px dashed rgba(0,0,0,0.03);color:#0b2540}
.no-data{color:var(--muted);padding:12px}

/* Modal / dialog */
.modal-backdrop{position:fixed;inset:0;background:rgba(2,6,23,0.6);display:none;align-items:center;justify-content:center;padding:20px;z-index:2200;pointer-events:none}
.modal-backdrop.open{display:flex;pointer-events:auto}

/* prevent body scroll while modal is open */
body.modal-open{overflow:hidden}

.modal-card{width:100%;max-width:640px;background:linear-gradient(180deg, #fff, #f8fbff);border-radius:14px;padding:18px;border:1px solid rgba(2,6,23,0.06);box-shadow:0 30px 60px rgba(2,6,23,0.4);transform:translateY(8px);opacity:0;transition:transform .22s ease, opacity .22s ease}
.modal-backdrop.open .modal-card{transform:translateY(0);opacity:1}
.modal-card{width:100%;max-width:640px;background:linear-gradient(180deg, #fff, #f8fbff);border-radius:14px;padding:18px;border:1px solid rgba(2,6,23,0.06);box-shadow:0 30px 60px rgba(2,6,23,0.4)}
.modal-card h3{margin:0 0 6px 0;color:#07284b}
.modal-card .small{color:var(--muted);font-size:13px}
.progress{height:12px;background:var(--glass);border-radius:999px;overflow:hidden;margin-top:12px}
.progress > i{display:block;height:100%;width:0;background:linear-gradient(90deg,var(--accent),#3ad1ff);border-radius:inherit;transition:width 420ms cubic-bezier(.2,.9,.2,1)}

/* Responsive tweaks */
@media (max-width:900px){
  .cta-btn, .btn-blue{padding:10px 14px;border-radius:10px}
  .file-label{padding:10px;border-radius:10px}
}
@media (max-width:600px){
  .menu-toggle{display:block}
  .why-grid, .service-grid, .feature-grid{grid-template-columns:1fr}
  .modal-card{padding:14px}
}


.footer{
background:linear-gradient(135deg,#0f0f0f,#1c1c2e);
color:#ddd;
padding-top:60px;
border-top:none;
margin-top:0;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
padding-bottom:40px;
}

.footer h3{
color:#ffffff;
margin-bottom:15px;
}

.footer p{
font-size:14px;
line-height:1.6;
color:#ccc;
}

.footer-links ul{
list-style:none;
}

.footer-links ul li{
margin-bottom:8px;
}

.footer-links a{
color:#ccc;
text-decoration:none;
transition:0.3s;
}

.footer-links a:hover{
color:inherit;
text-decoration:underline;
}




.social-icons{
margin-top:10px;
}

.social-icons a{
display:inline-block;
margin-right:10px;
padding:6px 10px;
background:#333;
border-radius:5px;
font-size:13px;
text-decoration:none;
color:#fff;
transition:0.3s;
}

.social-icons a:hover{
background:#007BFF;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.1);
text-align:center;
padding:15px 0;
font-size:13px;
color:#aaa;
}

.social-icons{
margin-top:10px;
}

.social-icons a{
display:inline-block;
margin-right:10px;
padding:6px 10px;
background:#f1f1f1;
border-radius:5px;
font-size:13px;
text-decoration:none;
color:#444;
transition:0.3s;
}

.social-icons a:hover{
background:#007BFF;
color:white;
}

.footer-bottom{
border-top:1px solid #eee;
text-align:center;
padding:15px 0;
font-size:13px;
color:#777;
}


/* CONTACT MODAL */

.contact-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
justify-content:center;
align-items:center;
z-index:1300;
}

.contact-box{
background:white;
padding:30px;
border-radius:10px;
width:90%;
max-width:400px;
position:relative;
}

.contact-box h2{
margin-bottom:20px;
}

.contact-box input,
.contact-box select,
.contact-box textarea{
width:100%;
padding:10px;
margin-bottom:12px;
border:1px solid #ccc;
border-radius:5px;
}

.submit-btn{
width:100%;
padding:12px;
background:linear-gradient(45deg,#007BFF,#6F42C1);
border:none;
color:white;
font-weight:bold;
cursor:pointer;
border-radius:5px;
}

.close-btn{
position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;
}


/* FUNNEL MODALS */

.funnel-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
justify-content:center;
align-items:center;
z-index:1000;
overflow-y:auto;
}

.funnel-modal-content{
background:white;
border-radius:15px;
width:90%;
max-width:1000px;
max-height:90vh;
overflow-y:auto;
position:relative;
margin:20px;
}

.funnel-modal .funnel-section{
padding:40px 0;
}

.funnel-modal .close-btn{
position:absolute;
top:15px;
right:20px;
font-size:28px;
color:#333;
cursor:pointer;
z-index:1001;
background:white;
border-radius:50%;
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 2px 10px rgba(0,0,0,0.2);
}


/* CHOOSE YOUR PATH */

.choose-path{
background:linear-gradient(135deg,#f8f9fa,#e9ecef);
padding:80px 0;
text-align:center;
}

.choose-path h2{
font-size:36px;
margin-bottom:50px;
color:#333;
}

.path-cards{
display:flex;
justify-content:space-between;
gap:40px;
max-width:1000px;
margin:auto;
}

.path-card{
background:white;
padding:40px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
flex:1;
transition:transform 0.3s ease;
}

.path-card:hover{
transform:translateY(-10px);
box-shadow:0 14px 40px rgba(0,0,0,0.15);
}



.path-card h3{
font-size:24px;
margin-bottom:10px;
color:#001F3F;
}

.path-card h4{
font-size:20px;
margin-bottom:20px;
color:#333;
}

.path-card ul{
list-style:none;
text-align:left;
margin-bottom:30px;
}

.path-card ul li{
margin-bottom:10px;
padding-left:20px;
position:relative;
}

.path-card ul li::before{
content:"✓";
position:absolute;
left:0;
color:#28a745;
font-weight:bold;
}

.aem-card h3{
color:#FF6B35;
}

.ai-card h3{
color:#6F42C1;
}


/* FUNNEL SECTIONS */

.funnel-section{
padding:80px 0;
background:white;
}

.funnel-section h2{
font-size:32px;
text-align:center;
margin-bottom:10px;
color:#333;
}

.funnel-subtext{
text-align:center;
font-size:18px;
color:#666;
margin-bottom:50px;
max-width:800px;
margin-left:auto;
margin-right:auto;
}

.funnel-content{
display:flex;
justify-content:space-between;
gap:60px;
max-width:1000px;
margin:auto;
margin-bottom:40px;
}

.funnel-offer,
.funnel-outcomes{
flex:1;
}

.funnel-offer h3,
.funnel-outcomes h3{
font-size:24px;
margin-bottom:20px;
color:#001F3F;
}

.funnel-offer ul,
.funnel-outcomes ul{
list-style:none;
}

.funnel-offer ul li,
.funnel-outcomes ul li{
margin-bottom:15px;
padding-left:25px;
position:relative;
font-size:16px;
line-height:1.5;
}

.funnel-offer ul li::before,
.funnel-outcomes ul li::before{
content:"•";
position:absolute;
left:0;
color:#001F3F;
font-size:20px;
}

.funnel-section .cta-btn{
display:block;
margin:0 auto;
width:fit-content;
padding:15px 40px;
font-size:18px;
background:linear-gradient(45deg,#007BFF,#6F42C1);
border:none;
color:white;
border-radius:5px;
cursor:pointer;
transition:0.3s;
}

.funnel-section .cta-btn:hover{
opacity:0.9;
transform:scale(1.05);
}


/* FOUNDER SECTION */

.founder{
background:linear-gradient(135deg,#ffffff,#f8f9fa);
padding:60px 0;
text-align:center;
}

.founder h2{
font-size:32px;
margin-bottom:40px;
color:#333;
}

.founder-content{
display:flex;
align-items:center;
justify-content:center;
gap:40px;
max-width:1000px;
margin:0 auto;
flex-wrap:wrap;
}

.founder-image{
flex-shrink:0;
}

.founder-image img{
width:150px;
height:150px;
border-radius:50%;
object-fit:cover;
border:4px solid #001F3F;
box-shadow:0 8px 25px rgba(0,31,63,0.2);
}

.founder-text{
flex:1;
text-align:left;
max-width:600px;
}

.founder-text h3{
font-size:24px;
color:#001F3F;
margin-bottom:20px;
line-height:1.3;
}

.founder-text p{
font-size:16px;
line-height:1.6;
color:#555;
margin-bottom:15px;
}

.founder-text p:last-child{
margin-bottom:0;
}


/* RESPONSIVE */

@media(max-width:900px){

.hero{
min-height:760px;
padding:60px 18px 34px;
}

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

.rotating-keywords,
.rotating-keywords span{
height:54px;
}

.hero-floating-card{
display:none;
}

.why-grid{
grid-template-columns:1fr;
}

.path-cards{
flex-direction:column;
gap:20px;
}

.funnel-content{
flex-direction:column;
gap:30px;
}

}

@media(max-width:768px){

.header-flex{
padding:5px 15px;
}

.logo{
height:50px;
width:120px;
}

nav ul{
display:none;
flex-direction:column;
background:#ffffff;
position:absolute;
top:100%;
left:0;
right:0;
width:100%;
text-align:center;
padding:20px 0;
border-top:1px solid #eee;
box-shadow:0 4px 8px rgba(0,0,0,0.1);
z-index:999;
}

nav ul.active{
display:flex;
}

nav ul li{
margin:8px 0;
}

nav ul li a{
font-size:18px;
padding:12px 20px;
margin:0 10px;
display:block;
border-radius:6px;
}

.menu-toggle{
display:block;
position:absolute;
right:15px;
top:50%;
transform:translateY(-50%);
}

.carousel{
height:clamp(300px,70vw,520px);
padding:0;
}

.hero{
min-height:auto;
padding:58px 16px 30px;
}

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

.hero-eyebrow{
font-size:12px;
line-height:1.4;
border-radius:6px;
}

.rotating-keywords,
.rotating-keywords span{
height:44px;
}

.hero-tagline{
font-size:18px;
}

.hero-copy{
font-size:16px;
}

.hero-actions{
gap:10px;
}

.hero-btn{
width:100%;
max-width:300px;
min-height:50px;
}

.slide-content{
bottom:96px;
left:30px;
max-width:320px;
padding:15px;
font-size:14px;
}

.service-grid,
.feature-grid{
grid-template-columns:1fr;
}

.vision-mission{
grid-template-columns:1fr;
}

.about-flex{
flex-direction:column;
}

.team-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.path-cards{
flex-direction:column;
gap:20px;
}

.funnel-content{
flex-direction:column;
gap:30px;
}

.choose-path h2{
font-size:28px;
}

.funnel-section h2{
font-size:28px;
}

.funnel-modal-content{
width:95%;
max-height:95vh;
margin:10px;
}

.funnel-modal .funnel-section{
padding:20px 0;
}

.founder h2{
font-size:28px;
}

.founder-text h3{
font-size:20px;
}

.founder-content{
flex-direction:column;
text-align:center;
gap:30px;
}

.founder-text{
text-align:center;
}

.founder-image img{
width:120px;
height:120px;
}

}

@media(max-width:420px){

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

.rotating-keywords,
.rotating-keywords span{
height:40px;
}

}

@media(prefers-reduced-motion:reduce){

.hero-mesh,
.hero-grid,
.hero-particles span,
.rotating-keywords span,
.hero-btn-primary::after,
.hero-floating-card,
.hero h1{
animation:none;
}

}

/* AI DARK + GLASSMORPHISM THEME */

html{
scroll-behavior:smooth;
background:#081120;
}

body{
background:
radial-gradient(circle at 12% 12%,rgba(59,130,246,0.24),transparent 30%),
radial-gradient(circle at 88% 18%,rgba(124,58,237,0.2),transparent 28%),
linear-gradient(180deg,#081120 0%,#0a1527 44%,#081120 100%);
color:var(--text);
}

body::before{
content:"";
position:fixed;
inset:0;
pointer-events:none;
background:
linear-gradient(rgba(255,255,255,0.035) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,0.035) 1px,transparent 1px);
background-size:72px 72px;
mask-image:linear-gradient(to bottom,rgba(0,0,0,0.75),transparent 72%);
z-index:-1;
}

header{
position:sticky;
top:0;
background:rgba(8,17,32,0.78);
color:var(--text);
border-bottom:1px solid rgba(59,130,246,0.22);
box-shadow:0 18px 60px rgba(0,0,0,0.32);
backdrop-filter:blur(18px);
}

.logo{
border-radius:8px;
box-shadow:0 0 28px rgba(6,182,212,0.2);
}

nav ul li a{
color:#dbeafe;
border:1px solid transparent;
}

nav ul li a:hover{
color:#ffffff;
background:rgba(59,130,246,0.12);
border-color:rgba(59,130,246,0.32);
box-shadow:0 0 24px rgba(59,130,246,0.14);
text-decoration:none;
}

.menu-toggle{
color:#ffffff;
border:1px solid rgba(255,255,255,0.18);
background:rgba(255,255,255,0.08);
}

.hero{
background:#081120;
}

.hero::before{
background:linear-gradient(90deg,rgba(8,17,32,0.97),rgba(8,17,32,0.72) 48%,rgba(8,17,32,0.95));
}

.hero-mesh{
background:
radial-gradient(circle at 22% 28%,rgba(6,182,212,0.52),transparent 28%),
radial-gradient(circle at 78% 18%,rgba(124,58,237,0.46),transparent 24%),
radial-gradient(circle at 62% 78%,rgba(59,130,246,0.4),transparent 30%),
linear-gradient(135deg,rgba(8,17,32,0.72),rgba(8,17,32,0.1));
}

.hero-particles span{
background:var(--cyan);
box-shadow:0 0 22px rgba(6,182,212,0.9),0 0 50px rgba(59,130,246,0.36);
}

.hero-particles span:nth-child(2),
.hero-particles span:nth-child(5){
background:#3B82F6;
}

.hero-particles span:nth-child(3),
.hero-particles span:nth-child(6){
background:#7C3AED;
}

.hero-eyebrow,
.hero-floating-card{
border-color:var(--border);
background:linear-gradient(145deg,rgba(255,255,255,0.13),rgba(255,255,255,0.045));
box-shadow:0 20px 70px rgba(0,0,0,0.32),inset 0 1px 0 rgba(255,255,255,0.14);
}

.rotating-keywords{
color:#06B6D4;
text-shadow:0 0 26px rgba(6,182,212,0.48);
}

.hero-btn-primary,
.cta-btn,
.btn-blue,
.btn-primary,
.submit-btn{
background:linear-gradient(135deg,#3B82F6 0%,#7C3AED 52%,#06B6D4 100%);
color:#ffffff;
border:1px solid rgba(255,255,255,0.16);
box-shadow:0 14px 38px rgba(59,130,246,0.28),0 0 28px rgba(6,182,212,0.14);
}

.hero-btn-secondary{
border-color:rgba(6,182,212,0.34);
background:rgba(255,255,255,0.075);
box-shadow:inset 0 1px 0 rgba(255,255,255,0.12);
}

.hero-btn-primary:hover,
.cta-btn:hover,
.submit-btn:hover{
box-shadow:0 18px 46px rgba(59,130,246,0.36),0 0 38px rgba(6,182,212,0.24);
}

.choose-path,
.founder,
.about,
.funnel-section,
.services,
.features,
.team{
position:relative;
background:linear-gradient(180deg,rgba(8,17,32,0.98),rgba(11,23,40,0.96));
color:var(--text);
overflow:hidden;
}

.choose-path::before,
.founder::before,
.about::before,
.funnel-section::before,
.vision-mission::before{
content:"";
position:absolute;
inset:0;
pointer-events:none;
background:
radial-gradient(circle at 12% 18%,rgba(59,130,246,0.16),transparent 32%),
radial-gradient(circle at 86% 70%,rgba(124,58,237,0.14),transparent 30%);
}

.choose-path .container,
.founder .container,
.about .container,
.funnel-section .container,
.vision-mission{
position:relative;
z-index:1;
}

.choose-path h2,
.founder h2,
.about h2,
.why-us h2,
.funnel-section h2{
color:#f8fbff;
text-shadow:0 0 28px rgba(59,130,246,0.2);
}

.choose-path h2,
.founder h2,
.about h2{
margin-bottom:28px;
}

.path-card,
.why-card,
.vm-card,
.card,
.feature-card,
.team-card,
.funnel-offer,
.funnel-outcomes,
.founder-text,
.contact-box,
.funnel-modal-content,
.slide-content{
position:relative;
background:linear-gradient(145deg,rgba(255,255,255,0.13),rgba(255,255,255,0.045));
border:1px solid var(--border);
box-shadow:0 24px 70px rgba(0,0,0,0.32),inset 0 1px 0 rgba(255,255,255,0.12);
backdrop-filter:blur(18px);
color:var(--text);
}

.path-card::before,
.why-card::before,
.vm-card::before,
.card::before,
.feature-card::before,
.team-card::before,
.funnel-offer::before,
.funnel-outcomes::before{
content:"";
position:absolute;
inset:-1px;
border-radius:inherit;
padding:1px;
background:linear-gradient(135deg,rgba(59,130,246,0.74),rgba(124,58,237,0.1),rgba(6,182,212,0.64));
-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
-webkit-mask-composite:xor;
mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
mask-composite:exclude;
opacity:0;
transition:opacity 0.35s ease;
pointer-events:none;
}

.path-card:hover::before,
.why-card:hover::before,
.vm-card:hover::before,
.card:hover::before,
.feature-card:hover::before,
.team-card:hover::before,
.funnel-offer:hover::before,
.funnel-outcomes:hover::before{
opacity:1;
}

.path-card:hover,
.why-card:hover,
.vm-card:hover,
.card:hover,
.feature-card:hover,
.team-card:hover{
transform:translateY(-8px);
box-shadow:0 30px 86px rgba(0,0,0,0.44),0 0 42px rgba(59,130,246,0.18);
}

.path-card h3,
.path-card h4,
.funnel-offer h3,
.funnel-outcomes h3,
.founder-text h3,
.vm-card h3,
.card h3,
.feature-card h3{
color:#ffffff;
}

.aem-card h3{
color:#06B6D4;
}

.ai-card h3{
color:#a78bfa;
}

.path-card ul li,
.funnel-offer ul li,
.funnel-outcomes ul li,
.about-text p,
.founder-text p,
.vm-card p,
.card p,
.feature-card p{
color:#c8d7eb;
}

.path-card ul li::before{
content:"\2713";
color:#06B6D4;
text-shadow:0 0 18px rgba(6,182,212,0.65);
}

.funnel-offer ul li::before,
.funnel-outcomes ul li::before{
content:"\2022";
color:#3B82F6;
text-shadow:0 0 16px rgba(59,130,246,0.65);
}

.about-image img,
.founder-image img{
border:1px solid rgba(6,182,212,0.34);
box-shadow:0 24px 80px rgba(0,0,0,0.42),0 0 36px rgba(6,182,212,0.16);
}

.founder-text{
padding:28px;
border-radius:14px;
}

.why-us{
position:relative;
background:url("../images/why-choose-us1.jpg") top center / cover no-repeat;
}

.why-us::before{
content:"";
position:absolute;
inset:0;
background:
radial-gradient(circle at 16% 18%,rgba(59,130,246,0.32),transparent 35%),
linear-gradient(180deg,rgba(8,17,32,0.82),rgba(8,17,32,0.94));
}

.why-overlay{
position:relative;
z-index:1;
}

.why-subtitle,
.funnel-subtext{
color:#b9cbe0;
}

.vision-mission{
position:relative;
padding:58px 0;
margin:0 auto;
}

.vm-card{
min-height:190px;
}

.carousel{
background:#081120;
border-top:1px solid rgba(59,130,246,0.18);
border-bottom:1px solid rgba(59,130,246,0.18);
}

.slide::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(8,17,32,0.72),rgba(8,17,32,0.08) 42%,rgba(8,17,32,0.42));
pointer-events:none;
}

.slide-content{
z-index:2;
border-radius:14px;
}

.slide-content h2{
color:#ffffff;
}

.slide-content p{
color:#d8e7f6;
}

.footer{
background:
radial-gradient(circle at 18% 12%,rgba(59,130,246,0.2),transparent 28%),
linear-gradient(135deg,#050b15,#081120 58%,#0b1530);
border-top:1px solid rgba(6,182,212,0.24);
box-shadow:0 -20px 70px rgba(0,0,0,0.3);
}

.footer p,
.footer-links a{
color:#b9cbe0;
}

.footer-links a:hover,
.social-icons a:hover{
color:#ffffff;
}

.social-icons a{
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.14);
color:#dbeafe;
backdrop-filter:blur(12px);
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.12);
color:#93a9bd;
}

.contact-modal,
.funnel-modal{
background:rgba(2,8,18,0.82);
backdrop-filter:blur(12px);
}

.contact-box,
.funnel-modal-content{
background:linear-gradient(145deg,rgba(14,28,50,0.94),rgba(8,17,32,0.94));
border-radius:16px;
}

.contact-box h2{
color:#ffffff;
}

.contact-box input,
.contact-box select,
.contact-box textarea{
background:rgba(255,255,255,0.08);
border:1px solid rgba(148,163,184,0.28);
color:#ffffff;
outline:none;
}

.contact-box input::placeholder,
.contact-box textarea::placeholder{
color:#9fb3c8;
}

.contact-box input:focus,
.contact-box select:focus,
.contact-box textarea:focus{
border-color:#06B6D4;
box-shadow:0 0 0 3px rgba(6,182,212,0.16),0 0 24px rgba(6,182,212,0.12);
}

.contact-box select option{
background:#081120;
color:#ffffff;
}

.close-btn,
.funnel-modal .close-btn{
color:#ffffff;
background:rgba(255,255,255,0.1);
border:1px solid rgba(255,255,255,0.16);
box-shadow:0 8px 30px rgba(0,0,0,0.32);
}

@media(max-width:768px){
nav ul{
background:rgba(8,17,32,0.96);
border-top:1px solid rgba(59,130,246,0.22);
box-shadow:0 18px 52px rgba(0,0,0,0.42);
backdrop-filter:blur(18px);
}

nav ul li a{
color:#eaf2ff;
}
}

/* Logo-friendly header */

header{
background:
linear-gradient(135deg,rgba(255,255,255,0.94),rgba(229,242,255,0.9) 42%,rgba(218,232,255,0.92)),
radial-gradient(circle at 8% 0%,rgba(6,182,212,0.28),transparent 34%),
radial-gradient(circle at 86% 18%,rgba(124,58,237,0.2),transparent 30%);
color:#07152a;
border-bottom:1px solid rgba(59,130,246,0.22);
box-shadow:0 18px 56px rgba(8,17,32,0.2);
backdrop-filter:blur(18px);
}

.logo{
background:#ffffff;
border:1px solid rgba(59,130,246,0.16);
box-shadow:0 10px 28px rgba(8,17,32,0.12);
}

nav ul li a{
position:relative;
color:#0a1a33;
font-family:"Inter",Arial,sans-serif;
font-size:15px;
font-weight:800;
letter-spacing:0.01em;
border-radius:999px;
}

nav ul li a:hover{
color:#ffffff;
background:linear-gradient(135deg,#3B82F6,#7C3AED 58%,#06B6D4);
border-color:rgba(255,255,255,0.5);
box-shadow:0 12px 30px rgba(59,130,246,0.28),0 0 24px rgba(6,182,212,0.16);
}

.menu-toggle{
color:#ffffff;
background:linear-gradient(135deg,#3B82F6,#7C3AED);
border-color:rgba(255,255,255,0.38);
box-shadow:0 10px 26px rgba(59,130,246,0.25);
}

@media(max-width:768px){
nav ul{
background:linear-gradient(180deg,rgba(248,251,255,0.98),rgba(229,242,255,0.98));
border-top:1px solid rgba(59,130,246,0.18);
}

nav ul li a{
color:#0a1a33;
}
}

/* MOTION, TYPOGRAPHY, VISUAL SYSTEMS */

h1,
h2,
h3,
h4,
.gradient-heading{
font-family:"Sora","Inter",Arial,sans-serif;
letter-spacing:0;
font-weight:800;
}

h2,
.gradient-heading{
font-size:clamp(34px,4vw,58px);
line-height:1.05;
font-weight:800;
}

h3{
line-height:1.18;
}

p,
li,
input,
select,
textarea,
button,
a{
font-family:"Inter",Arial,sans-serif;
}

.section-kicker{
display:inline-flex;
align-items:center;
gap:8px;
margin-bottom:16px;
color:#7dd3fc;
font-size:13px;
font-weight:800;
letter-spacing:0.12em;
text-transform:uppercase;
}

.section-kicker::before{
content:"";
width:28px;
height:1px;
background:linear-gradient(90deg,#3B82F6,#06B6D4);
box-shadow:0 0 14px rgba(6,182,212,0.72);
}

.gradient-heading{
background:linear-gradient(110deg,#ffffff 0%,#93c5fd 32%,#a78bfa 62%,#67e8f9 100%);
background-size:220% auto;
-webkit-background-clip:text;
background-clip:text;
color:transparent;
animation:gradientTextFlow 8s ease-in-out infinite alternate;
}

.motion-card{
transform-style:preserve-3d;
will-change:transform;
transition:transform 0.35s ease,box-shadow 0.35s ease,border-color 0.35s ease;
overflow:hidden;
}

.motion-card::after{
content:"";
position:absolute;
inset:0;
background:radial-gradient(circle at var(--glow-x,50%) var(--glow-y,50%),rgba(6,182,212,0.2),transparent 30%);
opacity:0;
transition:opacity 0.25s ease;
pointer-events:none;
}

.motion-card:hover::after{
opacity:1;
}

[data-reveal]{
opacity:0;
transform:translateY(34px);
}

.service-icon{
position:relative;
display:inline-flex;
width:46px;
height:46px;
margin-bottom:18px;
border-radius:12px;
background:linear-gradient(135deg,rgba(59,130,246,0.2),rgba(124,58,237,0.2));
border:1px solid rgba(255,255,255,0.16);
box-shadow:inset 0 1px 0 rgba(255,255,255,0.18),0 0 26px rgba(59,130,246,0.16);
}

.service-icon::before,
.service-icon::after,
.service-icon i{
content:"";
position:absolute;
inset:12px;
border:2px solid #67e8f9;
border-radius:50%;
transition:transform 0.4s ease,border-radius 0.4s ease,border-color 0.4s ease;
}

.service-icon::after{
inset:17px;
border-color:#a78bfa;
}

.service-icon i{
inset:21px;
border:none;
background:#3B82F6;
box-shadow:0 0 16px rgba(59,130,246,0.78);
}

.motion-card:hover .service-icon::before{
transform:rotate(45deg) scale(0.92);
border-radius:6px;
border-color:#3B82F6;
}

.motion-card:hover .service-icon::after{
transform:rotate(-35deg) scale(1.18);
border-radius:5px;
border-color:#06B6D4;
}

.visual-systems,
.industries-section{
position:relative;
padding:96px 0;
background:linear-gradient(180deg,rgba(8,17,32,0.98),rgba(10,21,39,0.98));
overflow:hidden;
}

.visual-systems::before,
.industries-section::before{
content:"";
position:absolute;
inset:0;
background:
radial-gradient(circle at 20% 16%,rgba(59,130,246,0.18),transparent 30%),
radial-gradient(circle at 78% 78%,rgba(124,58,237,0.18),transparent 34%);
pointer-events:none;
}

.visual-grid,
.industries-section .container{
position:relative;
z-index:1;
}

.visual-grid{
display:grid;
grid-template-columns:0.9fr 1.1fr;
gap:54px;
align-items:center;
}

.visual-copy p,
.industries-intro{
font-size:18px;
color:#c8d7eb;
max-width:640px;
margin-top:18px;
}

.visual-metrics{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:14px;
margin-top:30px;
}

.visual-metrics div{
padding:18px;
border-radius:12px;
background:rgba(255,255,255,0.07);
border:1px solid rgba(255,255,255,0.12);
}

.visual-metrics strong{
font-family:"Sora","Inter",Arial,sans-serif;
font-size:34px;
color:#ffffff;
line-height:1;
}

.visual-metrics span{
display:block;
margin-top:6px;
color:#a9bdd5;
font-size:13px;
font-weight:700;
}

.workflow-board{
position:relative;
display:grid;
grid-template-columns:1fr 72px 1fr 72px 1fr;
align-items:center;
min-height:320px;
padding:30px;
border-radius:18px;
background:linear-gradient(145deg,rgba(255,255,255,0.13),rgba(255,255,255,0.045));
border:1px solid var(--border);
box-shadow:0 28px 86px rgba(0,0,0,0.35),0 0 60px rgba(59,130,246,0.1);
backdrop-filter:blur(18px);
}

.workflow-node{
position:relative;
z-index:2;
padding:20px;
min-height:164px;
border-radius:14px;
background:rgba(8,17,32,0.64);
border:1px solid rgba(255,255,255,0.14);
box-shadow:inset 0 1px 0 rgba(255,255,255,0.12);
}

.workflow-node span{
display:inline-flex;
margin-bottom:18px;
font-size:12px;
font-weight:800;
color:#06B6D4;
}

.workflow-node strong,
.workflow-node small{
display:block;
}

.workflow-node strong{
font-size:20px;
color:#ffffff;
}

.workflow-node small{
margin-top:8px;
color:#a9bdd5;
}

.workflow-line{
height:2px;
background:linear-gradient(90deg,rgba(59,130,246,0.25),rgba(6,182,212,0.95));
box-shadow:0 0 18px rgba(6,182,212,0.44);
}

.workflow-pulse{
position:absolute;
width:14px;
height:14px;
border-radius:50%;
background:#06B6D4;
box-shadow:0 0 24px rgba(6,182,212,0.9);
left:28px;
top:50%;
animation:workflowPulse 5.2s linear infinite;
}

.industries-section{
text-align:left;
}

.industries-section .gradient-heading{
max-width:880px;
}

.industries-intro{
max-width:760px;
margin-top:18px;
margin-bottom:36px;
}

.industries-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:22px;
}

.industry-card{
position:relative;
min-height:235px;
padding:26px;
border-radius:18px;
background:linear-gradient(145deg,rgba(255,255,255,0.13),rgba(255,255,255,0.045));
border:1px solid var(--border);
box-shadow:0 24px 70px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.12);
backdrop-filter:blur(18px);
color:var(--text);
}

.industry-card h3{
font-size:22px;
color:#ffffff;
margin-bottom:10px;
}

.industry-card p{
color:#c8d7eb;
font-size:15px;
}

.training-card{
grid-column:span 3;
min-height:auto;
display:grid;
grid-template-columns:auto 1fr;
column-gap:18px;
align-items:center;
}

.training-card .service-icon{
grid-row:span 2;
margin-bottom:0;
}

@keyframes gradientTextFlow{
0%{background-position:0% center;}
100%{background-position:100% center;}
}

@keyframes workflowPulse{
0%{left:28px;opacity:0;}
8%,92%{opacity:1;}
100%{left:calc(100% - 42px);opacity:0;}
}

@media(max-width:1020px){
.visual-grid,
.industries-grid{
grid-template-columns:1fr;
}

.training-card{
grid-column:auto;
display:block;
}

.training-card .service-icon{
margin-bottom:18px;
}

.workflow-board{
grid-template-columns:1fr;
gap:16px;
}

.workflow-line{
width:2px;
height:38px;
margin:auto;
}

.workflow-pulse{
display:none;
}
}

@media(max-width:768px){
.visual-systems,
.industries-section{
padding:72px 0;
}

h2,
.gradient-heading{
font-size:clamp(30px,9vw,42px);
}

.visual-metrics,
.industries-grid{
grid-template-columns:1fr;
}
}

@media(prefers-reduced-motion:reduce){
.gradient-heading,
.workflow-pulse{
animation:none;
}

[data-reveal]{
opacity:1;
transform:none;
}
}
