:root {
    --bg-light: #f5f5f5;
    --text-main: #333;
    --text-muted: rgba(65, 70, 81, 1);
    --white: #ffffff;
    --black: #000000;
    
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Urbanist", sans-serif;
    background-color: #ffffff;
    color: var(--text-main);
}

a {
    color: inherit;
    text-decoration: none;
}

/* A generic centered container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
       font-family: "Urbanist", sans-serif;
}

/* ================= HERO ================= */

/* ================= HERO ================= */

.hero {
    position: relative;
    height: 56vh;              /* ✅ reduced height */
    max-height: 520px;
    overflow: hidden;
}

/* Background image */
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.55) 70%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Inner container */
.hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
}

.hero-link {
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Bottom-aligned content */
.hero-content {
    margin-top: auto;          /* ✅ pushes text down */
    padding-bottom: 120px;      /* ✅ distance from bottom */
    text-align: center;
}

/* Title */
.hero-title {
    color: #ffffff;
    font-size:35px;
    font-weight: 600;
    
}
.hero-content p{
      color: #ffffff;
    font-size:16px;
    font-weight: 500;
    text-align: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .hero {
        height: 50vh;
    }

    .hero-content {
        padding-bottom: 55px;
    }

    .hero-title {
        letter-spacing: 0.2em;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 45vh;
    }

    .hero-content {
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 0.18em;
    }
}


/* Very small phones */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.3rem;
        letter-spacing: 0.12em;
    }

    .hero-center {
        padding: 0 10px;
    }
}
/* Center logo */
.hero-logo {
    height: 60px;
    object-fit: contain;
}


        /* ================= ABOUT SECTION ================= */

        .about-section {
            background-color: var(--white);
            padding: 80px 0;
        }

        .about-card-wrap {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .about-card {
            background-color: var(--white);
            padding: 60px 60px 70px;
            text-align: left;
        }

        .about-heading {
            text-align: center;
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 24px;
            color: rgba(37, 43, 55, 1);
        }

        .about-text {
            font-size: 20px;
            font-weight: 500;
            line-height: 1.9;
            color: var(--text-muted);
            margin-bottom: 18px;
            text-align: center; 
        }

        .about-text:last-child {
            margin-bottom: 0;
        }

        /* ================= VISION / MISSION ================= */
.vision-mission {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    color: #fff;
}

/* Background image */
.vision-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay */
.vision-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Content */
.vision-mission-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 60px;
    justify-content: center;
    text-align: center;
}

/* Cards */
.vm-card {
    flex: 1;
}

.vm-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.vm-text {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .vision-mission-inner {
        flex-direction: column;
        gap: 30px;
        padding: 60px 20px;
    }
}

        /* ================= VALUES SECTION ================= */
.values-section {
    background: #f6f6f6;
    padding: 80px 0;
}

.values-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.values-heading {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-item {
    max-width: 240px;
}

.icon-circle {
    width: 46px;
    height: 46px;
    background: #eeeeee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.icon-circle i {
    font-size: 18px;
    color: #000;
}

.value-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-text {
    font-size: 0.82rem;
    line-height: 1.6;
    color: #777;
}

/* Mobile */
@media (max-width: 768px) {
    .values-grid {
        gap: 30px;
    }

    .value-item {
        max-width: 100%;
    }
}
.vision-mission-inner {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 0 auto;
    padding: 100px 24px;            /* 🔹 more breathing room */
    display: flex;
    gap: 100px;                     /* 🔹 BIGGER spacing between cards */
    justify-content: center;
    text-align: center;
}

/* Cards */
.vm-card {
    flex: 1;
    max-width: 320px;               /* ✅ limits line length */
}

/* Titles */
.vm-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 20px;            /* 🔹 stronger separation */
    letter-spacing: 0.04em;
}

/* Text */
.vm-text {
    font-size: 0.95rem;
    line-height: 2;                 /* ✅ elegant reading flow */
    opacity: 0.9;
}


/* ======== About Section ======= */

.about-section img {
    object-fit: cover;
}
.btn-white {
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.btn-white:hover {
    background-color: #f8f9fa;
    color: #000;
}

.about_h3 {
      font-family: "Urbanist", sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.about_p {
      font-family: "Urbanist", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.about_btn button {
    margin-top: 40px;
    border: none;
    background-color: white;
    padding: 7px 16px;
    border-radius: 5px;
    font-family: "Inter";
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-section .image-wrapper {
        height: 250px !important;
    }
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    background: linear-gradient(90deg, #4e4e4e 0%, #000 100%);
    color: #fff;
    margin: 20px 0;
    padding: 40px 0;
    position: relative;
}

.newsletter-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

/* Left side (Image) */
.newsletter-left {
    flex: 1 1 45%;
    text-align: center;
}

.newsletter-left img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Right side (Text + Form) */
.newsletter-right {
    flex: 1 1 45%;
}

.newsletter-right h3 {
    font-size: 2rem;
    font-weight: 600;
    font-family: "Urbanist", sans-serif;
    margin-bottom: 15px;
}

.newsletter-right p {
    color: #ccc;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    margin-bottom: 40px;
}

/* Form */
.newsletter-right form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 400px;
}

.newsletter-right input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
}

.newsletter-right input[type="email"]::placeholder {
    color: rgba(164, 167, 174, 1);
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 1;
}

.newsletter-right button {
    background-color: rgba(244, 174, 38, 1);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-right button:hover {
    background-color: #d99a00;
}

/* ===== Tablet & Medium Screens ===== */
@media (max-width: 900px) {
    .newsletter-container {
        position: relative;
        padding: 0;
        display: block;
    }

    /* Image as background */
    .newsletter-left {
        width: 100%;
        height: 250px;
        position: relative;
        overflow: hidden;
    }

    .newsletter-left img {
        position: absolute;
        top: 0;
        left: 0;

        /* make image wider so shifting doesn't expose gaps */
        width: 150%;
        height: 100%;
        object-fit: cover;

        /* OPTIONAL fine-tuning: how much of the left to show */
        object-position: 10% center;

        /* shift more left, but now safely */
        transform: translateX(-25%);
        transform-origin: left center;

        filter: brightness(0.4);
    }

    /* Text overlays image */
    .newsletter-right {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: center;
        color: #fff;
    }

    .newsletter-right h3 {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .newsletter-right p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .newsletter-right form {
        display: flex;
        flex-direction: row;
        gap: 6px;
        justify-content: center;
        width: 100%;
        flex-wrap: nowrap;
        margin-top: 10px;
    }

    .newsletter-right input[type="email"] {
        flex: 1 1 auto;
        min-width: 0;
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .newsletter-right button {
        padding: 6px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
}
