﻿body {
    margin: 0;
    font-family: Arial;
}

/* HEADER */
header {
    background: #002147;
    color: white;
    padding: 15px 40px;
}

.container {
    display: flex;
    justify-content: space-between;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

/* SECTION */
.section {
    padding: 50px;
    text-align: center;
}

.footer {
    background-color: #0a0a0a; /* ✅ black background */
    color: #ffffff; /* white text */
    font-family: Arial, sans-serif;
}

/* Top Section */
.footer-top {
    padding: 30px 60px;
}

/* Social + Newsletter */
.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Social Icons */
.social span {
    margin-right: 15px;
    font-weight: bold;
}

.social a {
    color: white;
    margin-right: 10px;
    font-size: 18px;
    border: 1px solid #ffffff;
    padding: 8px;
    border-radius: 50%;
    transition: 0.3s;
}

    /* Hover Effect */
    .social a:hover {
        background-color: #12a89d;
        border-color: #12a89d;
    }

/* Newsletter */
.newsletter {
    display: flex;
    gap: 10px;
}

.email-box {
    padding: 10px;
    border-radius: 25px;
    border: none;
    width: 250px;
}

/* Button */
.subscribe-btn {
    background-color: #12a89d; /* teal button */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

    .subscribe-btn:hover {
        background-color: #0f8f85;
    }

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Columns */
.footer-col {
    width: 40%;
}

    /* Links */
    .footer-col ul {
        list-style: none;
        padding: 0;
    }

        .footer-col ul li {
            margin: 8px 0;
        }

            .footer-col ul li a {
                color: #cccccc;
                text-decoration: none;
            }

                .footer-col ul li a:hover {
                    color: #12a89d;
                }

/* Bottom Bar */
.footer-bottom {
    background-color: #000000;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    border-top: 1px solid #222;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    font-size: 16px;
}
.about-section {
    background: #f4f6f9;
    padding: 60px 80px;
    text-align: center;
}

/* Title */
.about-title {
    font-size: 32px;
    color: #0a0a0a;
    margin-bottom: 30px;
    position: relative;
}

    /* Underline */
    .about-title::after {
        content: "";
        width: 60px;
        height: 3px;
        background: #0a0a0a;
        display: block;
        margin: 10px auto 0;
        border-radius: 5px;
    }

/* Card Layout */
.about-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    gap: 20px;
}

/* Image */
.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
}

/* Content */
.about-content {
    text-align: left;
}

    .about-content h3 {
        color: #d63384;
        margin-bottom: 10px;
    }

    /* Text */
    .about-content p {
        color: #555;
        line-height: 1.7;
        font-size: 14px;
    }

    /* List */
    .about-content ul {
        margin: 15px 0;
        padding-left: 20px;
    }

        .about-content ul li {
            margin-bottom: 8px;
            color: #333;
        }

/* Highlight */
.highlight {
    background: #f1f1f1;
    padding: 10px;
    border-left: 4px solid #0d6efd;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-card {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }
}
.objectives-section {
    padding: 60px 80px;
    background: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 30px;
    margin-bottom: 40px;
    color: #d63384;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.objective-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

    .objective-card:hover {
        transform: translateY(-5px);
        background: #12a89d;
        color: white;
    }

.csr-section {
    padding: 60px 80px;
    background: #ffffff;
    text-align: center;
}

.csr-intro {
    max-width: 800px;
    margin: auto;
    color: #555;
    margin-bottom: 30px;
}

.csr-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.csr-item {
    background: #f4f6f9;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    border-left: 4px solid #12a89d;
    transition: 0.3s;
}

    .csr-item:hover {
        background: #12a89d;
        color: white;
    }


.csr-utilization {
    padding: 60px 80px;
    background: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 30px;
    color: #d63384;
    margin-bottom: 20px;
}

.csr-intro {
    color: #555;
    margin-bottom: 30px;
}

.utilization-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ✅ 3 cards per row */
    gap: 20px;
}

.util-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .util-card h3 {
        color: #12a89d;
        margin-bottom: 10px;
    }

    .util-card p {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
    }

    .util-card ul {
        padding-left: 18px;
        margin-bottom: 10px;
    }

        .util-card ul li {
            margin-bottom: 6px;
            font-size: 14px;
            color: #333;
        }

    /* Hover Effect */
    .util-card:hover {
        background: #12a89d;
        color: white;
    }

        .util-card:hover h3,
        .util-card:hover p,
        .util-card:hover li {
            color: white;
        }

@media (max-width: 992px) {
    .utilization-grid {
        grid-template-columns: repeat(2, 1fr); /* tablet */
    }
}

@media (max-width: 600px) {
    .utilization-grid {
        grid-template-columns: 1fr; /* mobile */
    }
}

.util-card {
    background: #ffffff; /* white card */
    padding: 20px;
    border-radius: 14px;
    text-align: left;
    /* 🔥 Highlight Effect */
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border: 1px solid #e5e5e5;
    transition: 0.3s;
}

    /* Heading BLACK */
    .util-card h3 {
        color: #000000; /* ✅ black heading */
        margin-bottom: 10px;
        font-weight: 600;
    }

    /* Text */
    .util-card p {
        color: #555;
    }

    .util-card ul li {
        color: #333;
    }

    /* 🔥 Hover Effect (premium feel) */
    .util-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        border-color: #12a89d;
    }

.top-bar {
    background: #7a1f1f;
    color: white;
    font-size: 13px;
    padding: 5px 20px;
}

    .top-bar a {
        color: white;
        text-decoration: none;
    }

/* HEADER */
.header-main {
    background: #f8f8f8;
    padding: 10px 20px;
}

.logo-img {
    width: 60px;
    margin-right: 10px;
}

.logo-section h4 {
    margin: 0;
    font-weight: bold;
}

/* BUTTONS */
.header-buttons .btn {
    padding: 10px 15px;
    margin-left: 10px;
    text-decoration: none;
    color: white;
    border-radius: 4px;
}

.btn.red {
    background: #7a1f1f;
}

.btn.blue {
    background: #1c4d6e;
}
/* MENU CONTAINER */
.main-menu {
    background: #fff;
    border-bottom: 2px solid #b30000;
}

    /* CENTER ALIGN */
    .main-menu ul {
        list-style: none;
        display: flex;
        justify-content: center; /* ⭐ CENTER */
        align-items: center;
        gap: 25px;
        margin: 0;
        padding: 12px 0;
    }

        /* MENU LINKS */
        .main-menu ul li a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            font-weight: 600;
            padding: 5px 0;
            position: relative;
            transition: 0.3s;
        }

            /* HOVER EFFECT (underline animation 🔥) */
            .main-menu ul li a::after {
                content: "";
                position: absolute;
                width: 0%;
                height: 2px;
                background: #b30000;
                left: 0;
                bottom: -5px;
                transition: 0.3s;
            }

            .main-menu ul li a:hover::after {
                width: 100%;
            }

            .main-menu ul li a:hover {
                color: #b30000;
            }

            /* ACTIVE MENU */
            .main-menu ul li a.active {
                color: #b30000;
            }

                .main-menu ul li a.active::after {
                    width: 100%;
                }

.top-header {
    background: #000;
    text-align: center; /* ⭐ center align */
    padding: 15px 0;
}

    .top-header h2 {
        color: #fff;
        margin: 0;
        font-size: 22px;
        font-weight: bold;
    }

    .top-header p {
        color: #ccc;
        margin: 5px 0 0 0; /* thoda gap niche */
        font-size: 14px;
    }