* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    color: #222;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

/* ================= HEADER ================= */

.elite-header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  height: fit-content;
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  z-index:9999;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:70px;
}

.logo img{
  height:60px;
}

/* Nav Links Desktop */
.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links li a{
  text-decoration:none;
  font-weight:600;
  color:#222;
  transition:0.3s;
}

.nav-links li a:hover{
  color:#ff6b00;
}

/* ================= HAMBURGER ================= */

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:25px;
  height:3px;
  background:#222;
  border-radius:3px;
  transition:0.4s;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .menu-toggle{
    display:flex;
  }

  .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    height:100vh;
    width:260px;
    background:#ffffff;
    flex-direction:column;
    padding-top:100px;
    align-items:center;
    gap:25px;
    box-shadow:-5px 0 20px rgba(0,0,0,0.1);
    transition:0.4s ease;
  }

  .nav-links.active{
    right:0;
  }

}



.header {
    background: #f2f3f7;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
  font-size:18px;
  margin-left: -20px;
  margin-right: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #000000d3;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

.btn-nav {
    background: #38bdf8;
    padding: 8px 16px;
    border-radius: 4px;
}



/* ELITE NAVBAR */

.elite-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  backdrop-filter: blur(15px);
  background: rgb(255, 255, 255);
  border-radius: 50px;
  padding: 10px 30px;
  z-index: 1000;
  transition: 0.3s;
}

.elite-header.scrolled {
  background: rgb(255, 255, 255);
}

#themeToggle {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: white;
}

.light-mode {
  background: #ffffff;
  color: #111;
}

.light-mode .software-section {
  background: #f5f7fa;
  color: #111;
}

.light-mode .filter-item {
  background: white;
  color: #111;
}
.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #38bdf8;
  width: 0%;
  z-index: 2000;
}

/* ================= HERO MULTI SLIDER ================= */

.hero-slider{
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Each Slide */
.hero-slide{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Active Slide */
.hero-slide.active{
    opacity: 1;
}

/* Dark Overlay */
.hero-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.5));
    top: 0;
    left: 0;
    z-index: 1;
}

/* Content */
.hero-content{
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    animation: fadeUp 1.2s ease forwards;
}

.hero-content h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 20px;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary{
    background: #ff6b00;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.4s;
}

.btn-primary:hover{
    transform: translateY(-4px);
}

.btn-secondary{
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-secondary:hover{
    background: #fff;
    color: #000;
}

/* Animation */
@keyframes fadeUp{
    from{opacity:0; transform:translateY(40px);}
    to{opacity:1; transform:translateY(0);}
}

/* Mobile */
@media(max-width:768px){

    .hero-content h1{
        font-size: 30px;
    }

    .hero-content p{
        font-size: 16px;
    }

    .hero-buttons{
        flex-direction: column;
    }

}


/* ULTIMATE HERO */

.ultimate-hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0ea5e9, #9333ea);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.glow-btn {
    background: #38bdf8;
    box-shadow: 0 0 20px #38bdf8;
}

.glow-outline {
    border: 2px solid white;
    background: transparent;
    color: white;
}

#particles {
    position: absolute;
    inset: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
}
/* COUNTERS */

.placement-preview {
    padding: 70px 0;
    text-align: center;
}

.counter-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.counter {
    font-size: 2.5rem;
    color: #0f172a;
}

/* SOFTWARE */

.software-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    text-align:start;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.filter-buttons {
    margin-bottom: 40px;
}

.filter-buttons button {
    padding: 10px 22px;
    margin: 8px;
    border: none;
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.filter-buttons button:hover,
.filter-buttons .active {
    background: #38bdf8;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.filter-item {
    background: rgba(247, 247, 247, 0.08);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    transition: 0.4s ease;
    position: relative;
    opacity: 1;
}

.filter-item img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.filter-item h3 {
    margin-bottom: 10px;
}

.filter-item p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ddd;
}

.filter-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #38bdf8;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}

.it-badge {
    background: #f97316;
}

.view-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #38bdf8;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.view-btn:hover {
    background: #0ea5e9;
}

/* ================= PLACEMENT AUTO SLIDER ================= */

.placement-gallery {
  padding: 10px 0;
  background: hsl(0, 0%, 100%);
  overflow: hidden;
}

.placement-slider {
  overflow: hidden;
  position: relative;
}

.placement-track {
  display: flex;
  width: max-content;
  gap: 30px;
  animation: scrollPlacement 60s linear infinite reverse;
}

.placement-card {
  min-width: 300px;
  flex-shrink: 0;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.placement-card img {
  width: 100%;
  height: 400px;  
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

/* Hover effect */
.placement-card:hover {
  transform: scale(1.05);
}

/* Auto Slide Animation */
@keyframes scrollPlacement {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* LIGHTBOX */

.lightbox {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    inset: 0;
    background: rgba(0,0,0,0.8);
}

.lightbox img {
    max-width: 80%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

@media (max-width:768px) {

  .placement-card {
    min-width: 220px;
  }

  .placement-card img {
    height: 180px;
  }


  /* Mobile */
/* ===== MOBILE FIX FOR PLACEMENT SLIDER ===== */

@media (max-width:500px){

  .placement-slider{
    overflow:hidden;
  }

  .placement-track{
    gap:12px;
  }

  .placement-card{
    min-width:160px;   /* smaller card for mobile */
  }

  .placement-card img{
    width:100%;
    height: 400px;;       /* prevents image cut */
    object-fit:contain;
  }

}
}



/* ============================= */
/* ================= REVIEW SLIDER ================= */

.review-slider {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.review-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.review-card {
  min-width: 100%;
  padding: 40px;
 text-align: center;
 text-indent: 1%;
  background: lab(100% 0.01 -0.01);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  color: #000000;
}

.student-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #38bdf8;
}

.stars {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 15px;
  margin-bottom: 15px;
}

.review-card h4 {
  margin-bottom: 5px;
}

.review-card span {
  color: #38bdf8;
  font-size: 14px;
}

/* Buttons */

.review-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #38bdf8;
  border: none;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */

.review-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  background: #888;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background: #38bdf8;
}

/* ================= ULTRA COMPANY SLIDER ================= */

.company-section {
  padding: 10px 0;
  background: linear-gradient(135deg, #fcfcfd, hsl(0, 0%, 100%));
  text-align: center;
  color: rgb(0, 0, 0);
  overflow: hidden;
}

.company-section .section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 60px;
}

.company-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.company-track {
  display: flex;
  width: calc(250px * 16);
  animation: scroll 25s linear infinite;
}



.company-logo {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.company-logo img {
  max-width: 160px;
  max-height: 80px;
  transition: 0.4s ease;
}

.company-logo img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Smooth Infinite Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Gradient Fade Effect */
.company-slider::before,
.company-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.company-slider::before {
  left: 0;
  background: linear-gradient(to right, hsl(0, 0%, 100%) 0%, transparent 100%);
}

.company-slider::after {
  right: 0;
  background: linear-gradient(to left, hsl(0, 0%, 100%) 0%, transparent 100%);
}


/* Glow Border Animation */
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #38bdf8, #9333ea, #38bdf8);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.review-card:hover::before {
  opacity: 1;
}


/* TESTIMONIAL */
.testimonial{
  padding:80px 0;
  background:#fff;
  text-align:center;
  overflow:hidden;
}

.testimonial-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

.testimonial-track{
  display:flex;
  gap:40px;
  width:max-content;             /* important fix */
  animation:scrollLeft 25s linear infinite reverse;
}

.testimonial-slider:hover .testimonial-track{
  animation-play-state:paused;
}

.testimonial-item{
  min-width:200px;
  cursor:pointer;
  transition:0.4s;
}

.testimonial-item:hover{
  transform:translateY(-8px);
}

/* IMAGE */
.thumb{
  position:relative;
  border-radius:15px;
  overflow:hidden;
}

.thumb img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:15px;
}

/* PLAY BUTTON */
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:rgba(0,0,0,0.6);
  color:white;
  font-size:20px;
  width:50px;
  height:50px;
  line-height:50px;
  border-radius:50%;
}

.testimonial-item h4{
  margin-top:12px;
}

.testimonial-item p{
  font-size:14px;
  color:#666;
}

.video-popup{ 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:9999;
 } 
 
 .video-box{ 
  background:#fff; 
  padding:20px; border-radius:10px; 
  max-width:600px; width:90%; 
  text-align:center; position:relative;
 } 
 
 .video-box video{
   width:100%; border-radius:8px; 
  
  } 
  
  .close{ 
    position:absolute; 
    top:10px; right:15px;
     font-size:22px; cursor:pointer; }


/* SMOOTH SCROLL */
@keyframes scrollLeft{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

@media(max-width:700px){

  .testimonial-track{
    gap:20px;
  }

  .testimonial-item{
    min-width:140px;
  }

  .thumb img{
    width:90px;
    height:90px;
  }

}



/* FOOTER */

footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 30px 0;
}
/* FLOATING CONTACT BUTTONS */
.floating-contact{
position:fixed;
right:25px;
bottom:25px;
display:flex;
flex-direction:column;
gap:15px;
z-index:9999;
}

.floating-contact a{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:22px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
transition:0.3s;
animation:pulseGlow 2s infinite;
}

.whatsapp-btn{
background:#25D366;
}

.call-btn{
background:#0077ff;
}

.floating-contact a:hover{
transform:scale(1.15);
}

@keyframes pulseGlow{
0%{box-shadow:0 0 0 0 rgba(0,0,0,0.4);}
70%{box-shadow:0 0 0 15px rgba(0,0,0,0);}
100%{box-shadow:0 0 0 0 rgba(0,0,0,0);}
}

/* Mobile */
@media(max-width:768px){
.floating-contact{
right:15px;
bottom:15px;
}
}

/* PULSE ANIMATION */
@keyframes pulse{
0%{
box-shadow:0 0 0 0 rgba(0,0,0,0.4);
}
70%{
box-shadow:0 0 0 15px rgba(0,0,0,0);
}
100%{
box-shadow:0 0 0 0 rgba(0,0,0,0);
}
}

/* MOBILE ADJUST */
@media(max-width:768px){
.floating-contact{
right:15px;
bottom:15px;
}
}
/* DEMO POPUP */
.demo-popup{
position:fixed;
inset:0;
display:none;
justify-content:center;
align-items:center;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(8px);
z-index:9999;
animation:fadeIn 0.4s ease;
}

.demo-content{
background:rgba(255,255,255,0.95);
padding:35px;
width:380px;
border-radius:20px;
text-align:center;
box-shadow:0 20px 60px rgba(0,0,0,0.3);
animation:scaleUp 0.4s ease;
}

.demo-content h2{
margin-bottom:20px;
font-size:22px;
}

.demo-content input,
.demo-content select{
width:100%;
padding:12px;
margin:10px 0;
border-radius:8px;
border:1px solid #ccc;
outline:none;
transition:0.3s;
}

.demo-content input:focus,
.demo-content select:focus{
border-color:#38bdf8;
box-shadow:0 0 10px rgba(56,189,248,0.4);
}

.demo-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;            /* Button size */
  height: 40px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-close:hover {
  background: #ff4d4d;
  transform: rotate(90deg) scale(1.1);
}


@keyframes fadeIn{
from{opacity:0;}
to{opacity:1;}
}

@keyframes scaleUp{
from{transform:scale(0.8);}
to{transform:scale(1);}
}

/* FLOATING CONTACT */
.floating-contact{
position:fixed;
right:25px;
bottom:25px;
display:flex;
flex-direction:column;
gap:15px;
z-index:9999;
}

.floating-contact a{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
font-size:22px;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
transition:0.3s;
animation:pulse 2s infinite;
}

.whatsapp-btn{ background:#25D366; }
.call-btn{ background:#0077ff; }

.floating-contact a:hover{
transform:scale(1.15);
}

@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(0,0,0,0.4);}
70%{box-shadow:0 0 0 15px rgba(0,0,0,0);}
100%{box-shadow:0 0 0 0 rgba(0,0,0,0);}
}

/* LOADER */

.loader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-text {
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

/* SCROLL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.filter-item {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.filter-item:hover {
    transform: rotateY(8deg) rotateX(5deg) scale(1.05);
}

.filter-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, #38bdf8, #f97316, #38bdf8);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.filter-item:hover::before {
    opacity: 1;
}
.fade-section {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.fade-section.show {
  opacity: 1;
  transform: translateY(0);
}

body {
  cursor: none;
}

.cursor-glow {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #38bdf8;
  position: fixed;
  pointer-events: none;
  mix-blend-mode: difference;
  transition: 0.1s;
}

 
/* ================= MOBILE MENU FIX ================= */

@media(max-width:768px){

  .menu-toggle{
    display:flex;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
  }

  .nav-links{
    position:absolute;       /* changed from fixed */
    top:80px;                /* below header */
    right:0;
    height: fit-content;
    width:150px;
    border-radius: 10%;
    background:#ffffff;
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    gap:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);

    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:0.3s ease;
  }

  .nav-links.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

}





















/* PLACEMENT HERO */

.placement-hero{
height:90vh;
background:url("images/placement-bg.jfif") center/cover;
display:flex;
align-items:center;
text-align:center;
color:white;
}


/* STATS */

.placement-stats{
padding:80px 0;
background:#f5f7fa;
}

.stats-grid{
display:flex;
justify-content:center;
gap:60px;
flex-wrap:wrap;
}

.stat-box h2{
font-size:45px;
color:#ff6b00;
}


/* PLACEMENT SLIDER */

.placement-slider{
overflow:hidden;
}

.placement-track{
display:flex;
gap:30px;
animation:scrollPlacement 20s linear infinite;
}

@keyframes scrollPlacement{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}


/* TIMELINE */

.timeline{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
padding:60px;
}

.timeline-item{
background:white;
padding:25px;
border-radius:12px;
width:220px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
text-align:center;
}


/* SALARY */

.salary-grid{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
padding:60px;
}

.salary-card{
background:white;
padding:30px;
border-radius:12px;
width:220px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}


/* GALLERY */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
padding:60px;
}

.gallery-grid img{
width:100%;
border-radius:10px;
transition:0.4s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

.nav-links a.active{
color:#ff6b00;
}



















/* ================= PLACEMENT OVERVIEW ================= */

.placement-overview{
padding:90px 0;
background:#f8fafc;
}

.placement-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:20px;
}

.section-title{
font-size:34px;
font-weight:700;
margin-bottom:20px;
color:#0f172a;
}

.placement-desc{
font-size:16px;
line-height:1.7;
color:#555;
margin-bottom:18px;
}

/* FEATURES */

.placement-features{
margin-top:25px;
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.feature{
display:flex;
align-items:center;
gap:12px;
background:#fff;
padding:12px 16px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.feature i{
color:#ff6b00;
font-size:18px;
}

.feature:hover{
transform:translateY(-4px);
}

/* BUTTON */

.placement-btn{
margin-top:25px;
display:inline-block;
}

/* IMAGE */

.placement-image img{
width:100%;
border-radius:18px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
transition:0.4s;
}

.placement-image img:hover{
transform:scale(1.03);
}


/* ================= MOBILE ================= */

@media(max-width:768px){

.placement-grid{
grid-template-columns:1fr;
text-align:start;
}

.placement-features{
grid-template-columns:1fr;
}

}


/* ================= PLACEMENT PROCESS ================= */

.placement-process{
padding:90px 0;
background:#ffffff;
text-align:center;
}

.process-subtitle{
max-width:650px;
margin:10px auto 60px;
color:#555;
}

/* Timeline */

.process-timeline{
display:flex;
justify-content:space-between;
position:relative;
flex-wrap:wrap;
}

/* Line */

.process-timeline::before{
content:"";
position:absolute;
top:45px;
left:0;
width:100%;
height:4px;
background:#e5e7eb;
z-index:0;
}

/* Step */

.process-step{
width:18%;
position:relative;
z-index:2;
text-align:center;
}

/* Icon */

.process-icon{
width:80px;
height:80px;
background:#ff6b00;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
color:white;
font-size:28px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
transition:0.3s;
}

.process-icon:hover{
transform:scale(1.1);
}

/* Title */

.process-step h3{
margin-top:20px;
font-size:18px;
color:#0f172a;
}

/* Text */

.process-step p{
font-size:14px;
margin-top:10px;
color:#555;
line-height:1.5;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.process-timeline{
flex-direction:column;
align-items:center;
}

.process-timeline::before{
display:none;
}

.process-step{
width:100%;
margin-bottom:40px;
}

}


/* ================= PLACEMENT STATS ================= */

.placement-stats{
padding:90px 0;
background:#f5f7fa;
text-align:center;
}

.stats-subtitle{
max-width:650px;
margin:10px auto 50px;
color:#555;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* Card */

.stat-card{
background:#fff;
padding:40px 20px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:0.3s;
}

.stat-card:hover{
transform:translateY(-8px);
}

/* Icon */

.stat-card i{
font-size:35px;
color:#ff6b00;
margin-bottom:15px;
}

/* Number */

.stat-card h3{
font-size:36px;
color:#0f172a;
margin-bottom:10px;
}

/* Text */

.stat-card p{
font-size:16px;
color:#555;
}

/* Mobile */

@media(max-width:768px){

.stats-grid{
grid-template-columns:repeat(2,1fr);
}

}







/* ABOUT SECTION */

/* ABOUT HERO */

.about-hero{
background: linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.75)),
url("../images/about-banner.jfif");
background-size: cover;
background-position: center;
padding:120px 20px;
text-align:center;
color:#fff;
}

.about-hero-content h1{
font-size:42px;
font-weight:700;
margin-bottom:10px;
}

.about-hero-content p{
font-size:18px;
opacity:0.9;
}

.about-section,
.training-method{
padding:90px 20px;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-text h2{
font-size:32px;
margin-bottom:20px;
}

.about-text p{
margin-bottom:15px;
line-height:1.7;
color:#555;
}

.about-img img{
width:100%;
border-radius:10px;
}

.about-list{
margin-top:15px;
}

.about-list li{
margin-bottom:10px;
}


/* FACILITY */

.facility-section{
padding:90px 20px;
background:#f8fafc;
}

.section-title{
text-align:center;
font-size:32px;
margin-bottom:50px;
}

.facility-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.facility-card{
background:#fff;
padding:20px;
border-radius:10px;
text-align:center;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.facility-card img{
width:100%;
border-radius:8px;
margin-bottom:15px;
}



/* keep same layout on mobile */

@media(max-width:768px){

.about-grid{
grid-template-columns:1fr 1fr;
gap:20px;
}

.about-text h2{
font-size:20px;
}

.about-text p{
font-size:14px;
}

.about-img img{
width:100%;
}

}

/* CTA */

.about-cta{
background:hsl(0, 0%, 100%);
color:hsl(0, 100%, 0%);
padding:80px 20px;
text-align:center;
}

.cta-btn{
display:inline-block;
margin-top:20px;
background:#2563eb;
color:hwb(0 99% 1%);
padding:14px 30px;
border-radius:6px;
text-decoration:none;
}


/* RESPONSIVE */

@media(max-width:900px){

.about-grid{
grid-template-columns:1fr;
}

.facility-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.facility-grid{
grid-template-columns:1fr;
}

}











/* CONTACT HERO */


.contact-hero{
background: linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.75)),
url("../images/contact-banner.jfif");
background-size:cover;
background-position:center;
padding:120px 20px;
text-align:center;
color:#fff;
}

.hero-content h1{
font-size:42px;
margin-bottom:10px;
font-weight:700;
}

.hero-content p{
font-size:18px;
opacity:0.9;
margin-bottom:10px;
}

.breadcrumb{
font-size:14px;
opacity:0.8;
}

.breadcrumb a{
color:#fff;
text-decoration:none;
}

.breadcrumb a:hover{
text-decoration:underline;
}

.contact-actions{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:40px 10%;
}

.action-card{
background:#f1f5f9;
padding:20px;
text-align:center;
border-radius:8px;
text-decoration:none;
color:#111;
font-weight:600;
transition:0.3s;
}

.action-card span{
display:block;
font-size:28px;
margin-bottom:5px;
}

.action-card:hover{
background:#2563eb;
color:#fff;
}


.contact-layout{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
padding:80px 10%;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
padding:12px;
border:1px solid #ddd;
border-radius:5px;
}

.contact-form button{
background:#2563eb;
color:#fff;
padding:12px;
border:none;
border-radius:5px;
cursor:pointer;
}


.social-links a{
margin-right:10px;
text-decoration:none;
color:#2563eb;
font-weight:500;
}

@media(max-width:768px){

.contact-actions{
grid-template-columns:1fr 1fr;
}

.contact-layout{
grid-template-columns:1fr;
}

}


.info-box a{
text-decoration:none;
color:#2563eb;
font-weight:500;
}

.info-box a:hover{
text-decoration:underline;
}

.social-links{
margin-top:15px;
}

.social-links a{
margin-right:12px;
text-decoration:none;
color:#2563eb;
font-weight:600;
}


.contact-layout{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
padding:60px 10%;
align-items:start;
}


/* LEFT CONTACT INFO */

.contact-info{
background:#ffffff;
padding:35px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.contact-info h2{
font-size:28px;
margin-bottom:10px;
}

.contact-info p{
color:#555;
margin-bottom:20px;
line-height:1.6;
}


/* INFO BOX */

.info-box{
display:flex;
gap:12px;
align-items:flex-start;
margin-bottom:18px;
font-size:15px;
}

.info-box a{
color:#2563eb;
text-decoration:none;
font-weight:500;
}

.info-box a:hover{
text-decoration:underline;
}


/* SOCIAL LINKS */

.social-links{
margin-top:20px;
}

.social-links a{
display:inline-block;
margin-right:12px;
padding:8px 14px;
border-radius:5px;
background:#f1f5f9;
color:#111;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.social-links a:hover{
background:#2563eb;
color:#fff;
}


/* CONTACT FORM */

.contact-form{
background:#ffffff;
padding:35px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.contact-form h2{
margin-bottom:20px;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.contact-form textarea{
height:120px;
resize:none;
}

.contact-form button{
background:#2563eb;
color:#fff;
padding:12px;
border:none;
border-radius:6px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#1e4ed8;
}


/* MAP */

.contact-map{
margin-top:50px;
}


/* MOBILE */

@media(max-width:768px){

.contact-layout{
grid-template-columns:1fr;
}

}









