/*----------------------------
   Base Structure
-----------------------------*/
:root {
  --marathi-font: 'Mukta', 'Hind', 'Noto Sans Devanagari', sans-serif;
}

body {
  font-family: var(--marathi-font);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-header {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;

  /* Subtle shadow */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 5px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*----------------------------
   Logo Area
-----------------------------*/
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 48px;
}

.school-name {
  font-size: 1.4rem;
  color: #540b0e;
  font-weight: 700;
}

.school-tagline {
  font-size: 0.8rem;
  color: #2d2d2d;
}

/*----------------------------
   Navigation Menu
-----------------------------*/
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  color: #7a3b2e;
  font-weight: 600;
  font-size: 1rem;
}

.main-nav a:hover {
  color: #335c67;
}

/*----------------------------
   Mobile Menu
-----------------------------*/
.menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #003b8e;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    width: 200px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 18px;
  }
}
/*==================------------------------------- hero section ------------------------================*/
.hero-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 480px;
  overflow: hidden;
  background: #f5f7fa;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 2;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.25);
  padding: 25px 32px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.4);
  max-width: 550px;
  color: #44110e;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.hero-text h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.4;
}

/* Slider */
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slides-track {
  display: flex;
  height: 100%;
  width: 100%;
  animation: slideFull 30s infinite linear;
}

.slides-track img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

/* Animation – move slide by 100% width each cycle */
@keyframes slideFull {
  0%   { transform: translateX(0%); }
  14%  { transform: translateX(0%); }

  16%  { transform: translateX(-100%); }
  30%  { transform: translateX(-100%); }

  32%  { transform: translateX(-200%); }
  46%  { transform: translateX(-200%); }

  48%  { transform: translateX(-300%); }
  62%  { transform: translateX(-300%); }

  64%  { transform: translateX(-400%); }
  78%  { transform: translateX(-400%); }

  80%  { transform: translateX(-500%); }
  94%  { transform: translateX(-500%); }

  /* 6th → duplicate 1st = seamless */
  100% { transform: translateX(-600%); }
}



/* Mobile */
@media (max-width: 992px) {
  .hero-text {
    max-width: 420px;
    padding: 22px 26px;
  }
  .hero-text h2 {
    font-size: 34px;
  }
  .hero-text p {
    font-size: 17px;
  }
}
/* ================================
   RESPONSIVE (MOBILE PHONES)
================================== */
@media (max-width: 768px) {
  .hero-section {
    height: 78vh;
    min-height: 420px;
  }

  .hero-text {
    left: 5%;
    right: 5%;
    transform: translateY(-50%);
    padding: 18px 18px;
    max-width: 90%;
  }

  .hero-text h2 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 15px;
  }
}


/* ================================
   VERY SMALL DEVICES (<450px)
================================== */
@media (max-width: 450px) {
  .hero-section {
    height: 70vh;
    min-height: 380px;
  }

  .hero-text {
    padding: 15px 14px;
  }

  .hero-text h2 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 14px;
  }
}
/*---------------------------------------- ABOUT SECTION ----------------------------------------*/
.about-section {
  width: 100%;
  padding: 100px 0;
  background: url("Images/about-bg.png") no-repeat center/cover;
  position: relative;
}

.about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE FRAME */
.about-media {
  position: relative;
  justify-content: center;
}
.about-image-frame {
  position: relative;
  width: 420px;
  height: auto;
  background: #fff;
  padding: 15px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* actual img */
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  position: relative;
  z-index: 2;
  display: block;
}

/* TEXT */
.about-content { padding: 8px 0; }
#aboutKicker {
  color: #335c67;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.6px;
}
#aboutTitle {
  font-size: 28px;
  color: #540b0e;
  margin: 0 0 14px 0;
  font-family: 'Mukta', 'Noto Sans Devanagari', sans-serif;
}
#aboutBody p {
  color: #2d2d34;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 18px;
}

/* HIGHLIGHTS */
.about-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.about-highlights li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: #1d2433;
}
.about-highlights li::before {
  content: "✔";
  color: #6b3db6;
  font-weight: 700;
  display: inline-block;
  margin-top: 3px;
}

/* CTA */
.about-cta {
  margin-top: 8px;
}
.btn {
  padding: 10px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
}
.btn.primary {
  background: #335c67;
  color: #fff;
}
.btn.ghost {
  background: transparent;
  border: 1px solid rgba(27,45,90,0.08);
  color: #1b2d5a;
}

/* ================================
      RESPONSIVE DESIGN
================================ */

/* For screens below 992px ( Tablets ) */
@media screen and (max-width: 992px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-image-frame {
    width: 70%;
    margin: auto;
  }

  #aboutTitle {
    font-size: 26px;
  }

  #aboutBody p {
    font-size: 15px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-highlights li {
    justify-content: center;
    text-align: left;
  }
}

/* For screens below 768px ( Mobile Large ) */
@media screen and (max-width: 768px) {
  .about-section {
    padding: 70px 20px;
  }

  .about-image-frame {
    width: 85%;
  }

  #aboutTitle {
    font-size: 24px;
  }

  #aboutBody p {
    font-size: 14px;
  }
}

/* For screens below 480px ( Mobile Small ) */
@media screen and (max-width: 480px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-image-frame {
    width: 100%;
    padding: 12px;
  }

  #aboutTitle {
    font-size: 22px;
  }

  .btn {
    padding: 8px 22px;
    font-size: 14px;
  }
}



/*-------------------------------------------principales message--------------------------------------------*/
.principal-section { 
	position: relative; 
	width: 100%; 
	background: linear-gradient(135deg, #f0f7ff, #ffffff);
	padding-top: 80px; 
	padding: 80px; 
} 	
.principal-container { 
	width: 100%; 
	max-width: 900px;
	margin: 0 auto 110px auto; 
	background: #fff;
	padding: 60px 40px; 
	border-radius: 14px; 
	box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
	position: relative; 
	z-index: 2; 
} 	
.principal-content { 
	text-align: center; 
	margin-bottom : 20px; 
} 
.principal-content h2 { 
	font-size: 32px; 
	margin-bottom: 20px; 
	color: #540b0e; 
} 
.principal-content p { 
	font-size: 15px; 
	line-height: 1.7; 
	color: #555; 
	padding: 20px; 
} 
.wave-box { 
	position: absolute; 
	bottom: 0; 
	width: 100%; 
	left: 0; 
	overflow: hidden; 
	line-height: 0; 
	z-index: 2; 
} 
.wave { 
	width: 100%; 
	height: 150px; 
	display: block; 
	margin-bottom: -2px;
	preserveAspectRatio: none; 
} 
/*------------------ Responsive ----------------*/
@media (max-width: 992px) {
  .principal-container {
    padding: 50px 35px;
    margin-bottom: 120px;
  }

  .principal-content h2 {
    font-size: 28px;
  }

  .principal-content p {
    font-size: 15px;
    padding: 15px;
  }
  .wave {
    height: 150px;
  }

}

@media (max-width: 768px) {
  .principal-section {
    padding: 60px 20px 0 20px;
  }

  .principal-container {
    width: 95%;
    padding: 40px 25px;
    margin: 0 auto 100px auto;
  }

  .principal-content h2 {
    font-size: 26px;
  }

  .principal-content p {
    font-size: 14px;
    padding: 12px;
  }
 .wave-box {
    display: none;
  }
}

@media (max-width: 480px) {
  .principal-section {
    padding: 50px 15px 0 15px;
  }

  .principal-container {
    padding: 30px 20px;
    margin: 0 auto 80px auto;
  }

  .principal-content h2 {
    font-size: 22px;
  }

  .principal-content p {
    font-size: 13px;
    padding: 10px;
  }

  .wave-box {
    display: none;
  }
}

/*----------------- Divider(underline)---------------*/
.fancy-divider { 
	display: block; 
	margin: 30px auto; 
	color: #a78a7f;
}
/*-----------------------------------Facilities-----------------------------*/
/* Section Base */
.facilities-section {
  width: 100%;
  padding: 50px 20px;
  background: #fff;
}

/* Header Content */
.facilities-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.facilities-header h2 {
  font-size: 32px;
  color: #8c1c13;
  margin-bottom: 20px;
  font-weight: 700;
}

.facilities-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-top: 20px;
}

/* Flex Boxes */
.facilities-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap; /* Allows stacking on small screens */
}

/* Single Facility Box */
.facility-box {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: #ffffff;
  padding: 0;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.facility-box:hover {
  transform: translateY(-10px); /* moves box upward */
  box-shadow: 0 10px 28px rgba(0,0,0,0.18); /* stronger shadow */
}

.facility-box h3 {
  font-size: 22px;
  color: #fff;
  padding: 30px 25px;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.5;
  background: #335c67;
  border-radius: 14px;
}
.facility-box ul{
	padding: 50px;
}
.facility-box li {
	line-height: 1.6;
}	
/* Hover effect */
.facility-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ================================
   RESPONSIVE DESIGN
================================ */

/* For tablets (max-width: 992px) */
@media screen and (max-width: 992px) {
  .facilities-header h2 {
    font-size: 28px;
  }

  .facilities-header p {
    font-size: 15px;
    padding: 0 10px;
  }

  .facility-box h3 {
    font-size: 20px;
    padding: 25px 20px;
  }

  .facility-box ul {
    padding: 30px 25px;
  }
}

/* For mobile devices (max-width: 768px) */
@media screen and (max-width: 768px) {
  .facilities-flex {
    flex-direction: column;
    gap: 20px;
	margin: 15px;
  }

  .facility-box {
    max-width: 100%;
    min-width: 100%;
  }

  .facilities-header h2 {
    font-size: 26px;
  }

  .facilities-header p {
    font-size: 14px;
  }
}

/* For small mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .facilities-section {
    padding: 40px 15px;
  }

  .facility-box h3 {
    font-size: 18px;
    padding: 20px 15px;
  }

  .facility-box ul {
    padding: 20px 30px;
  }

  .facility-box li {
    font-size: 14px;
  }
}
/*-----------------------------------------choose us-----------------------------------*/

.why-choose-us {
  padding: 80px 20px;
  background: #fff;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: clamp(24px, 4vw, 34px);
  color: #540b0e;
}

/* Timeline wrapper */
.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding-left: 0px;
}

/* Vertical line */
.timeline-line {
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 0;
  background: #335c67;
  transition: translateX(-50%);
}

/* Each step */
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* Number circle */
.circle {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #335c67;
  color: #335c67;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  z-index: 2;
}

/* Text */
.content {
  padding-left: 30px;
}

.content h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 3vw, 22px);
  color: #9e2a2b;
}

.content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* ---------------- MOBILE VIEW ---------------- */
@media (max-width: 768px) {
  .timeline {
    padding-left: 0;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
  }

  .circle {
    margin-bottom: 15px;
  }

  .content {
    padding-left: 0;
    max-width: 90%;
  }
}
/*--------------------------------------grid box------------------------------------*/
.two-grid-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.grid-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.grid-box h3 {
  margin-bottom: 25px;
  font-size: 28px;
  color: #540b0e;
}

.grid-box p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* -------- Mobile View -------- */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}
/*---------------------------------activities-------------------------------*/
.activities-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #335c67, #ffffff);
}

.section-title {
  text-align: center;
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 60px;
  color: #540b0e;
}

.activities-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.activity-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.activity-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #335c67;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #9e2a2b;
}

.activity-card p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* ---------- Tablet ---------- */
@media (max-width: 992px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
    padding: 30px 20px;
  }
}
/*---------------------------------------footer----------------------------*/
.site-footer {
  background: #0f172a;          /* dark professional color */
  padding: 15px 10px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
}
.site-footer a {
  color: #fff3b0;
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
}
/* Mobile friendly */
@media (max-width: 600px) {
  .site-footer p {
    font-size: 13px;
  }
}
