/*nav and head start  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

body {
   font-family: "Roboto Slab", serif;

}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #003366;
  padding: 10px 20px;
  position: relative;
  position: fixed;
  width: 100%;
}
.navbar {
  position: fixed;        /* MUST */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;          /* ABOVE hero */
  background: rgb(61, 108, 91);    /* Ensure visible */
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background:rgb(61, 108, 91);
  list-style: none;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.dropdown-menu li a {
  padding: 10px;
  display: block;
  color: #fff;
}

.dropdown-menu li a:hover {
  background: #ffcc00;
  color: #000;
}

/* Contact Button */
.contact-btn {
  background: #ffcc00;
  color: #000;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    background:rgb(61, 108, 91);
    width: 60%;
    flex-direction: column;
    transition: 0.3s;
  }

  .nav-links.active {
    left: 0;
  }

  .contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .dropdown-menu {
    position: static;
  }
}
@media (max-width: 768px) {

  .navbar {
    flex-wrap: wrap;
  }

  .logo {
    flex: 1;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile menu container */
  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: rgb(61, 108, 91);
    position: absolute;
    top: 70px;
    left: 0;
    padding: 10px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 20px;
    justify-content: space-between;
  }

  /* Dropdown menu mobile fix */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    background: rgb(61, 108, 91);
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  /* Hide contact button on mobile */
  .contact-btn {
    display: none;
  }
}


/*nav and head end  */
/*  Loading animation start*/
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

#page-loader img {
  width: 120px;
  margin-bottom: 15px;
}

#page-loader p {
  color: #555;
  font-size: 16px;
}

/*  Loading animation end*/
/* Watermark start*/
.content-area {
  position: relative;
  background: #fff;
  padding: 30px;
  min-height: 80vh;
}

.content-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/logo.jpg") center center no-repeat;         /* watermark class is content-area*/
  background-size: 300px;
  opacity: 0.2;           /* watermark lightness */
  pointer-events: none;   /* text remains clickable */
  z-index: 0;
}

/* Keep content above watermark */
.content-area > * {
  position: relative;
  z-index: 1;
}

/* Watermark end*/
/* hero section start*/
/* NAVBAR FIXED */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: #000;
}

/* HERO SECTION start */
/* ================= HERO SECTION ================= */
.hero-section {
  padding: 90px 20px;
  background: linear-gradient(120deg, #f4f8ff, #eef6ff);
  text-align: center;
}

/* Typing text */
.typing-line {
  min-height: 48px;
  font-size: 54px;
  color: #1d3557;
}

.typing-line.bold {
  font-size: 70px;
  font-weight: 700;
}

.typing-line.highlight {
  font-size: 46px;
  color: #457b9d;
  margin-top: 10px;
}

/* Blinking badge */
.blink-badge {
  display: inline-block;
  margin: 25px 0;
  padding: 10px 24px;
  border: 2px solid #1d3557;
  color: #1d3557;
  border-radius: 30px;
  background: rgba(255,255,255,0.5);
  animation: blink 3.2s infinite;
  font-weight: 600;
  width: 40%;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* Button */
.hero-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 36px;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(230,57,70,0.4);
}

/* Image */
.hero-image {
  margin-top: 40px;
}

.hero-image img {
  /* max-width: 700px; */
  width: 100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Responsive */
@media (max-width: 768px) {
  .typing-line {
    font-size: 26px;
  }

  .typing-line.bold {
    font-size: 32px;
  }

  .hero-image img {
    max-width: 360px;
  }
}


/* HERO SECTION end */



/* about word start */
.about-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  position: relative;
  margin-bottom: 40px;
  letter-spacing: 1px;
  animation: fadeDown 1s ease;
}

.about-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
  animation: lineGrow 1.2s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
  }
}

/* about word end */
/* about section start */
/* ================= ABOUT SECTION ================= */

.about-sadguru {
  padding: 100px 8%;
  background: #f8fafc;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.founder{
  margin-top: 60px;
}

/* IMAGE */
.about-image {
  flex: 1;
  animation: fadeLeft 1.2s ease;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
  height: 1000px;
}

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

/* CONTENT */
.about-content {
  flex: 1;
  animation: fadeRight 1.2s ease;
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.about-content h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-content ul li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #0f172a;
}

.about-content ul i {
  color: #2563eb;
  margin-right: 10px;
}

.about-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #2563eb;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #1e40af;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-content {
    animation: none;
  }

  .about-content ul {
    text-align: left;
    display: inline-block;
  }
}

/* about section end*/
/* our miaaion and vesrion start*/
/* ================== MISSION & VISION SECTION ================== */

.mission-vision {
  padding: 100px 8%;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 60px;
  position: relative;
  animation: fadeDown 1s ease;
}

.section-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  display: block;
  margin: 14px auto 0;
  border-radius: 20px;
}

/* Cards container */
.mv-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual cards */
.mv-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 450px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  animation: fadeUp 1.2s ease;
}

.mv-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(37,99,235,0.25);
}

/* Card Icons */
.mv-icon {
  font-size: 46px;
  margin-bottom: 20px;
}

/* Headings */
.mv-card h3 {
  font-size: 26px;
  color: #1e3a8a;
  margin-bottom: 15px;
}

/* Paragraph */
.mv-card p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Lists */
.mv-card ul {
  list-style: none;
  padding-left: 0;
}

.mv-card ul li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #0f172a;
  position: relative;
  padding-left: 25px;
}

.mv-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .mv-container {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 34px;
  }
}

/* our miaaion and vesrion end*/
/* member sectionstart */
/* Teachers Section */
.teachers-section {
  padding: 80px 5%;
  background: #f8f9fc;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ff9800;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}


/* Grid */
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card */
.teacher-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.teacher-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

/* Image */
.teacher-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.teacher-card img:hover {
  transform: scale(1.05);
}

/* Text */
.teacher-card h3 {
  margin: 18px 0 6px;
  font-size: 1.2rem;
  color: #111;
}

.teacher-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Fullscreen Image Viewer */
.image-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-viewer img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* member section end*/
/* swiper js start*/
/* HERO SECTION */
.hero-fade-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1; /* navbar safe */
}

/* Swiper */
.heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 20px;
  animation: fadeUp 1.5s ease;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f1f1f1;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

/* swiper js end*/
/* campus life start*/
/* Campus Section */
.campus-section {
  padding: 80px 5%;
  background: #f8f5ef;
  text-align: center;
}

.subtitle {
  font-family: cursive;
  color: #555;
  margin-bottom: 5px;
}

.campus-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

/* Swiper */
.campusSwiper {
  width: 100%;
  padding-bottom: 50px;
}

.campusSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.campusSwiper img {
  width: 100%;
  max-width: 420px;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Center slide effect */
.swiper-slide-active img {
  transform: scale(1.1);
}

/* Pagination dots */
.swiper-pagination-bullet {
  background: #999;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #7b4eff;
}

/* Responsive */
@media (max-width: 768px) {
  .campus-title {
    font-size: 2rem;
  }

  .campusSwiper img {
    max-width: 300px;
    height: 220px;
  }
}

/* campus life end*/
/* student stories start*/
.feedback-section {
  padding: 80px 5%;
  background: #fff;
}

.feedback-subtitle {
  text-align: center;
  font-family: cursive;
  color: #666;
}

.feedback-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: #222;
}

.feedback-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

/* Left image */
.feedback-left img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

/* Right content */
.feedback-right {
  max-width: 500px;
}

.quote {
  font-size: 80px;
  color: #8b1e1e;
  line-height: 1;
}

.feedback-right p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.feedback-right h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.feedback-right span {
  font-size: 0.9rem;
  color: #777;
}

/* Swiper Pagination (Avatars) */
.swiper-pagination {
  margin-top: 40px;
  position: static;
}

.swiper-pagination-bullet {
  width: 55px;
  height: 55px;
  background-size: cover;
  border-radius: 50%;
  opacity: 0.5;
  margin: 0 8px !important;
  border: 2px solid transparent;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  border-color: #8b1e1e;
}

/* Responsive */
@media (max-width: 900px) {
  .feedback-slide {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feedback-left img {
    margin: auto;
  }

  .quote {
    font-size: 60px;
  }
}

/* student stories end*/
/*testimonial section start*/
.feedback-slide {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;   /* 🔒 NEVER STACK */
  align-items: center;
  gap: 50px;
  width: 100%;
}

/* IMAGE LEFT */
.feedback-img {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
}

/* CONTENT RIGHT */
.feedback-content {
  flex: 0 0 55%;
}

/* IMAGE STYLE */
.feedback-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

/* REMOVE ALL MOBILE STACKING */
@media (max-width: 9999px) {
  .feedback-slide {
    flex-direction: row !important;
  }
}


.h4-sub{
  color:#003366
}
/*testimonial section end*/

/* footer start*/
.footer {
  background: rgb(61, 108, 91);
  color: #cbd5e1;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
}

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

.footer-col ul li {
  margin-bottom: 10px;
  text-align: center;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  text-align: center;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

/* Buttons */
.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-btn {
  background: #38bdf8;
  color: #0f172a;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s;
}

.footer-btn:hover {
  background: #0ea5e9;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
}

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

/* footer end*/
/*  Reviews start */
.feedback-section {
  padding: 60px 20px;
  background: #f8f9fb;
}

.feedback-subtitle {
  text-align: center;
  color: #777;
  letter-spacing: 1px;
}

.feedback-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.feedback-slide {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feedback-img {
  flex: 1;
}

.feedback-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

.feedback-content {
  flex: 1;
  position: relative;
}

.feedback-content .quote {
  font-size: 60px;
  color: #e63946;
  position: absolute;
  top: -30px;
  left: -10px;
}

.feedback-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.feedback-content h4 {
  margin-top: 15px;
  font-size: 18px;
}

.feedback-content small {
  color: #888;
}

/* 🔹 Mobile Responsive */
@media (max-width: 768px) {
  .feedback-slide {
    flex-direction: column;
    text-align: center;
  }

  .feedback-content .quote {
    position: static;
    font-size: 40px;
  }

  .feedback-title {
    font-size: 26px;
  }
}

/*  Reviews end */
