﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #673DB5;
    --primary-dark: #4f2c91;
    --primary-light: #f4efff;
}
/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    min-height: 72px;
    padding: 10px 0;
    background: #ffffff;
    border-top: 5px solid #405be3;
    z-index: 1000;
}


/* =====================================================
   BRAND
===================================================== */

.navbar-brand {
    color: #405be3 !important;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: .3px;
    text-decoration: none;
}

    .navbar-brand:hover {
        color: #d71920 !important;
    }


/* =====================================================
   NAV LINKS
===================================================== */

.navbar-nav {
    align-items: center;
    gap: 5px;
}


.navbar .nav-link {
    position: relative;
    padding: 10px 15px !important;
    color: #263746 !important;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
}


    /* Hover */

    .navbar .nav-link:hover {
        color: #d71920 !important;
    }


    /* =====================================================
   ACTIVE UNDERLINE
===================================================== */

    .navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 3px;
        height: 3px;
        background: #d71920;
        border-radius: 10px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .3s ease;
    }


    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
        transform: scaleX(1);
    }


    /* Active */

    .navbar .nav-link.active {
        color: #405be3 !important;
        font-weight: 700;
    }


/* =====================================================
   TOGGLER
===================================================== */

.navbar-toggler {
    padding: 7px 9px;
    border: 1px solid #405be3;
    border-radius: 7px;
    box-shadow: none !important;
}


    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(6,52,91,.10) !important;
    }


/* Bootstrap icon */

.navbar-toggler-icon {
    width: 22px;
    height: 22px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .navbar {
        min-height: 62px;
        padding: 8px 12px;
    }


    .navbar-brand {
        font-size: 21px;
    }


    .navbar-collapse {
        margin-top: 10px;
        padding: 8px 0 5px;
        border-top: 1px solid #edf0f3;
    }


    .navbar-nav {
        align-items: stretch;
        gap: 0;
    }


    .navbar .nav-link {
        padding: 11px 12px !important;
        border-radius: 6px;
        font-size: 14px;
    }


        .navbar .nav-link:hover {
            background: #f5f8fb;
        }


        .navbar .nav-link::after {
            display: none;
        }


        .navbar .nav-link.active {
            color: #ffffff !important;
            background: #405be3;
        }
}

/* =====================================================
   PAGE BANNER
===================================================== */

.page-banner {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 20px;
    background-image: url("images/contact-banner.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}


    /* =====================================================
   DARK OVERLAY
===================================================== */

    .page-banner .overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: url('img/breadcrum.png');
        background-position: center;
        z-index: 1;
    }

    /*.page-banner img {
        height: 350px;
    }*/

    /* =====================================================
   PAGE TITLE
===================================================== */

    .page-banner h4 {
        position: relative;
        z-index: 2;
        margin: 0;
        color: #ffffff;
        font-size: 34px;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-align: center;
    }


        /* Gold line below title */

        .page-banner h4::after {
            content: "";
            display: block;
            width: 55px;
            height: 4px;
            margin: 10px auto 0;
            background: #f3c84b;
            border-radius: 10px;
        }


    /* =====================================================
   BREADCRUMB
===================================================== */

    .page-banner .breadcumb {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
    }


        /* Home */

        .page-banner .breadcumb a {
            color: #ffffff;
            text-decoration: none;
            transition: color .3s ease;
        }


            .page-banner .breadcumb a:hover {
                color: #f3c84b;
            }


        /* > */

        .page-banner .breadcumb span:nth-child(2) {
            color: #f3c84b;
            font-size: 18px;
            font-weight: 700;
        }


        /* Current page */

        .page-banner .breadcumb span:last-child {
            color: #f3c84b;
            font-weight: 700;
        }


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 768px) {

    .page-banner {
        min-height: 210px;
        padding: 30px 15px;
        gap: 9px;
    }


        .page-banner h4 {
            font-size: 27px;
            letter-spacing: 1px;
        }


            .page-banner h4::after {
                width: 45px;
                height: 3px;
                margin-top: 8px;
            }


        .page-banner .breadcumb {
            font-size: 14px;
            gap: 8px;
        }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 480px) {

    .page-banner {
        min-height: 160px;
        padding: 25px 10px;
        gap: 7px;
    }


        .page-banner h4 {
            font-size: 22px;
            letter-spacing: .8px;
        }


            .page-banner h4::after {
                width: 38px;
                height: 3px;
                margin-top: 6px;
            }


        .page-banner .breadcumb {
            font-size: 12px;
            gap: 7px;
        }


            .page-banner .breadcumb span:nth-child(2) {
                font-size: 15px;
            }
}
/* =====================================================
   CONTACT SECTION
===================================================== */

.contact {
    position: relative;
    width: 100%;
    padding: 70px 0;
    background: linear-gradient( 135deg, #f8fbff 0%, #ffffff 50%, #f4f8fc 100% );
    overflow: hidden;
}


    /* =====================================================
   BACKGROUND DECORATION
===================================================== */

    .contact::before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        left: -140px;
        top: -100px;
        border-radius: 50%;
        background: rgba(6, 52, 91, 0.05);
    }


    .contact::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        right: -150px;
        bottom: -130px;
        border-radius: 50%;
        background: rgba(215, 25, 32, 0.05);
    }


    /* =====================================================
   CONTAINER
===================================================== */

    .contact .container {
        position: relative;
        z-index: 2;
    }


    /* =====================================================
   LEFT SIDE
===================================================== */

    .contact h4 {
        margin: 0 0 12px;
        color: #405be3;
        font-size: 32px;
        font-weight: 800;
        text-transform: capitalize;
        position: relative;
        display: inline-block;
    }


        /* Red underline */

        .contact h4::after {
            content: "";
            display: block;
            width: 55px;
            height: 4px;
            margin-top: 8px;
            background: #d71920;
            border-radius: 10px;
        }


    .contact p {
        max-width: 500px;
        margin: 0 0 25px;
        color: #66727d;
        font-size: 16px;
        line-height: 1.7;
    }


    /* =====================================================
   CONTACT LIST
===================================================== */

    .contact .list-group {
        border: none;
        background: transparent;
        gap: 12px;
    }


        .contact .list-group li {
            display: flex;
            align-items: center;
            min-height: 52px;
            padding: 12px 16px;
            color: #263746;
            background: #ffffff;
            border: 1px solid #e3eaf0;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 500;
            box-shadow: 0 4px 14px rgba(0,0,0,.06);
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
        }


            .contact .list-group li:hover {
                transform: translateX(5px);
                border-color: #d71920;
                box-shadow: 0 7px 18px rgba(0,0,0,.10);
            }


            /* Icons */

            .contact .list-group li i {
                width: 34px;
                height: 34px;
                flex-shrink: 0;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                background: linear-gradient( 135deg, #405be3, #8458d4 );
                border-radius: 8px;
                font-size: 16px;
            }


    /* =====================================================
   FORM CARD
===================================================== */

    .contact form {
        padding: 30px;
        background: #ffffff;
        border: 1px solid #e1e8ee;
        border-radius: 18px;
        box-shadow: 0 10px 35px rgba(6,52,91,.10);
    }


    /* =====================================================
   FORM INPUT
===================================================== */

    .contact .form-control {
        min-height: 48px;
        padding: 10px 14px;
        color: #263746;
        background: #f9fbfd;
        border: 1px solid #dce4eb;
        border-radius: 8px;
        font-size: 14px;
        box-shadow: none;
        transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
    }


        .contact .form-control:focus {
            color: #263746;
            background: #ffffff;
            border-color: #405be3;
            box-shadow: 0 0 0 3px rgba(6,52,91,.08);
        }


        /* Placeholder */

        .contact .form-control::placeholder {
            color: #9aa6b1;
            font-size: 13px;
        }


    /* =====================================================
   TEXTAREA
===================================================== */

    .contact textarea.form-control {
        min-height: 120px;
        resize: vertical;
    }


    /* =====================================================
   SUBMIT BUTTON
===================================================== */

    .contact form .btn-primary {
        width: 100%;
        min-height: 48px;
        margin-top: 5px;
        border: none;
        border-radius: 8px;
        color: #ffffff;
        background: linear-gradient( 135deg, #405be3, #8458d4 );
        font-size: 15px;
        font-weight: 700;
        letter-spacing: .3px;
        box-shadow: 0 5px 14px rgba(6,52,91,.20);
        transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
    }


        .contact form .btn-primary:hover {
            transform: translateY(-2px);
            background: linear-gradient( 135deg, #d71920, #ef3035 );
            box-shadow: 0 7px 18px rgba(215,25,32,.25);
        }


        .contact form .btn-primary:active {
            transform: translateY(0);
        }


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .contact {
        padding: 55px 0;
    }

        .contact h4 {
            font-size: 28px;
        }

        .contact form {
            margin-top: 25px;
        }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .contact {
        padding: 40px 0;
    }

        .contact h4 {
            font-size: 25px;
            margin-bottom: 10px;
        }

            .contact h4::after {
                width: 45px;
                height: 3px;
                margin-top: 6px;
            }

        .contact p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 18px;
        }


        /* Contact information */

        .contact .list-group {
            gap: 8px;
        }

            .contact .list-group li {
                min-height: 46px;
                padding: 9px 10px;
                font-size: 13px;
                border-radius: 8px;
            }

                .contact .list-group li i {
                    width: 30px;
                    height: 30px;
                    font-size: 14px;
                    border-radius: 7px;
                }


        /* Form */

        .contact form {
            margin-top: 25px;
            padding: 20px 15px;
            border-radius: 14px;
        }

        .contact .form-control {
            min-height: 45px;
            font-size: 13px;
        }

        .contact textarea.form-control {
            min-height: 105px;
        }

        .contact form .btn-primary {
            min-height: 45px;
            font-size: 14px;
        }
}
/* =====================================================
   FOOTER
===================================================== */

footer {
    position: relative;
    width: 100%;
    padding: 55px 0 25px;
    color: #ffffff;
    background: linear-gradient( 135deg, #309b78 0%, #405be3 55%, #4b2888 100% );
    overflow: hidden;
}


    /* =====================================================
   DECORATIVE BACKGROUND
===================================================== */

    footer::before {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        left: -120px;
        top: -120px;
        border-radius: 50%;
        border: 40px solid rgba(255,255,255,.025);
    }


    footer::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        right: -100px;
        bottom: -120px;
        border-radius: 50%;
        border: 35px solid rgba(215,25,32,.08);
    }


    /* =====================================================
   CONTAINER
===================================================== */

    footer .container {
        position: relative;
        z-index: 2;
    }


    /* =====================================================
   FOOTER COLUMNS
===================================================== */

    footer .row > div {
        position: relative;
        padding: 0 25px;
        margin-bottom: 25px;
    }


        /* Vertical divider */

        footer .row > div:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 5px;
            right: 0;
            width: 1px;
            height: 85%;
            background: rgba(255,255,255,.15);
        }


    /* =====================================================
   HEADING
===================================================== */

    footer h4 {
        position: relative;
        display: inline-block;
        margin: 0 0 18px;
        color: #ffffff;
        font-size: 21px;
        font-weight: 700;
        letter-spacing: .3px;
    }


        /* Gold underline */

        footer h4::after {
            content: "";
            display: block;
            width: 45px;
            height: 3px;
            margin-top: 8px;
            background: #f3c84b;
            border-radius: 10px;
        }


    /* =====================================================
   ABOUT TEXT
===================================================== */

    footer p {
        margin: 0;
        max-width: 450px;
        color: rgba(255,255,255,.75);
        font-size: 14px;
        line-height: 1.8;
    }


    /* =====================================================
   QUICK LINKS
===================================================== */

    footer .quick-links {
        padding: 0;
        margin: 0;
        list-style: none;
    }


        footer .quick-links li {
            margin-bottom: 9px;
        }


        footer .quick-links a {
            color: rgba(255,255,255,.78);
            text-decoration: none;
            font-size: 14px;
            transition: all .3s ease;
        }


            footer .quick-links a:hover {
                color: #f3c84b;
                padding-left: 5px;
            }


    /* =====================================================
   CONTACT
===================================================== */

    footer .contact-info {
        margin: 0;
        padding: 0;
        list-style: none;
    }


        footer .contact-info li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: rgba(255,255,255,.8);
            font-size: 14px;
        }


        footer .contact-info i {
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-right: 10px;
            color: #ffffff;
            background: #d71920;
            border-radius: 7px;
            font-size: 14px;
        }


    /* =====================================================
   FOOTER BOTTOM
===================================================== */

    footer .footer-bottom {
        position: relative;
        z-index: 2;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,.15);
        text-align: center;
        color: rgba(255,255,255,.65);
        font-size: 12px;
    }


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    footer {
        padding: 45px 0 20px;
    }

        footer .row > div {
            padding: 0 15px;
            margin-bottom: 25px;
        }

            footer .row > div::after {
                display: none;
            }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    footer {
        padding: 35px 0 18px;
    }


        footer .row > div {
            padding: 0 15px;
            margin-bottom: 22px;
        }


        footer h4 {
            font-size: 19px;
            margin-bottom: 14px;
        }


            footer h4::after {
                width: 38px;
                height: 2px;
                margin-top: 6px;
            }


        footer p {
            font-size: 13px;
            line-height: 1.7;
        }


        footer .quick-links a,
        footer .contact-info li {
            font-size: 13px;
        }


        footer .contact-info i {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }


        footer .footer-bottom {
            margin-top: 5px;
            padding-top: 15px;
            font-size: 11px;
        }
}
/* =====================================================
   GLOBAL
===================================================== */

.home-hero,
.home-overview,
.campaign-goals,
.reality-section,
.complete-info,
.demands-section,
.final-appeal {
    font-family: Arial, Helvetica, sans-serif;
}

    .home-hero .container,
    .home-overview .container,
    .campaign-goals .container,
    .reality-section .container,
    .complete-info .container,
    .demands-section .container,
    .final-appeal .container {
        position: relative;
        z-index: 2;
    }


/* =====================================================
   HERO
===================================================== */

.home-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: linear-gradient( 135deg, #309b78, #405be3 );
    overflow: hidden;
}


    .home-hero::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -180px;
        top: -180px;
        border: 80px solid rgba(243,200,75,.08);
        border-radius: 50%;
    }


.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('img/msme-banner.png');
    background-size: cover;
    background-position: center center;
    opacity: 0.7;
}


.hero-content {
    max-width: 720px;
    padding: 80px 0;
}


.hero-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 15px;
    color: #f3c84b;
    border: 1px solid rgba(243,200,75,.5);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
}


.hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: 62px;
    line-height: 1.05;
    font-weight: 800;
}


.hero-content h2 {
    margin: 5px 0 18px;
    color: #f3c84b;
    font-size: 32px;
    font-weight: 700;
}


.hero-content p {
    max-width: 620px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.7;
}


/* Hero buttons */

.hero-buttons {
    display: flex;
    gap: 12px;
}


.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    padding: 12px 22px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s ease;
}


.primary-btn {
    color: #ffffff;
    background: #d71920;
}


    .primary-btn:hover {
        color: #ffffff;
        background: #ef3035;
        transform: translateY(-2px);
    }


.outline-btn {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.6);
}


    .outline-btn:hover {
        color: #405be3;
        background: #ffffff;
    }


/* =====================================================
   COMMON SECTION HEADING
===================================================== */

.home-overview,
.complete-info {
    padding: 80px 0;
}


.section-heading {
    margin-bottom: 45px;
    text-align: center;
}


    .section-heading > span {
        color: #d71920;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }


    .section-heading h2 {
        margin: 8px 0 0;
        color: #405be3;
        font-size: 34px;
        font-weight: 800;
    }


.heading-line {
    width: 55px;
    height: 4px;
    margin: 12px auto 0;
    background: #f3c84b;
    border-radius: 10px;
}


/* =====================================================
   OVERVIEW
===================================================== */

.home-overview {
    background: #ffffff;
}


.overview-box {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #f7fafc;
    border: 1px solid #e2e9ef;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(6,52,91,.07);
}


.overview-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #405be3;
    border-radius: 14px;
    font-size: 27px;
}


.overview-content h3 {
    margin: 0 0 10px;
    color: #405be3;
    font-size: 24px;
    font-weight: 800;
}


.overview-content p {
    margin-bottom: 10px;
    color: #596b7a;
    font-size: 15px;
    line-height: 1.8;
}


/* =====================================================
   KEY GOALS
===================================================== */

.campaign-goals {
    padding: 80px 0;
    background: linear-gradient( 135deg, #309b78, #405be3 );
}


.light-heading h2 {
    color: #ffffff;
}


.light-heading > span {
    color: #d3af37;
}


.goal-card {
    position: relative;
    height: 100%;
    padding: 30px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
}


    .goal-card:hover {
        transform: translateY(-7px);
        background: rgba(255,255,255,.10);
        border-color: rgba(243,200,75,.5);
        color:white;
    }


.goal-number {
    position: absolute;
    right: 18px;
    top: 12px;
    color: rgba(255,255,255,.08);
    font-size: 55px;
    font-weight: 900;
}


.goal-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #405be3;
    background: #f3c84b;
    border-radius: 11px;
    font-size: 22px;
}


.goal-card h3 {
    /*color: #ffffff;*/
    font-size: 20px;
    font-weight: 700;
}


.goal-card p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.75;
}


/* =====================================================
   REALITY CHECK
===================================================== */

.reality-section {
    padding: 70px 0;
    background: #f8fafc;
}


.reality-box {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #ffffff;
    border-left: 5px solid #d71920;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,.07);
}


.reality-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #d71920;
    border-radius: 12px;
    font-size: 24px;
}


.reality-box h2 {
    margin: 0 0 20px;
    color: #405be3;
    font-size: 28px;
    font-weight: 800;
}


.reality-item {
    margin-bottom: 18px;
}


    .reality-item:last-child {
        margin-bottom: 0;
    }


    .reality-item h4 {
        margin-bottom: 5px;
        color: #d71920;
        font-size: 17px;
        font-weight: 800;
    }


    .reality-item p {
        margin: 0;
        color: #63717d;
        font-size: 14px;
        line-height: 1.7;
    }


/* =====================================================
   COMPLETE INFORMATION
===================================================== */

.complete-info {
    background: #ffffff;
}


.info-content {
    max-width: 950px;
    margin: auto;
}


    .info-content p {
        margin-bottom: 18px;
        color: #596b7a;
        font-size: 15px;
        line-height: 1.9;
    }


.info-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 18px 20px;
    color: #405be3;
    background: #fff8dc;
    border-left: 4px solid #f3c84b;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}


    .info-highlight i {
        color: #d71920;
        font-size: 20px;
    }


/* =====================================================
   DEMANDS
===================================================== */

.demands-section {
    padding: 80px 0;
    background: linear-gradient( 135deg, #309b78, #405be3 );
}


.demands-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.demand-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 25px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    transition: all .3s ease;
}


    .demand-card:hover {
        background: rgba(255,255,255,.11);
        transform: translateX(5px);
    }


.demand-number {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc4e9;
    background: #ff0000;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 900;
}


.demand-content h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
}


.demand-content p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.75;
}


/* =====================================================
   FINAL APPEAL
===================================================== */

.final-appeal {
    padding: 75px 0;
    background: #ffffff;
}


.appeal-box {
    max-width: 850px;
    margin: auto;
    padding: 45px 30px;
    text-align: center;
    background: linear-gradient( 135deg, #f8fafc, #ffffff );
    border: 1px solid #e2e9ef;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(6,52,91,.08);
}


    .appeal-box > i {
        color: #d71920;
        font-size: 38px;
    }


    .appeal-box h2 {
        margin: 15px 0 10px;
        color: #405be3;
        font-size: 30px;
        font-weight: 800;
    }


    .appeal-box p {
        max-width: 650px;
        margin: auto;
        color: #64727e;
        font-size: 15px;
        line-height: 1.8;
    }


    .appeal-box h3 {
        margin: 22px 0 0;
        color: #d71920;
        font-size: 23px;
        font-weight: 800;
    }


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .home-hero {
        min-height: 480px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .section-heading h2 {
        font-size: 30px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .home-hero {
        min-height: 500px;
        text-align: center;
    }


    .hero-content {
        padding: 55px 15px;
    }


    .hero-tag {
        font-size: 9px;
        letter-spacing: .8px;
        padding: 7px 10px;
    }


    .hero-content h1 {
        font-size: 38px;
    }


    .hero-content h2 {
        font-size: 23px;
        margin-bottom: 15px;
    }


    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }


    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }


    .hero-btn {
        min-width: 120px;
        padding: 10px 16px;
        font-size: 13px;
    }


    .home-overview,
    .complete-info,
    .campaign-goals,
    .demands-section {
        padding: 50px 0;
    }


    .section-heading {
        margin-bottom: 30px;
    }


        .section-heading h2 {
            font-size: 25px;
        }


    .overview-box {
        flex-direction: column;
        padding: 22px;
        gap: 15px;
    }


    .overview-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }


    .overview-content h3 {
        font-size: 21px;
    }


    .overview-content p,
    .info-content p {
        font-size: 13px;
        line-height: 1.75;
    }


    .goal-card {
        padding: 23px;
    }


        .goal-card h3 {
            font-size: 18px;
        }


        .goal-card p {
            font-size: 13px;
        }


    .reality-section {
        padding: 45px 0;
    }


    .reality-box {
        flex-direction: column;
        padding: 22px;
        gap: 15px;
    }


    .reality-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }


    .reality-box h2 {
        font-size: 23px;
    }


    .reality-item h4 {
        font-size: 15px;
    }


    .reality-item p {
        font-size: 13px;
    }


    .info-highlight {
        align-items: flex-start;
        padding: 15px;
        font-size: 13px;
    }


    .demand-card {
        gap: 14px;
        padding: 18px;
    }


    .demand-number {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 13px;
    }


    .demand-content h3 {
        font-size: 16px;
    }


    .demand-content p {
        font-size: 12px;
        line-height: 1.7;
    }


    .final-appeal {
        padding: 50px 0;
    }


    .appeal-box {
        padding: 30px 18px;
    }


        .appeal-box h2 {
            font-size: 24px;
        }


        .appeal-box p {
            font-size: 13px;
        }


        .appeal-box h3 {
            font-size: 20px;
        }
}
/* =====================================================
   PROJECT SECTION
===================================================== */

.projects-section {
    padding: 75px 0;
    background: #f7f8fc;
}


    /* =====================================================
   SECTION HEADING
===================================================== */

    .projects-section .section-heading {
        max-width: 800px;
        margin: 0 auto 50px;
        text-align: center;
    }


        .projects-section .section-heading > span {
            color: #d71920;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.5px;
        }


        .projects-section .section-heading h2 {
            margin: 8px 0;
            color: #405be3;
            font-size: 36px;
            font-weight: 800;
        }


        .projects-section .section-heading p {
            margin: 15px auto 0;
            color: #697582;
            font-size: 15px;
            line-height: 1.7;
        }


    .projects-section .heading-line {
        width: 55px;
        height: 4px;
        margin: 12px auto 0;
        background: #f3c84b;
        border-radius: 10px;
    }


/* =====================================================
   PROJECT CARD
===================================================== */

.project-card {
    margin-bottom: 25px;
    background: #ffffff;
    border: 1px solid #e3e5eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(40,30,70,.06);
    transition: all .3s ease;
}


    .project-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(111,66,193,.12);
        border-color: rgba(111,66,193,.25);
    }


/* =====================================================
   PROJECT HEADER
===================================================== */

.project-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 25px;
    background: linear-gradient( 135deg, #405be3, #5832a0 );
    color: #ffffff;
}


/* Number */

.project-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #405be3;
    background: #f3c84b;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 900;
}


/* Label */

.project-label {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,.72);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* Title */

.project-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
}


/* Icon */

.project-icon {
    width: 48px;
    height: 48px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    font-size: 20px;
}


/* =====================================================
   CONTENT
===================================================== */

.project-content {
    padding: 27px 30px;
}


    .project-content p {
        margin-bottom: 16px;
        color: #596775;
        font-size: 14px;
        line-height: 1.85;
    }


        .project-content p:last-child {
            margin-bottom: 0;
        }


    /* =====================================================
   SUB HEADINGS
===================================================== */

    .project-content h4 {
        margin: 25px 0 12px;
        padding-left: 12px;
        color: #405be3;
        border-left: 4px solid #f3c84b;
        font-size: 17px;
        font-weight: 800;
    }


/* =====================================================
   LIST
===================================================== */

.project-list {
    margin: 0;
    padding-left: 20px;
}


    .project-list li {
        margin-bottom: 10px;
        padding-left: 4px;
        color: #596775;
        font-size: 14px;
        line-height: 1.7;
    }


        .project-list li::marker {
            color: #d71920;
        }


/* =====================================================
   TRADES LIST
===================================================== */

.trade-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 25px;
    margin: 0;
    padding-left: 20px;
}


    .trade-list li {
        padding: 9px 10px;
        color: #596775;
        background: #f7f5fc;
        border-radius: 6px;
        font-size: 13px;
    }


/* =====================================================
   PARTNER BOX
===================================================== */

.partner-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 13px 15px;
    color: #513096;
    background: #f5f1fc;
    border-left: 4px solid #405be3;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1.6;
}


    .partner-box i {
        color: #405be3;
        font-size: 18px;
        flex-shrink: 0;
    }


/* =====================================================
   ACCESS BOX
===================================================== */

.access-box {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    padding: 13px 15px;
    color: #596775;
    background: #f7f8fc;
    border: 1px solid #e7e8ee;
    border-radius: 7px;
    font-size: 14px;
    line-height: 1.6;
}


    .access-box strong {
        color: #405be3;
    }


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 768px) {

    .projects-section {
        padding: 55px 0;
    }


        .projects-section .section-heading {
            margin-bottom: 35px;
        }


            .projects-section .section-heading h2 {
                font-size: 30px;
            }


    .project-header {
        padding: 17px 18px;
        gap: 13px;
    }


    .project-number {
        width: 43px;
        height: 43px;
        min-width: 43px;
        font-size: 13px;
    }


    .project-header h3 {
        font-size: 18px;
    }


    .project-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }


    .project-content {
        padding: 23px;
    }


    .trade-list {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .projects-section {
        padding: 45px 0;
    }


        .projects-section .section-heading {
            padding: 0 10px;
            margin-bottom: 28px;
        }


            .projects-section .section-heading h2 {
                font-size: 25px;
            }


            .projects-section .section-heading p {
                font-size: 13px;
            }


    .project-card {
        margin-bottom: 18px;
        border-radius: 12px;
    }


    .project-header {
        align-items: center;
        gap: 10px;
        padding: 14px;
    }


    .project-number {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 9px;
        font-size: 11px;
    }


    .project-label {
        font-size: 8px;
        letter-spacing: .7px;
    }


    .project-header h3 {
        font-size: 15px;
        line-height: 1.3;
    }


    .project-icon {
        width: 37px;
        height: 37px;
        min-width: 37px;
        border-radius: 8px;
        font-size: 15px;
    }


    .project-content {
        padding: 18px;
    }


        .project-content p {
            font-size: 13px;
            line-height: 1.75;
        }


        .project-content h4 {
            margin-top: 20px;
            font-size: 15px;
        }


    .project-list {
        padding-left: 18px;
    }


        .project-list li {
            margin-bottom: 8px;
            font-size: 12.5px;
            line-height: 1.65;
        }


    .trade-list {
        display: block;
        padding-left: 18px;
    }


        .trade-list li {
            margin-bottom: 6px;
            padding: 8px;
            font-size: 12px;
        }


    .partner-box {
        align-items: flex-start;
        font-size: 12px;
    }


    .access-box {
        display: block;
        font-size: 12px;
    }
}

.contact img {
    width: 100%;
    height: 400px;
    /* object-fit: cover; */
    display: block;
    border-radius: 12px;
}

/* Mobile */
@media (max-width: 767px) {
    .contact img {
        height: 250px;
        border-radius: 8px;
    }
}
/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    background: #f8faf9;
    color: #222;
}

.section-title span,
.small-title {
    display: inline-block;
    color: #198754;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #123b2a;
    margin-bottom: 8px;
}

.section-title p {
    color: #6c757d;
    margin: 0;
}


/* =========================================
   ABOUT IMAGE
========================================= */

.about-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
    }

    .about-image:hover img {
        transform: scale(1.04);
    }


/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {
    padding: 15px 10px;
}

    .about-content h3 {
        color: #123b2a;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .about-content p {
        color: #555;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 15px;
    }


/* =========================================
   VISION / MISSION
========================================= */

.info-card {
    height: 100%;
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #e5ebe7;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
    }

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e7f5ed;
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.info-card h3 {
    color: #123b2a;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}


/* =========================================
   GOALS
========================================= */

.goals-section h2 {
    color: #123b2a;
    font-size: 32px;
    font-weight: 700;
}

.goal-card {
    height: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e4ebe7;
    transition: 0.3s ease;
}

    .goal-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

.goal-icon {
    width: 55px;
    height: 55px;
    background: #123b2a;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 20px;
}

.goal-card h4 {
    color: #123b2a;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}

.goal-card p {
    color: #666;
    line-height: 1.75;
    margin: 0;
}


/* =========================================
   APPROACH
========================================= */

.approach-box {
    background: #123b2a;
    color: #fff;
    padding: 40px;
    border-radius: 18px;
}

    .approach-box h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .approach-box p {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
    }


/* =========================================
   IMPORTANT NOTE
========================================= */

.reality-box {
    background: #fff8e6;
    border-left: 5px solid #f0ad4e;
    padding: 25px 30px;
    border-radius: 8px;
}

    .reality-box h4 {
        color: #8a5a00;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .reality-box p {
        color: #66552f;
        line-height: 1.7;
    }


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .about-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .section-title h2 {
        font-size: 29px;
    }

    .section-title p {
        font-size: 14px;
        padding: 0 10px;
    }

    .about-image {
        height: 260px;
        border-radius: 12px;
    }

    .about-content {
        padding: 5px 0;
    }

        .about-content h3 {
            font-size: 25px;
        }

        .about-content p {
            font-size: 15px;
            line-height: 1.7;
        }

    .info-card {
        padding: 25px;
    }

        .info-card h3 {
            font-size: 22px;
        }

    .goals-section h2 {
        font-size: 27px;
    }

    .goal-card {
        padding: 25px;
    }

    .approach-box {
        padding: 25px;
        border-radius: 12px;
    }

        .approach-box h3 {
            font-size: 24px;
        }

    .reality-box {
        padding: 20px;
    }
}
/* =========================================
   VIOLET THEME
========================================= */

.about-section {
    background: #faf8ff;
    color: #222;
}

.section-title span,
.small-title {
    color: #405be3;
}

.section-title h2 {
    color: #405be3;
}

.section-title p {
    color: #6b7280;
}


/* =========================================
   ABOUT IMAGE
========================================= */

.about-image {
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.14);
}

    .about-image img {
        transition: 0.5s ease;
    }

    .about-image:hover img {
        transform: scale(1.04);
    }


/* =========================================
   ABOUT CONTENT
========================================= */

.about-content h3 {
    color: #405be3;
}

.about-content p {
    color: #555;
}


/* =========================================
   VISION / MISSION
========================================= */

.info-card {
    background: #ffffff;
    border: 1px solid #e9ddff;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.07);
}

    .info-card:hover {
        box-shadow: 0 15px 35px rgba(124, 58, 237, 0.14);
    }

.icon-box {
    background: #f0e7ff;
    color: #405be3;
}

.info-card h3 {
    color: #405be3;
}


/* =========================================
   GOALS
========================================= */

.goals-section h2 {
    color: #405be3;
}

.goal-card {
    background: #ffffff;
    border: 1px solid #e9ddff;
}

    .goal-card:hover {
        box-shadow: 0 12px 30px rgba(124, 58, 237, 0.13);
    }

.goal-icon {
    background: linear-gradient(135deg, #405be3, #405be3);
    color: #fff;
}

.goal-card h4 {
    color: #405be3;
}


/* =========================================
   APPROACH
========================================= */

.approach-box {
    background: linear-gradient( 135deg, #405be3, #405be3, #8b5cf6 );
    color: #fff;
    box-shadow: 0 15px 35px rgba(91, 33, 182, 0.18);
}


/* =========================================
   IMPORTANT NOTE
========================================= */

.reality-box {
    background: #f5efff;
    border-left: 5px solid #405be3;
}

    .reality-box h4 {
        color: #405be3;
    }

    .reality-box p {
        color: #5f526f;
    }


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .section-title h2 {
        color: #405be3;
    }

    .about-image {
        box-shadow: 0 8px 25px rgba(124, 58, 237, 0.12);
    }
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 5px 0;
}

/* Logo */
.brand-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Text Area */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* Main Name */
.brand-title {
    font-size: 22px;
    font-weight: 800;
    color: #405be3;
    letter-spacing: 0.5px;
}

/* Legal Cell */
.brand-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: #555;
    margin-top: 4px;
}

/* Tagline */
.brand-tagline {
    font-size: 12px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 4px;
    letter-spacing: 0.8px;
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .brand-wrapper {
        gap: 8px;
        max-width: 280px;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand-title {
        font-size: 16px;
        letter-spacing: 0.2px;
    }

    .brand-subtitle {
        font-size: 7.5px;
        margin-top: 3px;
    }

    .brand-tagline {
        font-size: 9px;
        margin-top: 3px;
        letter-spacing: 0.5px;
    }
}


/* Small Mobile */
@media (max-width: 400px) {

    .brand-wrapper {
        gap: 6px;
        max-width: 240px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-title {
        font-size: 14px;
    }

    .brand-subtitle {
        font-size: 6.5px;
    }

    .brand-tagline {
        font-size: 8px;
    }
}

.employee-page {
    background: #f7f5fa;
    padding: 60px 0;
}

.employee-main-title {
    color: var(--primary);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

    .employee-main-title::after {
        content: "";
        width: 70px;
        height: 3px;
        background: var(--primary);
        display: block;
        margin: 12px auto 0;
        border-radius: 10px;
    }

.employee-section {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(103, 61, 181, 0.08);
    border: 1px solid #ece7f5;
}

.employee-section-title {
    background: linear-gradient(135deg, #673DB5, #4f2c91);
    color: #fff;
    padding: 16px 22px;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.employee-content {
    padding: 25px;
}

.level-box {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 15px 18px;
    border-radius: 8px;
    height: 100%;
    font-weight: 600;
    color: #333;
}

.designation-title {
    color: var(--primary);
    font-size: 17px;
    font-weight: 700;
    margin: 25px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9e1f7;
}

    .designation-title:first-child {
        margin-top: 0;
    }

.employee-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: employee;
}

    .employee-list li {
        counter-increment: employee;
        position: relative;
        padding: 12px 15px 12px 55px;
        margin-bottom: 10px;
        background: #faf9fc;
        border: 1px solid #eee9f5;
        border-radius: 8px;
        font-weight: 500;
        transition: 0.3s;
    }

        .employee-list li::before {
            content: counter(employee);
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
        }

        .employee-list li:hover {
            background: var(--primary-light);
            transform: translateX(3px);
        }

.single-name {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 600;
}

.empty-list {
    color: #888;
    font-style: italic;
    padding: 10px 0;
}

@media (max-width: 767.98px) {

    .employee-page {
        padding: 35px 0;
    }

    .employee-main-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .employee-section-title {
        font-size: 17px;
        padding: 14px 16px;
    }

    .employee-content {
        padding: 18px 15px;
    }

    .designation-title {
        font-size: 15px;
        margin-top: 22px;
    }

    .level-box {
        font-size: 14px;
        padding: 12px;
    }

    .employee-list li {
        padding: 11px 10px 11px 48px;
        font-size: 14px;
    }

        .employee-list li::before {
            left: 10px;
            width: 27px;
            height: 27px;
            font-size: 12px;
        }
}

.designation-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    margin-bottom: 12px;
    background: #f4efff;
    border-left: 4px solid #673DB5;
    border-radius: 8px;
}

    .designation-row .designation-title {
        margin: 0;
        padding: 0;
        border: 0;
        color: #673DB5;
        font-size: 15px;
        font-weight: 700;
        min-width: 180px;
    }

.designation-name {
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .designation-row {
        display: block;
    }

        .designation-row .designation-title {
            display: block;
            min-width: auto;
            margin-bottom: 5px;
        }

    .designation-name {
        display: block;
        font-size: 14px;
    }
}

.employee-list-second {
    counter-reset: employee 17;
}
.notice-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.notice-header {
    background: linear-gradient(135deg, #dc3545, #b02a37);
    color: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .5px;
}

.notice-header i {
    font-size: 20px;
}

.notice-body {
    padding: 20px;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #333;
    font-size: 15px;
    line-height: 1.7;
}

.notice-number {
    min-width: 28px;
    height: 28px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.notice-item strong {
    color: #b02a37;
}

/* Mobile */
@media (max-width: 576px) {

    .notice-header {
        padding: 12px 15px;
        font-size: 16px;
    }

    .notice-body {
        padding: 15px;
    }

    .notice-item {
        font-size: 14px;
        gap: 10px;
    }

    .notice-number {
        min-width: 25px;
        height: 25px;
    }
}
.contact {
    padding: 70px 0;
    background: #f8f9fa;
}

.contact h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact p {
    color: #555;
    line-height: 1.7;
}

.support-list {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.support-list .list-group-item {
    padding: 15px 18px;
    border: 1px solid #e1e1e1;
    background: #fff;
}

.support-list i {
    font-size: 18px;
}

.support-list a {
    color: #0d6efd;
    text-decoration: none;
    font-size: 15px;
    margin-left: 30px;
}

.support-list a:hover {
    text-decoration: underline;
}

.support-image {
    border-radius: 15px;
    overflow: hidden;
}

.support-image img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    display: block;
}

@media (max-width: 767px) {

    .contact {
        padding: 45px 0;
    }

    .contact h4 {
        font-size: 26px;
    }

    .support-image img {
        height: 280px;
    }
}
.partners-section {
    /* padding: 70px 0; */
    background: #f8f9fa;
}

.partner-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.partner-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
    font-size: 30px;
}

.partner-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.partner-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.partner-card p {
    color: #666;
    margin-bottom: 20px;
}

.partner-email {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    padding: 14px 20px;
    background: #f1f5ff;
    border-radius: 8px;
}

.partner-email i {
    color: #0d6efd;
}

.partner-email a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.partner-email a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {

    .partners-section {
        padding: 45px 15px;
    }

    .partner-card {
        padding: 35px 18px;
    }

    .partner-card h2 {
        font-size: 27px;
    }

    .partner-card h5 {
        font-size: 18px;
    }

    .partner-email {
        font-size: 14px;
        word-break: break-word;
    }
}