* {margin:0; padding:0; box-sizing:border-box;}
    body {font-family:'Poppins', sans-serif; color:#333; background:#ffffff;}

   /* ================= NAVBAR ================= */

.navbar {
  width: 100%;
  background: #a02e98;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 3%; /* Side padding thoda kam kiya space ke liye */
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px; /* Logo aur Text ke beech gap bada diya */
  flex: 0 1 auto; /* Isse logo area screen ke hisaab se adjust hoga */
}

.logo img {
  width: 65px; /* Logo ka size bada kiya (Laptop par achha dikhega) */
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white; /* Logo ko highlight karne ke liye border */
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}


.school-name {
  color: #ffffff !important;
  font-weight: 800;
  /* Laptop par size 22px rakha hai taaki links ke upar na chadhe */
  font-size: clamp(18px, 2.5vw, 22px); 
 /* white-space: nowrap;*/
}

.school-place {
  color: #ffffff !important;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Desktop Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px; /* Spacing between links */
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px; /* Laptop par links chote rakhe hain */
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ffeb3b;
}

/* Fee Payment Button */
.apply-btn {
  background: #ffb600;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.apply-btn:hover {
  background: #ffaa00;
}

/* Hamburger Icon (Hidden on Desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px;
}
/* ================= Laptop responsive  ================= */
@media (max-width: 900px) {
  .logo img {
    width: 50px; /* Phone par wapas chota logo */
    height: 50px;
  }
  .school-name {
    font-size: 16px; /* Phone responsive size */
  }
  .school-place {
    font-size: 11px;
  }
}

/* ================= MOBILE responsive ================= */

@media (max-width:900px){

  .navbar{
    padding:10px 20px;
  }

  .school-name {
    font-size: 16px; /* Smaller for mobile */
  }

  .school-place {
    font-size: 12px;
  }
  
  .logo img {
    width: 40px; /* Slightly smaller logo for mobile */
    height: 40px;
  }  
  
  .nav-links{
    position:absolute;
    top:80px;
    right:20px;
    background:#a02e98!important; /*Menu background*/
    width:230px;
    flex-direction:column;
    gap:15px;
    padding:15px;
    border-radius:12px;
    display:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
  }

  .navbar.active .nav-links{
    display:flex;
  }
   
    .navbar .logo span{
    display:block;
    color:#fff !important;
    line-height:1.1;
  }

  .navbar .logo span:first-child{
    font-size:16px;   /* thoda chhota kar diya */
  }

  .navbar .logo span:last-child{
    font-size:13px;
  }
  .apply-btn{
  
     display:block;
    font-size:13px;
    padding:6px 12px;
  }

  .hamburger{
    display:flex;
  }

  .logo span{
    font-size:18px;
  }

}


 /*Font*/
    .navbar .logo span,
    .navbar ul li a {
    font-family: 'Poppins',sans-serif,cursive;   
     }    /* navbar links Font*/

    .navbar ul li a:hover {color:#ffeb3b;}
    .apply-btn {padding:8px 20px; border-radius:8px; border:none; background:#ffb600; cursor:pointer; font-weight:bold;}
    .apply-btn:hover {background:#ffaa00;}
    .hamburger {display:none; flex-direction:column; cursor:pointer;}
    .hamburger div {width:25px; height:3px; background:white; margin:4px; }

 
  /* HERO */
 
.hero {
  position: relative;
  height: 100vh;
  padding: 120px 50px;
  text-align: center;
  color: white;
  overflow: hidden;
  background: transparent;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero h1,
.hero h2,
.hero p,
.hero-buttons,
.quick-facts {
  position: relative;
  z-index: 2;
}



/* CONTENT ABOVE VIDEO */
.hero h1,
.hero h2,
.hero p,
.hero-buttons,
.quick-facts {
  position: relative;
  z-index: 2;
}


.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4); /* adjust 0.0 to 1.0 for opacity */
  z-index: -1;
}

    .hero h2 {font-size:1.6rem;}
    .hero h1 {font-size:2.5rem; margin:15px 0;}
    .hero p {max-width:700px; margin:0 auto 20px;}
    .hero-buttons button {
      padding:10px 20px; border:none; border-radius:6px; cursor:pointer; font-weight:bold; margin:5px;
    }
    .primary-btn {background:#ffb600;}
    .primary-btn:hover {background:#ffaa00;}
    .secondary-btn {background:white; color:#333;}
    .quick-facts {display:flex; flex-wrap:wrap; justify-content:center; gap:15px; margin-top:25px;}
    .quick-facts div {background:rgba(255,255,255,0.2); padding:8px 12px; border-radius:6px;}

    /* GALLERY & NOTIFICATIONS */
    .gallery-notifications {display:flex; flex-wrap:wrap; justify-content:center; padding:50px; gap:20px;}
    .gallery, .notifications {flex:1; min-width:300px;}

    /* SLIDER FIXED */
    .slider {
      position:relative; width:100%; max-width:500px; margin:20px auto;
      aspect-ratio:1/1; overflow:hidden; border-radius:15px; box-shadow:0 5px 20px rgba(0,0,0,0.2);
    }
    .slides {
      display:flex;
      width:100%;
      height:100%;
      transition:transform 0.8s ease-in-out;
    }
    .slides img {
      width:100%;
      height:100%;
      object-fit:cover;
      flex-shrink:0;
    }
    .slider button {
      position:absolute; top:50%; transform:translateY(-50%);
      background:rgba(0,0,0,0.5); color:white; border:none;
      padding:10px; border-radius:50%; cursor:pointer; font-size:20px;
    }
    .slider button:hover {background:rgba(0,0,0,0.8);}
    .prev {left:10px;} .next {right:10px;}

    /* NOTIFICATIONS */
    .notifications {background:#eece65; padding:20px; border-radius:10px;}
    .notifications h2 {margin-bottom:10px;}
    .scroll-box {height:150px; overflow:hidden; position:relative;}
    .scroll-box ul {list-style:none; position:absolute; animation:scrollUp 16s linear infinite;}
    .scroll-box li {padding:8px 0; font-size:16px; border-bottom:1px solid #9b1efb;}
    @keyframes scrollUp {
      0% {top:0;} 100% {top:-240px;}
    }
    .scroll-box:hover ul {animation-play-state:paused;}

    
    


.smart-footer {
  background: #a02e98;    /* deep dark blackish */
  color: #000000; /* address black in footer*/
  margin-top: 60px;
  font-family: "Poppins", sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
  padding: 50px 50px;
  background: linear-gradient(135deg,#ffffff, #ffffff);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

*.footer-col h3 {
 margin-bottom: 18px;
  font-size: 20px;
  color: #000000; /* Important links black */
  font-weight: 600;
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #000000; /*Footer Links black*/
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #8ab4ff;
}


/* SCHOOL LOGO FOOTER */
.school-logo-box {
  display: flex;
  justify-content: center;   /* Horizontal center */
  align-items: center;
  text-align: center;
}

.footer-logo {
  width: 320px;      /* change yourself */
  height: auto;      /* keep auto */
  margin-top: 10px;  /* top space */
  margin-bottom: 8px;
}


/*.hours li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #3a3f54;
  padding: 6px 0;
}

.hours .closed span {
  color: #f00808; } /*closed*/
 

.new-tag {
  background: #a02e98; /*new*/
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 4px;
  color: white;
}

.loc-btn {
  display: inline-block;
  margin-top: 10px;
  background:#a02e98;/*location button*/
  color: white !important;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 15px;
}

.loc-btn i {
  margin-right: 6px;
}

.footer-bottom {
  width: 100vw;                 /* full screen width */
  margin: 0;
  padding: 14px 10px;
  background-color: #fffefd;
  text-align: center;
  font-size: 14px;
  color: #000000; /*Text color 2026 Smart steps all rights reserved*/

  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
    

    /* FOOTER */
    footer {background: #cf7010; color:rgb(237, 237, 237); text-align:center; padding:20px;}
    .social-icons a {color:white; margin:0 10px; font-size:22px; transition:color .3s;}
    .social-icons a:hover {color:#00aced;}

    /* RESPONSIVE */
    @media(max-width:992px){.gallery-notifications{flex-direction:column;}.contact{flex-direction:column;}}
    @media(max-width:768px){
      .navbar ul{display:none; flex-direction:column; background:#9077e2; position:absolute;
        top:70px; right:0; width:200px; padding:20px; border-radius:0 0 0 10px;}
      .navbar.active ul {display:flex;}
      .hamburger {display:flex;}
    }

.welcome-section {
    width: 100%;           /* Takes full width */
    max-width: 100%;       /* Removes the 900px limit */
    margin: 60px 0;        /* Centers vertically, removes 'auto' side margins */
    text-align: center;
    padding: 20px 5%;      /* 5% padding keeps it from touching the screen edges */
    box-sizing: border-box; /* Ensures padding doesn't cause horizontal scrolling */
    color: #000;
}

/* Welcome to */
.welcome-text {
    color: #23817d;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Smart Steps (MAIN BIG TEXT) */
.school-name1 {
    color: #a02e98;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

/* School */
.school-sub {
    color: #2f8f8b;
    font-size: 22px;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 35px;
}

/* Paragraph text - Now stretching full width */
.school-desc {
    width: 100%;           /* Forces paragraph to use all available space */
    max-width: 100%;       /* Removes the 820px limit */
    margin: 0 auto;
    font-size: 18px;       /* Slightly increased for better readability on wide screens */
    line-height: 1.9;
    text-align: justify;   /* 'Justify' looks better for full-width paragraphs */
    color: #222;
}

/* MOBILE FIX */
@media(max-width:600px) {
    .welcome-section {
        margin: 40px 0;
        padding: 20px 15px; /* Tighter padding for small screens */
    }

    .school-name {
        font-size: 38px;
    }

    .welcome-text,
    .school-sub {
        font-size: 19px;
    }

    .school-desc {
        font-size: 16px;
        line-height: 1.8;
        text-align: left; /* Left align often looks better than justify on mobile */
    }
}

/*-- Fixed left Side Icons */
.social-fixed{
  position: fixed;
  right: 12px;
  top: 45%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-fixed a{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 46px;
  font-size: 22px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.social-fixed a:hover{
  transform: scale(1.1);
}

/* Colors for fixed right side icons */
.whatsapp{ background:#25D366; }
.facebook{ background:#1877F2; }
.instagram{ background:#e122a5; }
.youtube{background:#f80707;}

/* 📱 MOBILE RESPONSIVE for right side icons */
@media(max-width: 768px){
  .social-fixed{
    right: 8px;
    top: 50%;
  }

  .social-fixed a{
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 18px;
  }
}

:root{
  --royal:#000000;    /* primary */
  --soft:#dbe9ff;     /* light bg */
  --highlight:#dfb0f7;/* yellow */
  --accent:#2fb67b;   /* green */
  --muted:#5b6b7a;
  --radius:10px;
  --container-w:1000px;
  --max-mobile-w:880px;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color-scheme: light;
}


/* ---------- MVV Section (centered cards) ---------- */
.mvv-section{display:flex;justify-content:center;padding:6px 0 20px}
.mvv-row{
  display:flex;
  gap:14px;
  align-items:stretch;
  justify-content:center;
  width:100%;
  max-width:980px;
  padding:8px;
}

/* Card */
.mvv-card{
  flex:1 1 280px;
  background:linear-gradient(180deg, #fff, var(--soft));
  border-radius:var(--radius);
  padding:14px;
  box-shadow:0 6px 18px rgba(11,61,145,0.06);
  text-align:center;
  min-width:200px;
  transition:transform .22s ease, box-shadow .22s ease;
  border:1px solid rgba(11,61,145,0.04);
}
.mvv-card:hover{ transform:translateY(-6px); box-shadow:0 10px 30px rgba(11,61,145,0.08) }
.mvv-icon{ width:56px; height:56px; margin:0 auto 10px; display:flex; align-items:center; justify-content:center; border-radius:12px; background: linear-gradient(180deg,var(--highlight),#fff); color:#07305a; box-shadow:0 4px 12px rgba(2,6,23,0.04) }
.mvv-card h3{ margin:6px 0; color:var(--royal); font-size:16px }
.mvv-card p{ font-size:13px; color:var(--muted); line-height:1.45; padding:0 6px; margin:6px 0 0 }
.values-list{ list-style:disc; padding-left:18px; color:var(--muted); text-align:left; display:inline-block; margin-top:6px; font-size:13px; }

/* Principal */
.principal-section{display:flex; justify-content:center; margin:18px 0}
.principal-card{
  width:100%;
  max-width:900px;
  background:linear-gradient(90deg,#fff,#fff9f0);
  border-left:6px solid var(--highlight);
  padding:14px 16px;
  border-radius:10px;
  box-shadow:0 6px 18px rgba(2,6,23,0.03);
}
.principal-card blockquote{ margin:0; font-style:italic; color:#17324a; font-size:15px; line-height:1.55 }
.principal-name{ text-align:right; margin-top:8px; color:var(--muted); font-weight:600 }

/* Why Us */
.why-us{ max-width:920px; margin:12px auto; padding:6px 10px;}
.why-us h2{ color:var(--royal); font-size:18px; margin-bottom:8px; text-align:left }
.why-us ul{ list-style:square; padding-left:18px; color:var(--muted); line-height:1.6; font-size:14px }

/* Stats */
.stats{ display:flex; gap:12px; margin-top:16px; justify-content:center; align-items:stretch; max-width:920px; margin-left:auto; margin-right:auto }
.stat-box{ flex:1 1 140px; background:linear-gradient(180deg,#f6fffa, #f1fbf6); text-align:center; padding:12px; border-radius:10px; border:1px solid rgba(47,182,123,0.06) }
.stat-num{ font-size:20px; color:var(--royal); font-weight:700; margin-bottom:4px }


/* ------------- Responsive ------------- */


@media (max-width:700px){
  .about-container{ width:95% }
  .mvv-row{ flex-direction:column; align-items:center }
  .mvv-card{ width:100%; max-width:380px }
  .intro .lead{ font-size:13px }
  .principal-card{ padding:12px }
  .stat-box{ flex:unset; width:100%; display:flex; justify-content:space-between; padding:10px 14px }
  .stat-num{ font-size:18px }
  .values-list{ text-align:left; }
}
@media (max-width:420px){
  .intro h1{ font-size:18px }
  .mvv-icon{ width:48px;height:48px }
  .mvv-card h3{ font-size:15px }
  .mvv-card p{ font-size:13px }
  .values-list{ font-size:13px; padding-left:14px }
  .principal-card blockquote{ font-size:14px }
}




