:root {
    --primary-color: #F28C38;
    /* Saffron */
    --secondary-color: #1D2D44;
    /* Navy Blue */
    --accent-color: #E67E22;
    --text-color: #333333;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Header & Nav */
header {
    background: var(--bg-white);
    padding: 10px 0;
    /* Reduced from 25px for a more compact fit */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    /* Adjust height as needed */
    width: auto;
}

.trust-name {
    font-size: 1.6rem;
    /* Slightly larger font */
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.btn-donate {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 5px;
}

.btn-donate:hover {
    background: var(--accent-color);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?auto=format&fit=crop&q=80&w=2073&ixlib=rb-4.0.3') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29, 45, 68, 0.8), rgba(29, 45, 68, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 700px;
}

.subline {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Base Button Style */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 5px;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        height: calc(100vh - 80px);
        transition: 0.5s;
        padding: 50px 20px;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-secondary {
        margin-left: 0;
    }
}

/* Layout Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* About Section */
.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Mission & Vision Cards */
.card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--text-light);
}

/* Schools Section */
.school-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.school-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.school-info {
    padding: 30px;
}

.school-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.focus-list {
    margin: 20px 0 30px;
}

.focus-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.focus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Section */
.contact-info h3,
.contact-schools h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

@media (max-width: 991px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img {
        order: -1;
    }

    .school-info .btn {
        width: 100%;
        text-align: center;
    }
}