body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* ===== GLOBAL RESET ===== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* ===== PAGE TITLE ===== */
.page-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin: 60px 0 40px 0;
    color: #1f2937;
    letter-spacing: 1px;
}

/* ===== HEADER ===== */
.header {
    background-color: #003300;
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* ===== SECTIONS ===== */
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    gap: 50px;
    background-color: white;
}

.section:nth-child(even) {
    background-color: #e6e6e6;
}

.text-box {
    width: 50%;
}

.text-box h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #003300;
}

.text-box p {
    font-size: 18px;
    line-height: 1.6;
}

/* ===== IMAGE BOX ===== */
.image-box {
    width: 40%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.image-box:hover img {
    transform: scale(1.1);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 50px 20px;
    text-align: center;
}

.benefits h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: black;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.benefit-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.benefit-card:hover {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* ===== QUALIFICATIONS GRID ===== */
.container {
    max-width: 1400px;
    margin: 0 auto 80px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* ===== CARD DESIGN ===== */
.card {
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid #0f5132;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Card Titles */
.card h2 {
    color: #0f5132;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Lists */
.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
}

/* ===== FULLSCREEN GALLERY ===== */
.gallery-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.gallery {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.gallery img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    gap: 50px;
    background-color: white;
}

.contact-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-inputs {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-inputs:focus {
    outline: none;
    border: 1px solid green;
}

button {
    background-color: yellow;
    padding: 12px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: lightgreen;
}

.contact-right img {
    width: 300px;
    border-radius: 10px;
}

/* ===== SOCIAL NAVBAR ===== */
.social-navbar {
    background-color: #003300;
    padding: 20px;
    text-align: center;
}

.social-navbar a {
    color: white;
    font-size: 20px;
    margin: 0 15px;
    text-decoration: none;
    transition: 0.3s;
}

.social-navbar a:hover {
    color: yellow;
}

.video-background {
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

