:root{
  --primary:#E57A1F;
  --dark:#0B1F3A;
  --bg:#f4f8ff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

body{
  background:var(--bg);
  padding-top:120px;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:clamp(15px,4vw,50px);
  background:#fff;
  z-index:1000;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
  gap:20px;
  flex-wrap: wrap;
}

.enquiry-btn {
  background: #E57A1F;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
}


.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}

.logo img{
  width:clamp(36px,5vw,44px);
}

/* NAV LINKS */
.nav-links{
  display:flex;
  align-items:center;
  gap:10px;
  transition: max-height 0.3s ease;
}

.nav-links a{
  margin:0 clamp(6px,1.5vw,14px);
  text-decoration:none;
  color:#000;
  font-weight:500;
  transition: color 0.3s ease;
}

.nav-links a:hover{
  color: var(--primary);
}

/* SEARCH BOX */
.search-box{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding: 6px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,.12);
}

.search-box input{
  flex:1;
  min-width:220px;
  padding:14px;
  border-radius:10px;
  border:1px solid #ddd;
}

.search-box button{
  padding:14px 30px;
  border:none;
  background:var(--primary);
  color:#fff;
  border-radius:10px;
  cursor:pointer;
  transition: background 0.3s ease;
}

.search-box button:hover{
  background: var(--dark);
}

/* HAMBURGER MENU */
.hamburger{
  display:none;
  flex-direction: column;
  gap:5px;
  cursor:pointer;
}

.hamburger div{
  width:25px;
  height:3px;
  background:#000;
  transition: all 0.3s ease;
}

/* FLOATING ICONS */
.floating-icons{
  position:fixed;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:999;
}

.floating-icons a{
  position: relative;
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
  transition: all 0.3s ease;
}

/* Tooltip hidden by default */
.floating-icons a .tooltip{
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 16px;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
}

/* Show tooltip on hover */
.floating-icons a:hover .tooltip{
   opacity: 1;
  transform: translateX(0);
}

.whatsapp{background:#25D366}
.phone{background:#007bff}
.map{background:#e53935}

/* HERO SECTION */
.hero{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:clamp(30px,5vw,80px);
  padding:clamp(60px,8vw,120px);
  align-items:center;
}

.hero-left h1{
  font-size:clamp(30px,4vw,56px);
}

.hero-left h1 span{color:var(--primary)}

.badge{
  display:inline-block;
  padding:8px 16px;
  background:#eaf0ff;
  border-radius:20px;
  font-weight:600;
}

/* STATS */
.stats{
  display:flex;
  gap:clamp(20px,4vw,40px);
  margin-top:30px;
  flex-wrap:wrap;
  justify-content:flex-start;
}

.counter{
  font-size:32px;
  font-weight:800;
  color:var(--primary);
}

/* HERO IMAGE CARD */
.hero-right{
  position:relative;
}

.hero-right img{
  border-radius:24px;
  width:100%;
}

#course-text {
  font-size: 25px;
  font-weight: 600;
  color: #E57A1F;
  border-right: 3px solid #E57A1F;
  padding-right: 6px;
  white-space: nowrap;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0% { border-color: transparent; }
  50% { border-color: #E57A1F; }
  100% { border-color: transparent; }
}


.cert-card{
  position:absolute;
  bottom:15px;
  right:15px;
  background:#fff;
  padding:12px 20px;
  border-radius:14px;
}

/* WHY SECTION */
section{
  padding:clamp(60px,8vw,120px);
  text-align:center;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  margin-top:40px;
}

.card{
  background:#fff;
  padding:30px;
  border-radius:20px;
  transition:.3s;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* FOOTER */
footer{
  background:var(--dark);
  color:#fff;
  padding:30px;
  text-align:center;
}

/* ANIMATIONS */
.floating{animation:floating 4s ease-in-out infinite}
.pulse{animation:pulse 2s infinite}

@keyframes floating{
  50%{transform:translateY(-15px)}
}

@keyframes pulse{
  70%{box-shadow:0 0 0 20px rgba(31,79,216,0)}
}

/* RESPONSIVE NAVBAR & HERO */
@media (max-width: 992px){
  .search-box{
    order:3;
    width:100%;
    margin-top:10px;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    flex-direction: column;
    background:#fff;
    overflow:hidden;
    max-height:0;
    transition: max-height 0.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.1);
  }

  .nav-links a{
    margin:15px 0;
    text-align:center;
  }

  .nav-links.active{
    max-height:500px; /* adjust based on number of links */
  }

  .hamburger{
    display:flex;
    align-self:flex-end;
  }

  .hero{
    display:flex;
    flex-direction:column;
    gap:30px;
    padding:40px 20px;
  }

  .hero-left{
    text-align:center;
    order:1;
  }

  .hero-left h1{
    font-size: clamp(24px,6vw,36px);
  }

  .badge{
    font-size:14px;
  }

  .hero-right{
    order:2;
  }

  .hero-right img{
    border-radius:20px;
  }

  body{
    padding-top:130px; /* extra for stacked navbar + search */
  }

  .stats{
    justify-content:center;
  }
}

/* MOBILE FIXES */
@media(max-width:768px){
  .floating-icons{
    top:auto;
    bottom:15px;
    right:50%;
    transform:translateX(50%);
    flex-direction:row;
  }
}


/* WHY CHOOSE US SECTION */
.why-choose{
  padding: clamp(60px,8vw,120px);
  text-align: center;
  background: var(--bg);
}

/* Heading */
.why-title{
  font-size: clamp(32px,4vw,48px);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
}

.why-title .why{
  color: var(--primary);
}

.why-title .us{
  color: var(--dark);
}

/* Subtitle */
.why-subtitle{
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
}

/* Grid */
.why-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

/* Cards */
.why-card{
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform .3s ease;
}

.why-card i{
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
}

.why-card h3{
  margin-bottom: 10px;
  color: var(--dark);
}

.why-card p{
  color: #666;
  font-size: 15px;
}

/* Hover */
.why-card:hover{
  transform: translateY(-10px) scale(1.03);
}

/* Animation active state */
.why-choose.show .why-title,
.why-choose.show .why-subtitle{
  animation: fadeUp 0.8s ease forwards;
}

.why-choose.show .why-subtitle{
  animation-delay: .2s;
}

.why-choose.show .why-card{
  animation: cardFadeUp 0.6s ease forwards;
}

/* Stagger cards */
.why-choose.show .why-card:nth-child(1){animation-delay:.1s}
.why-choose.show .why-card:nth-child(2){animation-delay:.2s}
.why-choose.show .why-card:nth-child(3){animation-delay:.3s}
.why-choose.show .why-card:nth-child(4){animation-delay:.4s}
.why-choose.show .why-card:nth-child(5){animation-delay:.5s}
.why-choose.show .why-card:nth-child(6){animation-delay:.6s}

/* Keyframes */
@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes cardFadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* PLACEMENTS SECTION */
.placements{
  padding: clamp(60px,8vw,120px);
  background: #fff;
  text-align: center;
  overflow: hidden;
}

/* Heading */
.placements-title{
  font-size: clamp(28px,4vw,46px);
  margin-bottom: 50px;
  color: var(--dark);
}

.placements-title .highlight{
  color: var(--primary);
}

/* Logo slider container */
.logo-slider{
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track */
.logo-track{
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

/* Logos */
.logo-track img{
  height: 60px;
  width: auto;
  opacity: 0.95;
  transition: transform .3s ease, opacity .3s ease;
}

.logo-track img:hover{
  opacity: 1;
  transform: scale(1.1);
}

/* Animation */
@keyframes scrollLogos{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

/* =========================
   Reviews / Testimonials
   ========================= */
.reviews-section{
  padding: 70px 16px;
  background: radial-gradient(circle at 20% 20%, rgba(226,240,255,.55) 0, rgba(247,247,251,1) 35%), #f7f7fb;
}

.reviews-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-title{
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 800;
  margin: 0 0 10px;
  color: #111;
  text-align: left;
}

.reviews-subtitle{
  margin: 0 0 28px;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

/* Grid */
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1024px){
  .reviews-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .reviews-grid{ grid-template-columns: 1fr; }
}

/* Card */
.review-card{
  background: linear-gradient(140deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e2e8ff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 14px 30px rgba(49,90,150,0.12);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.review-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(49,90,150,0.18);
  border-color: #cbd8ff;
}

/* Header */
.review-head{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #4c6fff, #22c55e);
  flex: 0 0 40px;
  user-select: none;
  box-shadow: 0 6px 16px rgba(76,111,255,.25);
}

.review-name{
  font-weight: 800;
  color: #111;
  margin: 0;
  font-size: 15px;
}

.review-meta{
  margin: 3px 0 0;
  color: #4f5d75;
  font-size: 12.5px;
}

/* Stars + time */
.review-rating-row{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.review-stars{
  display: inline-flex;
  gap: 2px;
  line-height: 1;
}

.review-stars span{
  font-size: 14px;
  color: #f5b301; /* star color */
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.1));
}

.review-time{
  font-size: 12px;
  color: #667085;
}

/* Body */
.review-text{
  margin: 10px 0 0;
  color: #2a2a2a;
  line-height: 1.7;
  font-size: 14px;
  letter-spacing: 0.01em;
}

/* Optional: clamp long text (use class review-text clamp) */
.review-text.clamp{
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer (optional) */
.review-footer{
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.review-tag{
  font-size: 12px;
  color: #0f766e;
  background: #ecfeff;
  border: 1px solid #cffafe;
  padding: 6px 10px;
  border-radius: 999px;
}

/* Hover */
.review-card:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* FOOTER */
.footer{
  background:#0b0b0b;
  color:#fff;
  padding:60px 8vw 30px;
}

/* TOP BRAND */
.footer-top{
  border-bottom:1px solid rgba(255,255,255,.1);
  padding-bottom:30px;
  margin-bottom:50px;
}

.footer-brand-name{
  font-size:clamp(28px,5vw,48px);
  font-weight:800;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing:2px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:6px;
}

.footer-brand-name span{
  opacity:.35;
  transition:.3s ease;
}

.footer-brand-name span:hover{
  opacity:1;
  color:var(--primary);
  transform:translateY(-3px);
}

/* GRID */
.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:50px;
}

/* QUOTE */
.footer-quote{
  color:#bbb;
  font-size:16px;
  line-height:1.6;
}

/* HEADINGS */
.footer-links h3,
.footer-contact h3{
  margin-bottom:18px;
  font-size:18px;
}

/* LINKS */
.footer-links ul{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:12px;
}

.footer-links a{
  color:#bbb;
  text-decoration:none;
}

.footer-links a:hover{
  color:var(--primary);
}

/* CONTACT */
.footer-contact p{
  display:flex;
  align-items:center;
  gap:10px;
  color:#bbb;
  font-size:15px;
  margin-bottom:12px;
}

.footer-contact i{
  color:var(--primary);
}

/* SOCIAL ICONS */
.social-icons{
  margin-top:20px;
  display:flex;
  gap:18px;
}

.social-icons a{
  color:#bbb;
  font-size:18px;
}

.social-icons a:hover{
  color:var(--primary);
  transform:translateY(-4px);
}

/* GOOGLE REVIEW RIGHT */
.footer-review-right{
  margin-top:40px;
  display:flex;
  justify-content:flex-end;
}

.google-review-badge{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 22px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:18px;
  background:rgba(255,255,255,.04);
}

.google-g-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.google-g-icon svg{
  display:block;
}

.google-review-stars{
  color:#fbbc05;
  font-size:16px;
  letter-spacing:2px;
}

.google-review-text span{
  font-size:15px;
}

/* BOTTOM CENTER */
.footer-bottom{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;
  font-size:14px;
  color:#777;
}


/* FOOTER ADMIN BUTTON */
.footer-admin {
    text-align: center; /* Center button */
    margin-top: 20px;
}

.footer-admin .admin-btn {
    display: inline-block;
    padding: 10px 22px;
    background: var(--primary);  /* Your primary color */
    color: #fff;                 /* White text */
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.footer-admin .admin-btn:hover {
    background: #ff9c3b; /* Slightly lighter shade on hover */
    transform: translateY(-2px); /* Subtle lift effect */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-admin .admin-btn {
        padding: 8px 18px;  /* Smaller padding on mobile */
        font-size: 14px;    /* Slightly smaller text */
    }
}

@media (max-width: 480px) {
    .footer-admin .admin-btn {
        width: 90%;         /* Make button nearly full width */
        padding: 12px 0;
        font-size: 15px;
        display: block;
        margin: 0 auto;     /* Center on very small screens */
    }
}


/* MOBILE */
@media(max-width:768px){
  .footer-review-right{
    justify-content:center;
  }
}

/* CATEGORY TABS LAYOUT */
.category-tabs {
    display: flex;
    justify-content: space-between; /* Left / center / right */
    align-items: center;
    padding: 20px 50px;
    margin: 30px 0;
    background: var(--bg);
}

.category-tabs a {
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 8px;
    background: #333;
    color: #fff;
    transition: 0.3s;
}

/* Active tab or hover */
.category-tabs a.active,
.category-tabs a:hover {
    background: var(--primary);
    color: #000;
}

/* COURSE GRID */
.courses-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    padding:0 50px 50px;
}

/* COURSE CARD */
.course-card{
    background:#fff;
    padding:15px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    text-align:center;
}

.course-card img{
    width:100%;
    border-radius:10px;
    margin-bottom:10px;
}

.course-card h3{
    margin:10px 0;
    font-size:18px;
}

.course-card p{
    margin:5px 0;
    color:#555;
}

/* RESPONSIVE */
@media (max-width:768px){
    .category-tabs{
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    .courses-grid{
        padding:0 20px 30px;
    }
}
/* =========================
   Reviews Section – Inline CSS
   ========================= */
.reviews-section{
  padding:60px 16px;
  background:#f7f7fb;
  font-family:Arial, Helvetica, sans-serif;
}
.reviews-wrap{
  max-width:1100px;
  margin:auto;
}
.reviews-title{
  font-size:32px;
  font-weight:800;
  margin-bottom:8px;
  color:#111;
}
.reviews-subtitle{
  color:#555;
  margin-bottom:30px;
}
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
@media(max-width:1024px){
  .reviews-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:640px){
  .reviews-grid{grid-template-columns:1fr;}
}
.review-card{
  background:#fff;
  border-radius:16px;
  padding:18px;
  border:1px solid #e6e6ef;
  box-shadow:0 8px 25px rgba(0,0,0,.06);
  transition:.2s ease;
}
.review-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 35px rgba(0,0,0,.1);
}
.review-head{
  display:flex;
  gap:12px;
  margin-bottom:10px;
}
.review-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(135deg,#4f46e5,#22c55e);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}
.review-name{
  margin:0;
  font-size:15px;
  font-weight:800;
  color:#111;
}
.review-meta{
  font-size:12px;
  color:#666;
}
.review-rating{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:6px;
}
.stars{
  color:#f4b400;
  font-size:14px;
}
.review-time{
  font-size:12px;
  color:#777;
}
.review-text{
  font-size:14px;
  color:#2a2a2a;
  line-height:1.7;
  margin-top:10px;
}
.review-footer{
  margin-top:12px;
}
.review-tag{
  font-size:12px;
  padding:6px 12px;
  border-radius:20px;
  background:#ecfeff;
  color:#0f766e;
  border:1px solid #cffafe;
  display:inline-block;
}