:root {
    --saffron: #ff9933;
    --blue: #0d3b66;
}

body {
    font-family: "Segoe UI", sans-serif;
}

.navbar {
    background-color: var(--blue);
}

.navbar-brand,
.nav-link {
    color: #fff !important;
}

.nav-link:hover {
    color: var(--saffron) !important;
}

.section {
    padding: 70px 0;
}

.section-title {
    color: var(--blue);
    margin-bottom: 30px;
    text-align: center;
}

.hero {
    background: linear-gradient(rgba(13,59,102,0.75), rgba(13,59,102,0.75)),
        url("https://via.placeholder.com/1600x600") center/cover;
    color: #fff;
    padding: 140px 0;
    text-align: center;
}

.btn-saffron {
    background-color: var(--saffron);
    color: #fff;
    border: none;
}

.btn-saffron:hover {
    background-color: #e88920;
}

footer {
    background-color: var(--blue);
    color: #ddd;
}

.gallery img, .section img {
    width: 100%;       /* full width of container column */
    max-height: 300px; /* prevents very tall images */
    object-fit: cover; /* crops image nicely if too tall */
    border-radius: 6px;
}

.hero {
    background: linear-gradient(rgba(255, 119, 34, 0.65), rgba(255,119,34,0.65)),
        url('./images/banner.jpg') center/cover no-repeat;
    padding: 140px 20px;
}

.hero-logo {
    font-size: 2rem;
}

.hero-text {
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 10px;
    }
    .hero-logo {
        font-size: 1.5rem;
    }
    .hero-text {
        font-size: 1.2rem;
    }
}


/* Hero & Navbar Logo */
.hero-logo,
.navbar .navbar-brand img {
    max-width: 180px;   /* Maximum width of logo */
    height: auto;       /* Keeps aspect ratio */
}

/* Optional: smaller logo on mobile */
@media (max-width: 768px) {
    .hero-logo,
    .navbar .navbar-brand img {
        max-width: 130px;
    }
}


.testimonial-comment + .testimonial-comment {
    margin-top: 10px; /* spacing between English & Hindi text */
}


.testimonial {
    padding: 120px 0;             /* Section height */
    background-color: #f8f9fa;    /* Light background */
}

.testimonial-img {
    width: 100%;          /* Fills column width */
    max-width: 200px;     /* Limit max width */
    height: auto;         /* Maintain aspect ratio */
    object-fit: contain;  /* Entire image visible */
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.testimonial-name {
    color: #0d3b66;       /* Dark blue */
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-designation {
    color: #ff9933;       /* Saffron */
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonial-comment {
    font-size: 1.2rem;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .testimonial-img {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .testimonial {
        padding: 100px 20px;
        text-align: center;
    }
    .testimonial-img {
        max-width: 200px;
        margin-bottom: 20px;
    }
    .testimonial-comment {
        font-size: 1.1rem;
    }
}
