/* GLOBAL SECTION ALIGNMENT */

.hero,
.learners-section,
/* .stack-section, */
.workshop-section
.skill-scroll-section, 
/* .trending-section,  */
/* .career-section,  */
/* .final-cta-section,  */
.faq-section {

max-width:1200px;
margin-left:auto;
margin-right:auto;

padding-left:20px;
padding-right:20px;

box-sizing:border-box;

}

.learners-container,
.stack-wrapper,
.workshop-container,
.skill-scroll-container,
.trending-grid,
.career-container,
.cta-container,
.faq-container{

width:100%;
margin-left:auto;
margin-right:auto;

}

:root{
  --bg1:#021423;
  --bg2:#041f38;
  --card:#062b4f;
  --glow:#2e8bff;
}
*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins,sans-serif}
body{
  background: radial-gradient(rgb(0, 56, 92) 0%, rgb(0, 28, 44) 100%);
  color:#fff;
  overflow-x:hidden;
  scroll-behavior:smooth;
  
}
a{text-decoration:none;color:inherit;}
section{padding:4rem 0rem}
.container{max-width:1200px;margin:auto}

/* ===== NAVBAR ===== */


/* HEADER */
.main-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1300px;
  z-index: 9999;
  padding: 16px 32px;
  background: radial-gradient(rgb(0, 56, 92) 0%, rgb(0, 28, 44) 100%);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  transition: all 0.4s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header.scrolled {
   /* background: rgba(1, 14, 30, 0.65);  */ 
  backdrop-filter: blur(15px);        /* strong blur */
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08); /* subtle border */
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);      /* soft shadow for depth */
  padding: 12px 32px;                           /* maintain spacing */
  border-radius: 12px;                           /* pill shape */
  transition: all 0.4s ease;
}

/* Container */
.container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img { height: 50px; transition: 0.3s ease; }

/* Nav Links */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover { color: #7ed957; }

/* CTA Button */
.cta-btn {
  background: #7ed957;
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 500;
  user-select: none;
}
.down-icon { transition: transform 0.3s ease; }

.dropdown-menu {
  position: absolute;
  top: 38px;
  left: 0;
  background: rgba(3, 20, 47, 0.95);
  border-radius: 8px;
  padding: 8px 0;
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 999;
}

.dropdown-menu a {
  padding: 10px 16px;
  color: #fff;
  transition: 0.3s;
}
.dropdown-menu a:hover {
  background: rgba(126, 217, 87, 0.15);
  color: #7ed957;
}

/* Desktop hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu { display: flex; animation: fadeIn 0.3s ease; }
  .dropdown:hover .down-icon { transform: rotate(180deg); }
  .mobile-header { display: none; }
}

/* Hamburger */
.hamburger { display: none; font-size: 26px; cursor: pointer; color: #fff; }

/* Mobile */
@media (max-width: 768px) {
  .hamburger { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(1,14,30,0.95); /* slightly darker glass */
    backdrop-filter: blur(14px);
    gap: 28px;
    display: none;
    padding-top: 60px;
    z-index: 99999; /* ensure it stays above all */
  }

  .nav-links.active { display: flex; animation: fadeIn 0.3s ease; }

  .nav-links a {
    font-size: 24px;
    padding: 14px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    width: 70%;
    text-align: center;
  }

  /* MOBILE CLOSE BUTTON */
  .mobile-header {
    position: absolute;
    top: 30px;
    right: 32px;
    z-index: 100000; /* highest priority */
  }

  .close-menu {
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    user-select: none;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    padding-left: 0;
    width: 100%;
    text-align: center;
    display: none; /* start closed */
  }

  .dropdown-menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* Animation */
@keyframes fadeIn { from {opacity:0; transform:translateY(-10px);} to {opacity:1; transform:translateY(0);} }


/* ===== HERO ===== */

.hero{
  min-height:80vh;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:2rem;
  
 /* margin-top:70px;  for fixed nav */
}
.hero h1{font-size:2.2rem;line-height:1.2}
.hero p{opacity:.8;margin:1rem 0 2rem}
.auth button{
  width:100%;
  padding:1rem;
  border-radius:999px;
  border:none;
  margin-bottom:1rem;
  font-weight:600;
}
/* Section Background */
.auth-section {
   
  /*  padding: 40px 20px; */
    text-align: center;
}

/* Top Text */
.auth-top-text {
    color: #cfe8f3;
    font-size: 16px;
    margin-bottom: 25px;
}

.auth-top-text strong {
    color: #ffffff;
}

/* Button Container */
.auth {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Common Button Style */
.auth a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Google Button */
.google-btn {
    background: #7ed957;
    color: #0b2a1f;
    box-shadow: 0 4px 0 #5cbf38;
}

.google-btn img {
    width: 22px;
}

/* Google Hover Effect */
.google-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(126, 217, 87, 0.4);
}

/* LinkedIn Button */
.linkedin-btn {
    background: transparent;
    border: 2px solid #7ed957;
    color: #7ed957;
}

/* LinkedIn Hover */
.linkedin-btn:hover {
    background: #7ed957;
    color: #062f45;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 600px) {
    .auth a {
        font-size: 16px;
        padding: 14px;
    }
}

/* floating hero card */
.hero-card{
  /* background:linear-gradient(135deg,#072a4d,#041f38); */
  border-radius:28px;
  padding:0; /* remove padding so image fits properly */
  overflow:hidden; /* important for rounded image edges */
  /* box-shadow:0 40px 80px rgba(0,0,0,.6); */
  animation:float 6s ease-in-out infinite;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* inner wrapper */
.hero-card-inner{
  /* width:100%; */
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

/* image styling */
.hero-card-inner img{
  width:100%;
  max-width:520px;
  border-radius:22px;
  display:block;
}


/* floating animation */
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}


/* ===== Typing Highlight Effect ===== */

.typing-wrap{
 
  padding:5px 14px;
  border-radius:6px;
  display:inline-block;
  color:#ffd66b;
  font-weight:700;
  position:relative;
}

/* blinking cursor */
.typing-wrap::after{
  content:"|";
  margin-left:6px;
  animation:blink 1s infinite;
}

@keyframes blink{
  0%,100%{opacity:1}
  50%{opacity:0}
}


/* ===== COMPANY STRIP ===== */
.strip{
  background:var(--bg2);
  border-radius:30px;
  padding:3rem;
  text-align:center;
}
.logos{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-top:2rem;
  opacity:.85;
}




/* ===== WHY STACK SECTION ===== */

.stack-section{
padding:40px 14%;
/* background:#061c2f; */
color:#fff;
font-family:Inter,Arial,sans-serif;
}

/* WRAPPER */

.stack-wrapper{
display:flex;
justify-content:space-between;
align-items:revert;
/* gap:40px; */
flex-wrap:wrap;
}

/* STACK AREA */

.stack-cards{
position:relative;
width:520px;
height:340px;
margin-top:-10px;
}

/* CARD STYLE */

.stack-card{
position:absolute;
padding:18px 22px;
border-radius:16px;

background:linear-gradient(
180deg,
rgba(64,106,255,.35),
rgba(64,106,255,.12)
);

border-top:2px solid #406AFF; 

border-left:1px solid rgba(255,255,255,.08);
border-right:1px solid rgba(255,255,255,.05);
border-bottom:1px solid rgba(255,255,255,.05);

backdrop-filter:blur(10px);

box-shadow:0 -4px 20px rgba(0,0,0,.45);

cursor:pointer;
transition:.35s ease;
font-weight:600;

width:90%;
}

/* DESCRIPTION */

.stack-card p{
margin-top:10px;
font-size:14px;
line-height:1.6;
color:#ffffffb2;

height:0;
overflow:hidden;

transition:height .35s ease;
}

.stack-card.active p{
height:auto;
}

.stack-card.active{
z-index:999 !important;
}

/* ACTIVE CARD */

.stack-card.active p{
max-height:200px;
opacity:1;
}

/* DESKTOP STACK */

.stack-card:nth-child(1){
top:0;
left:0;
width:90%;
z-index:1;
}

.stack-card:nth-child(2){
top:55px;
left:40px;
width:92%;
z-index:2;
}

.stack-card:nth-child(3){
top:110px;
left:80px;
width:94%;
z-index:3;
}

.stack-card:nth-child(4){
top:165px;
left:120px;
width:96%;
z-index:4;
}

.stack-card:nth-child(5){
top:220px;
left:160px;
/* width:98%; */
z-index:5;
}

/* RIGHT CONTENT */

.stack-content{
max-width:460px;
margin-bottom:0;
}

.stack-content h5{
color:#7aaeff;
margin-bottom:10px;
}

.stack-content h2{
font-size:30px;
line-height:1.3;
margin-bottom:18px;
}

.stack-content span{
background:linear-gradient(90deg,#ffe9a6,#ffd76a,#ffcc4d);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.stack-content ul{
list-style:none;
padding:0;
}

.stack-content li{
margin-bottom:10px;
font-size:17px;
padding-left:26px;
position:relative;
}

.stack-content li::before{
content:"✔";
position:absolute;
left:0;
color:#3ee07d;
}

/* TABLET */

/* TABLET + MOBILE */

@media(max-width:1024px){

.stack-wrapper{
flex-direction:column;
}

/* TEXT FIRST */

.stack-content{
order:-1;
margin-bottom:20px;
text-align:center;
}

/* STACK AREA */

.stack-cards{
position:relative;
height:auto;
width:100%;
margin-top:10px;
}

/* STACK CARDS */

.stack-card{
position:relative !important;
left:0 !important;
top:auto !important;
width:100% !important;

margin-top:-22px;
padding:18px 20px;
}

.stack-card:first-child{
margin-top:0;
}

.stack-content h2{
font-size:30px;
}

.stack-card p{
font-size:14px;
line-height:1.5;
}

}

/* MOBILE */

@media(max-width:768px){

.stack-wrapper{
flex-direction:column;
}

/* TEXT FIRST */

.stack-content{
order:-1;
margin-bottom:15px;
text-align:center;
}

/* STACK AREA */

.stack-cards{
height:auto;
width:100%;
margin-top:0;
}

/* MOBILE STACK */

.stack-card{
position:relative!important;
left:0!important;
top:auto!important;
width:100%!important;

margin-top:-24px;
padding:18px 20px;
}

.stack-card:first-child{
margin-top:0;
}

.stack-content h2{
font-size:26px;
}

.stack-card p{
font-size:13px;
}

}

/* SMALL MOBILE */

@media(max-width:480px){

.stack-section{
padding:0 6%;
}

.stack-content h2{
font-size:24px;
}

}



/* ===== SKILL SCROLL ===== */
.skills{
  background:var(--bg2);
  border-radius:28px;
  padding:2.5rem;
  overflow:hidden;
}
.track{
  display:flex;
  gap:1rem;
  animation:scroll 25s linear infinite;
}
.track span{
  padding:.7rem 1.6rem;
  background:var(--card);
  border-radius:999px;
  white-space:nowrap;
}
@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ===== STORIES / TESTIMONIALS ===== */
.stories{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:2rem;
}
.story{
  background:#052644;
  border-radius:22px;
  overflow:hidden;
  transform:translateY(40px);
  opacity:0;
  transition:.8s ease;
}
.story img{
  width:100%;
  height:280px;
  object-fit:cover;
}
.story .txt{padding:1rem}

/* ===== CTA ===== */
.cta{
  background:linear-gradient(135deg,#7ed957,#4fbf2a);
  border-radius:32px;
  text-align:center;
  padding:5rem 2rem;
  color:#000;
}
.cta button{
  margin-top:1.5rem;
  padding:1rem 2.8rem;
  border-radius:999px;
  border:none;
  font-weight:700;
}


/* FAQ ACCORDION */
.faq-section {
  padding: 1rem 2rem;

}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-container h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #fff;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  background: #081a34;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #041526;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.faq-question:hover {
  background: #072047;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 1rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/* ACTIVE OPEN STATE */
.faq-item.active .faq-answer {
  max-height: 300px; /* adjust if needed */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .faq-container h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}


/* ===== FOOTER ===== */
footer{
  background:#010d18;
  padding:4rem 2rem 2rem;
}
.footer{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:3rem;
}
footer ul{list-style:none}
footer li{opacity:.7;margin:.5rem 0}
.copy{
  margin-top:3rem;
  text-align:center;
  opacity:.5;
}

/* ===== REVEAL ===== */
.reveal{opacity:0;transform:translateY(60px);transition:1s ease}
.reveal.active{opacity:1;}

#topBtn{
  position:fixed;bottom:2rem;right:2rem;padding:1rem;border-radius:50%;border:none;background:#7ed957;color:#000;cursor:pointer;display:none;font-weight:700;
}

@media(max-width:900px){
  .hero,.why{grid-template-columns:1fr}
  .hero h1{font-size:1.5rem}
}


/* ===== LEARNERS SECTION ===== */
/* SECTION */
.learners-section{
padding-top:0!important;
}

/* CONTAINER */

.learners-container{

max-width:1400px;
margin:auto;

background:linear-gradient(180deg,#0e355d,#07263f);

padding:30px 0 35px;

border-radius:36px;

position:relative;

overflow:hidden;

}

/* TEXT */

.subtitle{

text-align:center;

opacity:.7;

font-size:15px;

color:#cfe3ff;

margin-bottom:5px;

}

.title{

text-align:center;

font-size:42px;

font-weight:700;

margin-bottom:28px;

background:linear-gradient(90deg,#ffffff,#f7e394);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

/* MARQUEE */

.marquee-wrapper{

display:flex;
flex-direction:column;

gap:24px;

overflow:hidden;

}

.marquee-row{

overflow:hidden;

}

.marquee-track{

display:flex;

gap:16px;

width:max-content;

will-change:transform;

transform:translate3d(0,0,0);

}

/* CARD */

.learner-card{

position:relative;

/* main blue gradient */
background:radial-gradient(circle at top,
rgb(57,112,182) 0%,
rgb(0,40,91) 100%);

border-radius:14px;

padding:18px 22px;

height:73px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

border:1px solid rgba(110,150,255,.35);

box-shadow:
0 8px 25px rgba(0,0,0,.35),
0 0 18px rgba(70,120,255,.25);

transition:.35s;

flex-shrink:0;

overflow:hidden;

}

/* glass highlight */

.learner-card::before{

content:"";

position:absolute;

top:0;
left:0;
right:0;

height:45%;

background:linear-gradient(
180deg,
rgba(255,255,255,.25),
rgba(255,255,255,0)
);

opacity:.35;

pointer-events:none;

}

/* hover */

.learner-card:hover{

transform:translateY(-6px);

box-shadow:
0 12px 35px rgba(0,0,0,.45),
0 0 28px rgba(70,120,255,.45);

}

/* COMPANY LOGO */

.company{

height:18px;

margin-bottom:10px;

filter:brightness(0) invert(1);

opacity:.95;

}

/* PERSON */

.person{

display:flex;

align-items:center;

gap:8px;

font-size:14px;

color:#e8f1ff;

font-weight:500;

}

.person img{

width:24px;

height:24px;

border-radius:50%;

border:1px solid rgba(255,255,255,.3);

}

/* RESPONSIVE */

@media(max-width:768px){

.title{
font-size:30px;
}

.marquee-track{
gap:12px;
}

.learner-card{

min-width:180px;

height:65px;

padding:12px 16px;

}

}


/* ===== WORKSHOP SECTION ===== **************/

.workshop-section{
padding: 45px 25px;
/* background:#08325e; */
font-family:Arial, sans-serif;
}

.workshop-container{
max-width:1300px;
margin:auto;
}

.workshop-title{
margin:0;
  font-size:28px;
  font-weight:700;
}

.workshop-subtitle{
color:#fff;
margin-bottom:40px;
}
.view-more-btn{
  text-decoration:none;
  padding:10px 22px;
  border:2px solid #2d7cff;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
  color:#2d7cff;
  transition:0.3s ease;
}

.view-more-btn:hover{
  background:#2d7cff;
  color:#fff;
}

/* Responsive */
@media(max-width:768px){
  .trending-header{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }
}

/* ===== STEPS ===== */

.steps-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.step-card{
background:radial-gradient(rgb(0, 56, 92) 0%, rgb(0, 28, 44) 100%);
border:1px solid #d5dbe0;
padding:22px;
border-radius:14px;
transition:0.3s;
}

.step-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.step-label{
font-size:13px;
letter-spacing:1px;
margin-bottom:8px;
color:#fff;
}

.step-text{
font-size:18px;
font-weight:500;
color:#fff;
}

/* ===== TESTIMONIAL SLIDER ===== */

.testimonial-box{
/* margin-top:15px; */
background:radial-gradient(rgb(0, 56, 92) 0%, rgb(0, 28, 44) 100%);
padding:70px 40px;
border-radius:22px;
text-align:center;
position:relative;
overflow:hidden;
}

.testimonial-box:before{
content:"“";
position:absolute;
font-size:160px;
color:#f5d9a6;
left:-1px;
top:10px;
font-family:serif;
opacity:0.6;
}

.testimonial-slide{
display:none;
animation:fade 0.8s ease;
}

.testimonial-slide.active{
display:block;
}

@keyframes fade{
from{opacity:0}
to{opacity:1}
}

.testimonial-text{
font-size:22px;
line-height:1.6;
max-width:900px;
margin:auto;
color:#fff;
}

.testimonial-author{
margin-top:30px;
font-weight:600;
font-size:18px;
}

/* DOTS */

.dots{
margin-top:25px;
display:flex;
justify-content:center;
gap:12px;
}

.dot{
width:10px;
height:10px;
background:#c6c6c0;
border-radius:50%;
cursor:pointer;
transition:0.3s;
}

.dot.active{
background:#0b2d1f;
transform:scale(1.2);
}

/* RESPONSIVE */

@media(max-width:900px){

.steps-grid{
grid-template-columns:1fr;
}

.workshop-title{
font-size:30px;
}

}

/* ===== SKILL CATEGORY SECTION ===== */
/* ===== SCROLL SKILL CATEGORY ===== */

.skill-scroll-section{
padding:0px 20px;
/* background:radial-gradient(circle at top,#0b3d73,var(--bg1)); */
}

.skill-scroll-container{
max-width:1299px;
margin:auto;
background:radial-gradient(rgb(0, 56, 92) 0%, rgb(0, 28, 44) 100%);
padding:25px 25px;
border-radius:32px;
text-align:center;
overflow:hidden;
}

.skill-title{
font-size:22px;
color:#b9d4ec;
margin-bottom:35px;
}

.skill-title span{
color:#fff;
font-weight:700;
}

/* ===== MARQUEE ===== */

.skill-marquee{
overflow:hidden;
}

.skill-row{
display:flex;
gap:20px;
width:max-content;
padding:10px 0;
}

/* Scroll Animations */

.scroll-left{
animation:scrollLeft 30s linear infinite;
}

.scroll-right{
animation:scrollRight 30s linear infinite;
}

.skill-marquee:hover .skill-row{
animation-play-state:paused;
}

/* ===== CATEGORY PILL ===== */

.skill-pill{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
padding:10px 15px;
border-radius:40px;
background:rgba(10,55,95,0.7);
border:1px solid rgba(120,180,255,0.25);
min-width:200px;
transition:.3s;
}

.skill-pill:hover{
transform:translateY(-6px);
background:rgba(20,85,145,0.9);
box-shadow:0 0 25px rgba(70,140,255,0.35);
}

.skill-name{
font-weight:600;
color:#fff;
margin-bottom:5px;
}

.skill-count{
font-size:13px;
color:#8eb6da;
}

/* ===== STAR ===== */

.star{
font-size:20px;
color:#2e8bff;
display:flex;
align-items:center;
}

/* ===== ANIMATION ===== */

@keyframes scrollLeft{
0%{ transform:translateX(0); }
100%{ transform:translateX(-50%); }
}

@keyframes scrollRight{
0%{ transform:translateX(-50%); }
100%{ transform:translateX(0); }
}

.career-section {
    /* background: linear-gradient(180deg,#052a42,#021923); */
    padding: 2px 0;
    color: white;
    font-family: Arial;
}

.career-container {
    width: 90%;
    margin: auto;
    text-align: center;
	padding: 0px 8%;
}

.career-subtitle {
    color: #9ec3d8;
    margin-bottom: 5px;
}

.career-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.career-slider-wrapper {
    position: relative;
}

.career-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
}

.career-slider::-webkit-scrollbar {
    display: none;
}

/* Cards */

.career-card {
    min-width: 230px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.career-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.career-card:hover img {
    transform: scale(1.08);
}

/* Overlay */

.career-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    text-align: left;
}

.career-overlay h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.career-overlay p {
    font-size: 14px;
    color: #ccc;
}

/* Arrows */

.career-arrow {
    position: absolute;
    top: 40%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.career-arrow:hover {
    background: rgba(255,255,255,0.4);
}

.career-arrow.left {
    left: 5px;
}

.career-arrow.right {
    right: 5px;
}

/* Responsive */

@media(max-width:768px){
    .career-card{
        min-width: 180px;
        height: 250px;
    }
}

.final-cta-section {
     padding: 0px 9%;
    /* background: linear-gradient(180deg,#052a42,#021923); */
    position: relative;
    overflow: hidden;
}

/* GRID BACKGROUND */

.final-cta-section::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size:60px 60px;
    top:0;
    left:0;
}

/* CONTAINER */

.cta-container{
    width:90%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    position:relative;
    z-index:2;
}

/* LEFT CARD */

.cta-animation-card{
    width:45%;
    height:260px;
    background:linear-gradient(180deg,#0a3551,#08293f);
    border-radius:20px;
    position:relative;
    overflow:hidden;
    backdrop-filter:blur(10px);
    box-shadow:0 0 25px rgba(0,0,0,0.4);
}

/* FLOATING SKILLS */

.floating-skill{
    position:absolute;
    padding:10px 18px;
    background:#123f66;
    border-radius:25px;
    font-size:14px;
    color:white;
    animation: floatSkill 4s ease-in-out infinite;
}

.skill1{ top:30px; left:40px; }
.skill2{ top:60px; right:40px; animation-delay:1s;}
.skill3{ bottom:30px; left:140px; animation-delay:2s;}

@keyframes floatSkill{
    0%,100%{ transform:translateY(0px); }
    50%{ transform:translateY(-12px); }
}

/* FLOATING ICONS */

.floating-icon{
    width:42px;
    position:absolute;
    background:white;
    border-radius:50%;
    padding:6px;
    animation: floatIcon 5s ease-in-out infinite;
}

.icon1{ top:110px; left:30px;}
.icon2{ top:20px; left:200px; animation-delay:1s;}
.icon3{ bottom:40px; right:40px; animation-delay:2s;}
.icon4{ bottom:100px; right:120px; animation-delay:3s;}

@keyframes floatIcon{
    0%,100%{ transform:translateY(0px); }
    50%{ transform:translateY(-15px); }
}

/* RIGHT CONTENT */

.cta-content{
    width:50%;
    color:white;
}

.cta-content h2{
    font-size:36px;
    line-height:1.4;
    margin-bottom:25px;
}

.cta-content span{
    color:#fbd38d;
}

/* BUTTON */

.cta-btn{
    background:#7ac142;
    color:black;
    padding:16px 40px;
    border:none;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 18px rgba(0,0,0,0.4);
}

/* RESPONSIVE */

@media(max-width:900px){

.cta-container{
    flex-direction:column;
}

.cta-animation-card,
.cta-content{
    width:100%;
    text-align:center;
}

}

.tcc-footer{
    background: linear-gradient(180deg,#08263d,#061a2b);
    color:#fff;
    padding:60px 8%;
    font-family:Arial;
}

.footer-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:40px;
}

/* Brand */
.footer-brand{
    flex:1.5;
}

.brand-logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:22px;
    font-weight:bold;
    margin-bottom:10px;
}

.brand-logo img{
    width:180px;
}

.developed{
    opacity:0.7;
    margin-bottom:25px;
}

/* Social */
.social-icons{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.social-icons a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1b4d7a;
    color:white;
    transition:0.3s;
}

.social-icons a:hover{
    background:#2a75bb;
    transform:translateY(-4px);
}

/* Download */
.download-area p{
    font-weight:bold;
    opacity:0.7;
    margin-bottom:10px;
}

.download-area img{
    width:160px;
}

/* Columns */
.footer-column{
    flex:1;
    min-width:200px;
}

.footer-column h4{
    margin-bottom:18px;
    opacity:0.8;
}

.footer-column a{
    display:block;
    color:#c9d6e2;
    text-decoration:none;
    margin-bottom:12px;
    transition:0.3s;
}

.footer-column a:hover{
    color:#66b3ff;
    padding-left:5px;
}

.footer-column p{
    margin-bottom:10px;
    opacity:0.85;
}

/* Google startup */
.google-startup{
    margin-top:20px;
    display:flex;
    align-items:center;
    gap:8px;
    opacity:0.8;
}

.google-startup img{
    width:70px;
}

/* Responsive */
@media(max-width:900px){
    .footer-container{
        flex-direction:column;
    }
}
.trending-section{
  padding: 0px 14%;
  font-family:Arial;
  
}

/* HEADER */
.trending-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
  width:100%;
}

.workshop-title{
  color:#ffffff;
  font-weight:700;
}

/* View More Button */
.view-more-btn{
  text-decoration:none;
  background:rgba(255,255,255,0.2);
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-weight:600;
  border:1px solid rgba(255,255,255,0.3);
  transition:0.3s;
}

.view-more-btn:hover{
  background:#ffffff;
  color:#0d6efd;
}

/* GRID */
.trending-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* GLASS CARD */
.course-card{
  /* background:rgba(255,255,255,0.15); */
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.2);
  box-shadow:0 8px 32px rgba(0,0,0,0.2);
  transition:0.4s;
  color:#fff;
}

.course-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.25);
}

/* TOP SECTION (UNIFORM COLOR) */
.course-top{
  padding:30px;
  color:white;
  position:relative;
  min-height:170px;
  background:linear-gradient(173deg, #0b2648, #112e57) !important;
}

/* REMOVE OLD COLORS */
.yellow,
.purple,
.green,
.red{
  background:linear-gradient(173deg, #0b2648, #112e57) !important;
}

.course-top h2{
  margin-top:20px;
  font-size:28px;
  line-height:1.1;
}

.tag{
  font-size:12px;
  letter-spacing:1px;
  opacity:0.9;
}

.discount{
  position:absolute;
  top:25px;
  right:20px;
  background:#ffffff;
  color:#0d6efd;
  font-size:12px;
  padding:5px 10px;
  border-radius:4px;
  font-weight:bold;
}

/* BODY */
.course-body{
  padding:25px;
}

.label{
  font-size:12px;
  color:#e0e0e0;
  margin-top:15px;
  letter-spacing:1px;
}

.divider{
  border-top:1px dashed rgba(255,255,255,0.4);
  margin:25px 0;
}

.view-btn{
  text-decoration:none;
  font-weight:bold;
  color:#ffffff;
  transition:0.3s;
}

.view-btn:hover{
  color:#cce3ff;
}


/* sub dropdown css ************************/
/* ==========================
   MAIN DROPDOWN
========================== */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px; /* 🔥 Increased width */
  background: radial-gradient(rgb(0, 56, 92) 0%, rgb(0, 28, 44) 100%);
  
  padding: 20px;
  border-radius: 12px;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  position: relative;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
}

/* ==========================
   SUB DROPDOWN
========================== */

.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  width: 250px;
  background: #032a52;
  padding: 15px;
  border-radius: 12px;
  display: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.dropdown-item:hover .sub-dropdown {
  display: block;
}

/* Add arrow indicator */
.dropdown-item > a::after {
  content: "▶";
  float: right;
  font-size: 12px;
  opacity: 0.6;
}



/*modal pop ******************************************************/
/* MODAL BACKGROUND */
.learner-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  background: #324a63;
  width: 480px;
  border-radius: 14px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { transform: translateY(20px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}

.modal-company {
  text-align: center;
  margin-bottom: 20px;
}
.modal-company img {
  height: 40px;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

.modal-user {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.modal-user img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.modal-achievements {
  list-style: none;
  padding: 0;
}
.modal-achievements li {
  margin-bottom: 10px;
  font-size: 14px;
}
.modal-achievements .highlight {
  color: #7fb5ff;
  font-weight: 600;
}


