/* ============================================
   PATRIOT SIKSHA SANSTHAN — STYLESHEET
   Color Palette:
     Primary Beige:    #c7a489
     Dark Brown:       #7a4b2f
     Very Dark Brown:  #2b1a12
     Light Background: #f4f1ee
     Dark Section BG:  #1a1a1a
     Text Dark:        #111111
     Muted Gray:       #6b6b6b
     Border Line:      #d8c5b8
   ============================================ */

/* ---- RESET ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', 'Georgia', serif;
    background-color: #f4f1ee;
    color: #111;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background-color: #c7a489;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #2b1a12;
    letter-spacing: 3px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2b1a12;
    margin-left: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2b1a12;
    transition: width 0.3s ease;
}

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

.admission-btn {
    font-family: 'Inter', sans-serif;
    background-color: #7a4b2f;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.admission-btn:hover {
    background-color: #2b1a12;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #2b1a12;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #c7a489;
    padding: 20px 40px 30px;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav.show {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2b1a12;
    padding: 12px 0;
    border-bottom: 1px solid rgba(43, 26, 18, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admission-btn-mobile {
    background-color: #7a4b2f;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}


/* ============================================
   SECTION LABELS
   ============================================ */
.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #7a4b2f;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-label.light {
    color: #c7a489;
}


/* ============================================
   PRIMARY BUTTON
   ============================================ */
.primary-btn {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #7a4b2f;
    color: #fff;
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn:hover {
    background-color: #2b1a12;
    transform: translateY(-2px);
}

.primary-btn.light-btn {
    background-color: #c7a489;
    color: #2b1a12;
}

.primary-btn.light-btn:hover {
    background-color: #fff;
    color: #2b1a12;
}

.btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.primary-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Text Link */
.text-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #7a4b2f;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #2b1a12;
}


/* ============================================
   HERO SECTION (Home)
   ============================================ */
.hero {
    background-color: #c7a489;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 80px 100px;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(122, 75, 47, 0.08);
    border-radius: 50%;
}

.hero-text {
    max-width: 600px;
    z-index: 1;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2b1a12;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #2b1a12;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #3d2a1e;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-image {
    z-index: 1;
}

.hero-logo-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.hero-logo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-logo-p {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 700;
    color: #2b1a12;
    line-height: 1;
}

.hero-logo-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    letter-spacing: 8px;
    color: #2b1a12;
    font-weight: 600;
}


/* ============================================
   ABOUT PREVIEW (Home)
   ============================================ */
.about-preview {
    padding: 100px 0;
    background-color: #f4f1ee;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-preview-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #2b1a12;
    line-height: 1.3;
}

.about-preview-right p {
    font-size: 17px;
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 25px;
}


/* ============================================
   OFFERINGS SECTION
   ============================================ */
.offerings {
    padding: 100px 0;
    background-color: #f4f1ee;
}

.offerings h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2b1a12;
}

.offering-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.card {
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #d8c5b8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #c7a489;
    display: block;
    margin-bottom: 15px;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2b1a12;
}

.card p {
    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}


/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background-color: #c7a489;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #2b1a12;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #2b1a12;
}

.stat-item p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #3d2a1e;
    letter-spacing: 0.5px;
    margin-top: 8px;
}


/* ============================================
   IMAGE BANNER
   ============================================ */
.image-banner {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #2b1a12, #7a4b2f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-banner-overlay {
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 800px;
}

.image-banner-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 15px;
}

.image-banner-overlay p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #c7a489;
    letter-spacing: 1px;
}


/* ============================================
   DARK SECTION (CTA)
   ============================================ */
.dark-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 100px 0;
}

.dark-content {
    max-width: 650px;
}

.dark-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.dark-description {
    font-size: 17px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 35px;
}


/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */
.page-hero {
    background-color: #c7a489;
    padding: 80px 0 90px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #2b1a12;
    margin-bottom: 15px;
}

.page-hero-desc {
    font-size: 18px;
    color: #3d2a1e;
    max-width: 600px;
    line-height: 1.7;
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-placeholder {
    background-color: #e8ddd4;
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d8c5b8;
}

.placeholder-inner {
    text-align: center;
    color: #7a4b2f;
}

.placeholder-inner span {
    font-size: 60px;
    display: block;
    margin-bottom: 10px;
}

.placeholder-inner p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-right h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #2b1a12;
    margin-bottom: 20px;
}

.about-right p {
    font-size: 16px;
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Mission & Vision */
.mission-vision {
    background-color: #fff;
    padding: 100px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mv-card {
    padding: 45px 35px;
    background-color: #f4f1ee;
    border-radius: 12px;
    border: 1px solid #d8c5b8;
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2b1a12;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: #f4f1ee;
}

.team-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #2b1a12;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #d8c5b8;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #e8ddd4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.team-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2b1a12;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 14px;
    color: #6b6b6b;
}


/* ============================================
   OFFERINGS DETAIL PAGE
   ============================================ */
.offerings-detail {
    padding: 100px 0;
}

.offering-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.offering-detail-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 50px 40px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #d8c5b8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.od-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f4f1ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border: 2px solid #d8c5b8;
}

.od-content .card-number {
    font-size: 28px;
    margin-bottom: 10px;
}

.od-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: #2b1a12;
    margin-bottom: 15px;
}

.od-content p {
    font-size: 16px;
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.od-content ul {
    margin-top: 10px;
}

.od-content ul li {
    font-size: 15px;
    color: #6b6b6b;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.od-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7a4b2f;
    font-weight: bold;
}


/* ============================================
   BLOG PAGE
   ============================================ */
.blog-section {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d8c5b8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-image-placeholder {
    height: 200px;
    background-color: #e8ddd4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.blog-card-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6b6b6b;
    letter-spacing: 0.5px;
}

.blog-category {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #7a4b2f;
    background-color: rgba(199, 164, 137, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2b1a12;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.newsletter-input {
    font-family: 'Inter', sans-serif;
    padding: 14px 24px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    min-width: 300px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: #c7a489;
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #2b1a12;
    margin-bottom: 15px;
}

.contact-left > p {
    font-size: 16px;
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background-color: #f4f1ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #d8c5b8;
}

.contact-info-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: #2b1a12;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 45px 40px;
    border-radius: 12px;
    border: 1px solid #d8c5b8;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #2b1a12;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Lora', serif;
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #d8c5b8;
    border-radius: 8px;
    font-size: 15px;
    color: #111;
    background-color: #f9f7f5;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c7a489;
    box-shadow: 0 0 0 3px rgba(199, 164, 137, 0.15);
}

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

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a4b2f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 5px;
}

/* Map */
.map-section {
    padding: 0 0 100px;
}

.map-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #2b1a12;
    margin-bottom: 30px;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d8c5b8;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #2b1a12;
    color: #fff;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #c7a489;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #c7a489;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #c7a489;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}


/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 40px;
    }

    .hero {
        padding: 60px 40px 80px;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-logo-circle {
        width: 250px;
        height: 250px;
    }

    .hero-logo-p {
        font-size: 80px;
    }

    .offering-grid,
    .mv-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .navbar {
        padding: 18px 25px;
    }

    .nav-links,
    .nav-right .admission-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 25px 70px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-description {
        max-width: 100%;
    }

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

    .hero-logo-circle {
        width: 200px;
        height: 200px;
    }

    .hero-logo-p {
        font-size: 60px;
    }

    .hero-logo-label {
        font-size: 12px;
        letter-spacing: 5px;
    }

    .offerings,
    .about-preview,
    .about-content,
    .mission-vision,
    .team-section,
    .offerings-detail,
    .blog-section,
    .contact-section {
        padding: 60px 0;
    }

    .offerings h2,
    .about-preview-left h2,
    .about-right h2,
    .team-section h2,
    .contact-left h2,
    .dark-content h2 {
        font-size: 30px;
    }

    .offering-grid,
    .mv-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-number {
        font-size: 38px;
    }

    .page-hero {
        padding: 50px 0 60px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .offering-detail-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 25px;
    }

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

    .image-banner {
        height: 300px;
    }

    .image-banner-overlay h2 {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 26px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ============================================
   NAV DOT (Hidden Disclosure Link)
   ============================================ */
.nav-dot {
    font-size: 10px !important;
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease !important;
    vertical-align: middle;
    margin-left: 15px !important;
}

.nav-dot:hover,
.nav-dot.active {
    opacity: 1;
    color: #2b1a12 !important;
    transform: scale(1.4);
}

.nav-dot::after {
    display: none !important;
}


/* ============================================
   DISCLOSURE PAGE
   ============================================ */
.disclosure-section {
    padding: 80px 0 100px;
    background-color: #f4f1ee;
}

.disclosure-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.doc-count {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #2b1a12;
}

.doc-count strong {
    font-weight: 600;
}

.disclosure-search {
    display: flex;
    align-items: center;
    gap: 0;
}

.search-input {
    font-family: 'Inter', sans-serif;
    padding: 10px 18px;
    border: 1px solid #d8c5b8;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    color: #111;
    background-color: #fff;
    outline: none;
    min-width: 250px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #c7a489;
}

.search-btn {
    padding: 10px 16px;
    background-color: #7a4b2f;
    color: #fff;
    border: 1px solid #7a4b2f;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #2b1a12;
}

/* Table Header */
.disclosure-table-header {
    display: grid;
    grid-template-columns: 1fr 180px 200px;
    padding: 15px 30px;
    background-color: #2b1a12;
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dt-action {
    text-align: right;
}

.dt-date {
    text-align: center;
}

/* Document Cards */
.disclosure-list {
    display: flex;
    flex-direction: column;
}

.disclosure-card {
    display: grid;
    grid-template-columns: 50px 1fr 180px 200px;
    align-items: center;
    padding: 22px 30px;
    background-color: #fff;
    border: 1px solid #e8ddd4;
    border-top: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.disclosure-card:last-child {
    border-radius: 0 0 10px 10px;
}

.disclosure-card:hover {
    background-color: #faf7f4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.dc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #2b1a12;
}

.dc-date {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b6b6b;
    text-align: center;
}

.dc-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #d8c5b8;
    background-color: #f4f1ee;
    color: #7a4b2f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: #7a4b2f;
    color: #fff;
    border-color: #7a4b2f;
}

.action-btn:hover svg {
    stroke: #fff;
}

.file-size {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999;
    min-width: 55px;
    text-align: right;
}

/* Disclosure Responsive */
@media (max-width: 768px) {
    .disclosure-table-header {
        display: none;
    }

    .disclosure-card {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        gap: 8px 15px;
        padding: 18px 20px;
    }

    .dc-icon {
        grid-row: 1 / 3;
    }

    .dc-date {
        grid-column: 2;
        text-align: left;
        font-size: 12px;
    }

    .dc-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
        margin-top: 8px;
    }

    .search-input {
        min-width: 150px;
    }
}
