/* ======================================
   GLOBAL STYLE RESET
====================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #f97316;
  --secondary: #4f46e5;
  --dark-bg: #0f172a;
  --dark-card: #1e293b;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 12px 35px rgba(0,0,0,0.5);
  --gradient: linear-gradient(135deg, #f97316, #4f46e5);
}

body {
  background: #020617;
  font-family: 'Poppins', sans-serif;
  color: var(--text-light);
  overflow-x: hidden;
}

/* ======================================
   CONTAINER
====================================== */
.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* ======================================
   HEADER / NAVBAR
====================================== */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

/* Logo */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 55px;
  height: 55px;
  padding: 5px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.7rem;
  font-weight: 700;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Navbar Links */
.nav-links {
  display: flex;
  gap: 1.6rem;
  
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
  transition: 0.3s;
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
}

/* Underline */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primary);
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu Button */
.nav-toggle {
  font-size: 1.3rem;
  display: none;
  cursor: pointer;
}

/* ======================================
   BUTTONS
====================================== */
.btn {
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  border: none;
  transition: 0.25s;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 25px rgba(249,115,22,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(79,70,229,0.6);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: #fff;
  border-color: #fff;
}

/* ======================================
   MOBILE MENU
====================================== */
.mobile-menu {
  display: none;
  background: #0f172a;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  color: var(--text-light);
  padding: 8px 0;
  text-align: center;
  text-decoration: none;

 
}
/* ======================================
   RESPONSIVE NAVIGATION (MOBILE)
====================================== */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block; 
  }

  .logo-badge {
    width: 45px;
    height: 45px;
  }

  .logo-title {
    font-size: 1.4rem;
  }

  .logo-sub {
    font-size: 0.65rem;
  }

}


/* ==========================
   FADE BANNER SLIDER
========================== */
.fade-banner-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-top: 10px;
}

/* All slides stacked */
.fade-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeAnimation 20s infinite; 
}


/* SLIDE 1 */
.fade1 {
  background-image:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)),
    url("img/communication.png");
  animation-delay: 0s;
}

/* SLIDE 2 */
.fade2 {
  background-image:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)),
    url("img/Leadershippersonality.png");
  animation-delay: 5s;
}

/* SLIDE 3 */
.fade3 {
  background-image:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url("img/Parade_drills.png");
  animation-delay: 10s;
}

/* SLIDE 4 — FIXED */
.fade4 {
  background-image:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url("img/CommunicativeEnglish.png"); 
  animation-delay: 15s; 
}

/* FADE ANIMATION */
@keyframes fadeAnimation {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  30%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}

/* TEXT INSIDE SLIDER */
.fade-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  padding: 0 20px;
  width: 100%;
}

.fade-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.7);
}

.fade-text p {
  font-size: 1.2rem;
  color: #e2e8f0;
}

/* ==========================
   MOBILE RESPONSIVE SECTION
========================== */
@media (max-width: 768px) {
  .fade-banner-slider {
    height: 350px; 
  }

  .fade-text {
    bottom: 30px;
  }

  .fade-text h1 {
    font-size: 1.8rem; 
  }

  .fade-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .fade-banner-slider {
    height: 280px; 
  }

  .fade-text {
    bottom: 20px;
    padding: 0 10px;
  }

  .fade-text h1 {
    font-size: 1.4rem; 
  }

  .fade-text p {
    font-size: 0.85rem;
  }
}



/* ================================
   COURSE SECTION (LEFT TEXT + RIGHT IMAGE)
================================ */
.course-main-heading {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
#courses {
  scroll-margin-top: 100px;
}

.course-main-heading::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #4f46e5);
  left: 0;
  bottom: -8px;
  border-radius: 5px;
  transition: width 0.5s ease;
}

.course-main-heading:hover::after {
  width: 100%;
}
.course-main-heading {
  opacity: 0;
  animation: fadeDown 20s ease forwards;
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px) translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}

.course-section {
  width: 100%;
  padding: 80px 0;
}

.course-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  padding: 15px;
}

/* Reverse row (image left, text right) */
.course-row.reverse {
  flex-direction: row-reverse;
}

.course-text {
  width: 50%;
}

.course-text h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.course-text p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #cbd5e1;
}

.course-btn {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f97316, #4f46e5);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.course-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(79,70,229,0.6);
}

/* Image box */
.course-img {
  width: 40%;
}

.course-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* =================================
   MOBILE VIEW
================================= */
@media (max-width: 768px) {
  .course-row,
  .course-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .course-text,
  .course-img {
    width: 100%;
  }

  .course-img img {
    height: 240px;
  }

  .course-text h2 {
    font-size: 1.6rem;
  }

  .course-text p {
    font-size: 1rem;
  }
}


/* ========================= ABOUT SECTION========================== */

.about-main-heading {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeDown 1.2s ease forwards;
}

#about {
  scroll-margin-top: 100px;
}

.about-main-heading::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #4f46e5);
  left: 0;
  bottom: -8px;
  border-radius: 5px;
  transition: width 0.5s ease;
}

.about-main-heading:hover::after {
  width: 100%;
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px) translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}

/* =======================
   ABOUT SECTION BASE
========================*/

.about-section {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  background: #020617;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  color: white;
}

/* =======================
   ABOUT CONTENT BOX
========================*/

.about-box {
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 35px;
  background-color: #0a0f1c;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: 0.4s ease;
}

.about-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.about-box h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.about-box p,
.about-box li {
  font-size: 1.1rem;
  color: #bcbcbc;
  line-height: 1.7;
}

.about-box ul {
  padding-left: 20px;
}

/* =======================
   SIDE-BY-SIDE LAYOUT
========================*/

.about-flex {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* =======================
   FOUNDERS SECTION
========================*/

.founders-row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.founder-card {
  width: 48%;
  background: #0f172a;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(255,255,255,0.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: 0.4s ease;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);
}

.founder-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 4px solid #4f46e5;
}

.founder-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.founder-card p {
  font-size: 1rem;
  color: #cfcfcf;
}

/* =======================
   SCROLL ANIMATION
========================*/

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =======================
   RESPONSIVE
========================*/

@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .founders-row {
    flex-direction: column;
  }

  .founder-card {
    width: 100%;
  }

}
/* ================ loction section =========== */
/* MAIN SECTION */
.location-section {
  padding: 60px 20px;
  background: #020617;
  font-family: 'Poppins', sans-serif;
}

/* CONTENT + MAP IN ONE BOX */
.location-box {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 30px;
  background: #0a0f1c;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

/* LEFT SIDE */
.location-left {
  flex: 1;
}

.location-left h2 {
  color: white;
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.location-left p {
  color: #cfcfcf;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* BUTTON */
.loc-btn {
  display: inline-block;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #f97316;
  border-radius: 8px;
  color: #f97316;
  text-decoration: none;
  transition: 0.3s;
}

.loc-btn:hover {
  background: #f97316;
  color: #020617;
}

/* RIGHT SIDE MAP */
.location-right iframe {
  width: 350px;
  height: 320px;
  border-radius: 12px;
  border: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
/* RESPONSIVE */
@media (max-width: 768px) {

  .location-box {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .location-left {
    text-align: center; 
  }

  .location-left h2 {
    font-size: 1.6rem;
  }

  .location-left p {
    font-size: 0.95rem;
  }

  /* FIX: MAKE MAP FULL WIDTH ON MOBILE */
  .location-right iframe {
    width: 100% !important;   
    height: 260px;            
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .location-right iframe {
    height: 230px;
  }
}



/* =============== footer section================= */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 3rem 0;
    margin-top: 3rem;
    font-family: Poppins, sans-serif;
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.7rem;
    font-weight: 600;
}

.logo-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #d9d4d0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.up {
    color: #f97316;
}

.brand-desc {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #94a3b8;
    max-width: 280px;
}

/* Links */
.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: #f8fafc;
}

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

.footer-links ul li {
    margin: 6px 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #f97316;
}

/* Socials */
.socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.socials a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #1e293b;
    color: #f1f5f9;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    font-size: 1rem;
    text-decoration: none;
}

.socials a:hover {
    background: #f97316;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    border-top: 1px solid #1e293b;
    padding-top: 1.2rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===================
       contact us
       =============== */
       /* CONTACT PAGE */
.contact-section {
  padding: 60px 20px;
  background: #020617;
  font-family: 'Poppins', sans-serif;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  padding: 30px;
  background: #0a0f1c;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

/* LEFT SIDE INFO */
.contact-info {
  flex: 0.5;
}

.contact-info h2 {
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.info-box {
  margin-bottom: 20px;
}

.info-box h3 {
  color: #f97316;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.info-box p {
  color: #d2d2d2;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* RIGHT SIDE FORM */
.contact-form {
  flex: 0.5;
  background: #0f172a;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.06);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  color: #bcbcbc;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: #0a0f1c;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.contact-btn {
  width: 100%;
  padding: 12px;
  background: #f97316;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #020617;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #fb923c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* ==========================
   BLOG PAGE STYLES=================== */
   /* ==========================
   BLOG PAGE HEADING
========================== */
.blog-heading {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.sub-heading {
  font-size: 1.8rem;
  color: #fff;
  margin: 30px 0 15px;
  text-align: left;
}

/* ==========================
   IMAGE GRID (9 Images)
========================== */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.image-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

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

/* ==========================
   VIDEO GRID (6 Videos)
========================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 25px;
}

.video-box video {
  width: 100%;
  height: 230px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}


.video-box iframe:hover {
  transform: scale(1.03);
}

/* ==========================
   MOBILE VIEW
========================== */
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .image-grid img {
    height: 200px;
  }

  .video-box iframe {
    height: 200px;
  }

  .blog-heading {
    font-size: 2rem;
  }
}

.certificate-section {
  padding: 60px 0;
}

.certificate-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content */
.certificate-left {
  width: 50%;
}

.certificate-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.certificate-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.certificate-points li {
  font-size: 1.05rem;
  color: #e2e8f0;
  margin-bottom: 10px;
  list-style: none;
}

/* Right Image */
.certificate-right {
  width: 50%;
}

.certificate-right img {
  width: 55%;            
  height: auto;
  margin: auto;
  display: block;
  border-radius: 10px;
  border: 2px solid #e5e5e5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

/* Mobile View */
@media (max-width: 768px) {
  .certificate-container {
    flex-direction: column;
    text-align: center;
  }
  .certificate-left, .certificate-right {
    width: 100%;
  }
  .certificate-right img {
    width: 75%;        
  }
}

/*=============== 
Popup background
================= */
.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Large popup image */
.image-popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* Close button */
.close-popup {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: white;
    cursor: pointer;
}