/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.hero-banner {
    position: relative;
    width: 100%;
    height: 450px; /* Height of the banner */
    display: flex;
    align-items: flex-end; /* Pushes text to the bottom */
    justify-content: center;
    overflow: hidden;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Random high-quality school group image */
    background-image: url('https://images.unsplash.com/photo-1511629091441-ee46146481b6?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center 20%;
    z-index: 1;
}

/* Creating the dark shadow at the bottom like the original */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding-bottom: 40px; /* Space from the very bottom */
    width: 90%;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Mobile Friendly Adjustments */
@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
    }
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fffaf5; /* Light cream background from screenshot 2 */
    color: #003366; /* Dark blue from screenshot 2 */
    line-height: 1.6;
}

/* --- HERO BANNER STYLES --- */
.hero-banner {
    position: relative;
    width: 100%;
    height: 450px;
    background-image: url('https://images.unsplash.com/photo-1523050853064-dbad350095ee?q=80&w=1500&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient at bottom for text readability */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding-bottom: 40px;
    width: 90%;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* --- COMMITMENT SECTION STYLES --- */
.commitment-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.commitment-text {
    flex: 1;
}

.commitment-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #002e5b;
}

.commitment-text p {
    font-size: 1.1rem;
    color: #444;
}

.commitment-image {
    flex: 1;
}

.commitment-image img {
    width: 100%;
    border-radius: 20px;
    border: 3px dashed #f58220; /* Orange dashed border from screenshot 2 */
    padding: 10px;
    background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .commitment-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }
}/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
    color: #002e5b; /* Deep blue from screenshots */
}

/* --- Hero Banner Styles --- */
.hero-banner {
    position: relative;
    width: 100%;
    height: 450px;
    background-image: url('https://images.unsplash.com/photo-1511629091441-ee46146481b6?q=80&w=1500&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding-bottom: 40px;
    width: 90%;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* --- Info Section Layouts --- */
.info-section {
    padding: 80px 20px;
}

.bg-cream { background-color: #fff9f2; }
.bg-white { background-color: #f0f7ff; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.reverse .container {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.text-block p {
    font-size: 1.15rem;
    color: #444;
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* Recreating the Orange Dashed Border */
.border-orange {
    padding: 12px;
    border: 3px dashed #f58220;
    border-radius: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column !important;
        text-align: center;
    }
    .hero-banner { height: 350px; }
    .hero-content h1 { font-size: 1.5rem; }
}
/* Reset & General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #002e5b; /* Navy blue color from screenshots */
    line-height: 1.6;
}

/* 1. Hero Banner Style */
.hero {
    position: relative;
    width: 100%;
    height: 450px;
    background-image: url('https://images.unsplash.com/photo-1511629091441-ee46146481b6?q=80&w=2000');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark fade at bottom like Screenshot 1 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding-bottom: 40px;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* 2. Content Sections Layout */
.content-section {
    padding: 80px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Background Colors from Screenshots */
.bg-cream { background-color: #fffaf5; }
.bg-blue { background-color: #f0f7ff; }

/* Flip logic for alternating sections */
.reverse .container {
    flex-direction: row-reverse;
}

.text-side { flex: 1; }
.image-side { flex: 1; }

.text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* 3. Recreating the Orange Dashed Border */
.dashed-border {
    padding: 10px;
    border: 3px dashed #f58220; /* Orange color */
    border-radius: 20px;
}

.dashed-border img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* List Style for Philosophy Section */
.mahatma-list {
    list-style: none;
    margin-top: 20px;
}

.mahatma-list li {
    margin-bottom: 5px;
}

/* Responsive Mobile View */
@media (max-width: 768px) {
    .container {
        flex-direction: column !important;
        text-align: center;
    }
    .hero { height: 300px; }
    .hero-content h1 { font-size: 1.5rem; }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f4f1eb;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 8%;
  gap: 60px;
}

/* Left Text */
.content {
  flex: 1;
  color: #1d3557;
  font-size: 20px;
  line-height: 1.8;
}

.content p {
  margin-bottom: 30px;
}

/* Right Image */
.image-box {
  flex: 1;
  border: 3px dashed #ff8c00;
  border-radius: 25px;
  padding: 15px;
}

.image-box img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .content {
    font-size: 18px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #eef2f5;
}

.section {
  padding: 80px 8%;
}

.light-bg {
  background-color: #f4f1eb;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Reverse layout for second section */
.reverse {
  flex-direction: row-reverse;
}

/* Content Styling */
.content {
  flex: 1;
  color: #0d2c4a;
}

.content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content ul {
  margin-top: 15px;
  padding-left: 20px;
}

.content ul li {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Image Styling */
.image-box {
  flex: 1;
  border: 3px dashed #ff8c00;
  border-radius: 25px;
  padding: 15px;
}

.image-box img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .reverse {
    flex-direction: column;
  }

  .content h2 {
    font-size: 32px;
  }

  .content p,
  .content ul li {
    font-size: 18px;
  }
}