﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* =========================
   TOP BAR
========================= */

.top-bar {
    width: 100%;
    background: #5E0D0B;
    color: #ffffff;
    padding: 9px 0;
    font-size: 13px;
    position: relative;
    z-index: 999;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .top-bar-left span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        font-size: 20px;
    }

    /*.top-bar-left i {
        color: #D4AF37;
        font-size: 14px;
    }*/

.top-bar-right a {
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .top-bar-right a:hover {
        background: #D4AF37;
        color: #5E0D0B;
        transform: translateY(-2px);
    }


/* =========================
   MOBILE
========================= */

@media (max-width: 575px) {

    .top-bar {
        padding: 7px 0;
        font-size: 12px;
    }

    .top-bar-left {
        max-width: calc(100% - 125px);
        overflow: hidden;
    }

        .top-bar-left span {
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .top-bar-right {
        gap: 1px !important;
    }

        .top-bar-right a {
           
            height: 26px;
            font-size: 13px;
        }
}
/* =========================
    MAIN NAVBAR
 ========================= */

.main-navbar {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}


/* LOGO */

.navbar-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}


/* MENU */

.main-navbar .navbar-nav {
    gap: 5px;
}

.main-navbar .nav-link {
    color: #5E0D0B;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 15px !important;
    position: relative;
    transition: all 0.3s ease;
}


    /* Hover underline */

    .main-navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 3px;
        height: 2px;
        background: #D4AF37;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .main-navbar .nav-link:hover,
    .main-navbar .nav-link.active {
        color: #D4AF37;
    }

        .main-navbar .nav-link:hover::after,
        .main-navbar .nav-link.active::after {
            transform: scaleX(1);
        }


/* GET STARTED BUTTON */

.navbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #5E0D0B;
    color: #ffffff !important;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #5E0D0B;
}

    .navbar-btn:hover {
        background: #D4AF37;
        border-color: #D4AF37;
        color: #5E0D0B !important;
        transform: translateY(-2px);
    }


/* MOBILE TOGGLER */

.main-navbar .navbar-toggler {
    border: 1px solid #5E0D0B;
    padding: 7px 9px;
    box-shadow: none !important;
}

    .main-navbar .navbar-toggler:focus {
        box-shadow: none !important;
    }


/* Custom Hamburger */

.main-navbar .navbar-toggler-icon {
    background-image: none;
    width: 22px;
    height: 18px;
    position: relative;
    border-top: 2px solid #5E0D0B;
    border-bottom: 2px solid #5E0D0B;
}

    .main-navbar .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        left: 0;
        top: 7px;
        width: 22px;
        height: 2px;
        background: #5E0D0B;
    }


/* =========================
   MOBILE
 ========================= */

@media (max-width: 991px) {

    .main-navbar {
        padding: 10px 0;
    }

    .navbar-logo {
        height: 45px;
    }

    .main-navbar .navbar-collapse {
        margin-top: 12px;
        padding: 12px 0 5px;
        border-top: 1px solid #eeeeee;
    }

    .main-navbar .navbar-nav {
        gap: 0;
        align-items: stretch !important;
    }

    .main-navbar .nav-link {
        padding: 11px 5px !important;
    }

        .main-navbar .nav-link::after {
            display: none;
        }

        .main-navbar .nav-link:hover,
        .main-navbar .nav-link.active {
            background: #f8f5e8;
            color: #D4AF37;
            border-radius: 5px;
        }

    .navbar-btn {
        width: 100%;
        text-align: center;
        padding: 11px;
    }
}


/* SMALL MOBILE */

@media (max-width: 575px) {

    .navbar-logo {
        height: 40px;
        max-width: 170px;
    }

    .main-navbar {
        padding: 8px 0;
    }
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #5E0D0B;
    color: #ffffff;
    padding-top: 65px;
}


/* BRAND */

.footer-brand img {
    max-width: 180px;
    max-height: 65px;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-text {
    color: #c9d2e3;
    font-size: 14px;
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 22px;
}


/* FOOTER TITLE */

.footer-title {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 22px;
    padding-bottom: 10px;
}

    .footer-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: #D4AF37;
        border-radius: 5px;
    }


/* LINKS */

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #c9d2e3;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
    }

        .footer-links a i {
            color: #D4AF37;
            font-size: 10px;
            margin-right: 7px;
        }

        .footer-links a:hover {
            color: #D4AF37;
            padding-left: 5px;
        }


/* SOCIAL */

.footer-social {
    display: flex;
    gap: 9px;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            background: #D4AF37;
            border-color: #D4AF37;
            color: #5E0D0B;
            transform: translateY(-3px);
        }


/* CONTACT */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    min-width: 38px;
    height: 38px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
}

.contact-item span {
    display: block;
    color: #D4AF37;
    font-size: 12px;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: #c9d2e3;
    font-size: 14px;
    line-height: 1.5;
}


/* BOTTOM */

.footer-bottom {
    margin-top: 50px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.12);
}

    .footer-bottom p {
        margin: 0;
        color: #aeb9cc;
        font-size: 13px;
    }

    .footer-bottom i {
        color: #D4AF37;
    }


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .site-footer {
        padding-top: 45px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-bottom {
        margin-top: 35px;
    }

        .footer-bottom .text-md-start,
        .footer-bottom .text-md-end {
            text-align: center !important;
        }

        .footer-bottom p {
            margin-bottom: 5px;
        }
}
/* =========================
   PAGE BANNER
========================= */

.page-banner {
    position: relative;
    min-height: 420px;
    background-image: linear-gradient( rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55) ), url("img/banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Banner Content */

.banner-content {
    text-align: center;
    color: #fff;
    padding: 50px 15px;
    position: relative;
    z-index: 2;
}

    .banner-content h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: capitalize;
    }

/* Breadcrumb */

.custom-breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

    .custom-breadcrumb .breadcrumb-item {
        font-size: 16px;
        font-weight: 500;
    }

        .custom-breadcrumb .breadcrumb-item a {
            color: #fff;
            text-decoration: none;
            transition: 0.3s ease;
        }

            .custom-breadcrumb .breadcrumb-item a:hover {
                opacity: 0.8;
            }

        .custom-breadcrumb .breadcrumb-item.active {
            color: #ddd;
        }

        /* Breadcrumb Separator */

        .custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            color: #fff;
            content: "/";
            padding: 0 10px;
        }


/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

    .page-banner {
        min-height: 240px;
    }

    .banner-content {
        padding: 45px 15px;
    }

        .banner-content h1 {
            font-size: 36px;
        }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 575.98px) {

    .page-banner {
        min-height: 200px;
        background-position: center;
    }

    .banner-content {
        padding: 35px 15px;
    }

        .banner-content h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }

    .custom-breadcrumb .breadcrumb-item {
        font-size: 14px;
    }

        .custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            padding: 0 7px;
        }
}
/* =========================
   CONTACT INFO CARDS
========================= */

.contact-info-section {
    background: #f7f8fa;
}

.contact-card {
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #eeeeee;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

.contact-icon {
    min-width: 55px;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.contact-content {
    flex: 1;
}

    .contact-content h5 {
        margin: 0 0 10px;
        font-size: 19px;
        font-weight: 700;
        color: #5E0D0B;
    }

    .contact-content p {
        margin: 0;
        color: #555;
        font-size: 15px;
        line-height: 1.8;
    }

    .contact-content a {
        color: #444;
        text-decoration: none;
        transition: 0.3s;
    }

        .contact-content a:hover {
            color: #5E0D0B;
        }

.whatsapp-text {
    color: #777;
    font-size: 13px;
    margin-left: 3px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

    .contact-card {
        padding: 25px 20px;
    }

    .contact-icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 21px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 575.98px) {

    .contact-info-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .contact-card {
        padding: 22px 18px;
        gap: 15px;
        border-radius: 12px;
    }

    .contact-icon {
        min-width: 46px;
        width: 46px;
        height: 46px;
        font-size: 19px;
        border-radius: 10px;
    }

    .contact-content h5 {
        font-size: 17px;
    }

    .contact-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

.contact-form-section {
    background: #f7f8fa;
}

.contact-form-wrapper {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}


/* Heading */

.form-heading h2 {
    color: #5E0D0B;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-heading p {
    color: #777;
    font-size: 15px;
    margin-bottom: 0;
}


/* Labels */

.contact-form-wrapper label {
    display: block;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

    .contact-form-wrapper label span {
        color: #dc3545;
    }


/* Inputs */

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    min-height: 52px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    box-shadow: none;
    transition: all 0.3s ease;
}

.contact-form-wrapper textarea.form-control {
    min-height: 140px;
    resize: vertical;
}


/* Focus */

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: #5E0D0B;
    box-shadow: 0 0 0 3px rgba(6, 42, 99, 0.08);
}


/* Placeholder */

.contact-form-wrapper .form-control::placeholder {
    color: #aaa;
}


/* Submit Button */

.submit-btn {
    border: none;
    background: #5E0D0B;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .submit-btn i {
        margin-left: 8px;
        transition: 0.3s ease;
    }

    .submit-btn:hover {
        background: #041b42;
        transform: translateY(-2px);
    }

        .submit-btn:hover i {
            margin-left: 13px;
        }


/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

    .contact-form-wrapper {
        padding: 35px;
    }

    .form-heading h2 {
        font-size: 27px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 575.98px) {

    .contact-form-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .contact-form-wrapper {
        padding: 25px 18px;
        border-radius: 12px;
    }

    .form-heading h2 {
        font-size: 23px;
        line-height: 1.3;
    }

    .form-heading p {
        font-size: 14px;
    }

    .contact-form-wrapper .form-control,
    .contact-form-wrapper .form-select {
        min-height: 48px;
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
        padding: 13px 25px;
    }
}

.gallery-section {
    background: #f7f8fa;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    height: 240px;
    background: #eee;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

/* Overlay */

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 42, 99, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

    .gallery-overlay i {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #ffffff;
        color: #5E0D0B;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        transform: scale(0.7);
        transition: all 0.3s ease;
    }

/* Hover */

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

    .gallery-item:hover .gallery-overlay i {
        transform: scale(1);
    }


/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

    .gallery-item {
        height: 220px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 575.98px) {

    .gallery-item {
        height: 170px;
        border-radius: 9px;
    }

    .gallery-overlay i {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

.donation-section {
    background: #f7f8fa;
}

.donation-wrapper {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}


/* =========================
   HEADING
========================= */

.donation-heading h2 {
    color: #5E0D0B;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.donation-heading p {
    color: #777;
    font-size: 15px;
    margin-bottom: 0;
}


/* =========================
   LABEL
========================= */

.donation-wrapper label {
    display: block;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

    .donation-wrapper label span {
        color: #dc3545;
    }


/* =========================
   INPUT
========================= */

.donation-wrapper .form-control,
.donation-wrapper .form-select {
    min-height: 52px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.donation-wrapper textarea.form-control {
    min-height: 100px;
    resize: vertical;
}


/* Focus */

.donation-wrapper .form-control:focus,
.donation-wrapper .form-select:focus {
    border-color: #5E0D0B;
    box-shadow: 0 0 0 3px rgba(6, 42, 99, 0.08);
}


/* Placeholder */

.donation-wrapper .form-control::placeholder {
    color: #aaa;
}


/* =========================
   DONATION BUTTON
========================= */

.donation-btn {
    border: none;
    background: #5E0D0B;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .donation-btn i {
        margin-right: 8px;
    }

    .donation-btn:hover {
        background: #041b42;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(6, 42, 99, 0.2);
    }


/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

    .donation-wrapper {
        padding: 35px;
    }

    .donation-heading h2 {
        font-size: 27px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 575.98px) {

    .donation-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .donation-wrapper {
        padding: 25px 18px;
        border-radius: 12px;
    }

    .donation-heading h2 {
        font-size: 23px;
    }

    .donation-heading p {
        font-size: 14px;
    }

    .donation-wrapper .form-control,
    .donation-wrapper .form-select {
        min-height: 48px;
        font-size: 14px;
    }

    .donation-btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 14px;
    }
}
/* ========================= MEMBERSHIP SECTION ========================= */ .membership-section {
    background: #f5f7fa;
}
/* ========================= MAIN CARD ========================= */

.membership-card {
    max-width: 1050px;
    margin: auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
/* ========================= HEADING ========================= */

.membership-heading {
    margin-bottom: 35px;
}

    .membership-heading h2 {
        color: #5E0D0B;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .membership-heading p {
        color: #777;
        font-size: 14px;
        margin: 0;
        line-height: 1.6;
    }
/* ========================= LABEL ========================= */

.membership-card label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

    .membership-card label span {
        color: #dc3545;
    }
/* ========================= INPUT ========================= */

.membership-card .form-control, .membership-card .form-select {
    width: 100%;
    min-height: 52px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    box-shadow: none;
    transition: all 0.3s ease;
}
    /* Focus */

    .membership-card .form-control:focus, .membership-card .form-select:focus {
        border-color: #5E0D0B;
        box-shadow: 0 0 0 3px rgba(6, 42, 99, 0.08);
    }
    /* Placeholder */

    .membership-card .form-control::placeholder {
        color: #aaa;
    }
/* ========================= PROFILE UPLOAD ========================= */

.profile-upload {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .profile-upload > i {
        min-width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #5E0D0B;
        color: #ffffff;
        border-radius: 8px;
        font-size: 20px;
    }

    .profile-upload .form-control {
        flex: 1;
    }

.upload-note {
    display: block;
    margin-top: 7px;
    color: #888;
    font-size: 12px;
}
/* ========================= JOIN BUTTON ========================= */

.join-btn {
    border: none;
    background: #5E0D0B;
    color: #ffffff;
    padding: 14px 45px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .join-btn i {
        margin-right: 8px;
    }

    .join-btn:hover {
        background: #041b42;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(6, 42, 99, 0.20);
    }
/* ========================= TABLET ========================= */

@media (max-width: 991.98px) {
    .membership-card {
        padding: 35px;
    }

    .membership-heading h2 {
        font-size: 27px;
    }
}
/* ========================= MOBILE ========================= */

@media (max-width: 575.98px) {
    .membership-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .membership-card {
        padding: 25px 18px;
        border-radius: 12px;
    }

    .membership-heading {
        margin-bottom: 25px;
    }

        .membership-heading h2 {
            font-size: 23px;
        }

        .membership-heading p {
            font-size: 13px;
        }

    .membership-card .form-control, .membership-card .form-select {
        min-height: 48px;
        font-size: 14px;
    }

    .profile-upload {
        gap: 8px;
    }

        .profile-upload > i {
            min-width: 44px;
            height: 44px;
        }

    .join-btn {
        width: 100%;
        padding: 13px 20px;
    }
}

/* ==============================
   ABOUT SECTION
================================ */

.about-section {
    background: #f7f8fa;
    padding: 80px 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

    .about-image img {
        width: 100%;
        /*height: 520px;*/
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .about-image:hover img {
        transform: scale(1.04);
    }


/* Content */

.about-content {
    padding-left: 20px;
}

.about-subtitle {
    display: inline-block;
    color: #5E0D0B;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-content h2 {
    color: #5E0D0B;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 22px;
}

.about-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}


/* Highlight */

.about-highlight {
    margin-top: 25px;
    padding: 18px 20px;
    background: #fff;
    border-left: 4px solid #D4AF37;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

    .about-highlight i {
        font-size: 28px;
        color: #D4AF37;
    }

    .about-highlight span {
        color: #5E0D0B;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.6;
    }


/* ==============================
   TABLET
================================ */

@media (max-width: 991px) {

    .about-section {
        padding: 60px 0;
    }

    .about-image img {
        height: 450px;
    }

    .about-content {
        padding-left: 0;
    }

        .about-content h2 {
            font-size: 30px;
        }
}


/* ==============================
   MOBILE
================================ */

@media (max-width: 767px) {

    .about-section {
        padding: 45px 0;
    }

    .about-image {
        border-radius: 14px;
    }

        .about-image img {
            height: 300px;
        }

    .about-content {
        padding-top: 5px;
    }

        .about-content h2 {
            font-size: 26px;
            margin-bottom: 18px;
        }

        .about-content p {
            font-size: 15px;
            line-height: 1.7;
        }

    .about-highlight {
        padding: 15px;
    }
}


/* Small Mobile */

@media (max-width: 480px) {

    .about-image img {
        height: 250px;
    }

    .about-content h2 {
        font-size: 23px;
    }

    .about-subtitle {
        font-size: 12px;
    }
}
/* ==============================
   KEY FOCUS AREAS
============================== */

.focus-section {
    background: linear-gradient(135deg, #fff8f5, #ffffff, #fff3ef);
    position: relative;
}

/* Heading */

.focus-subtitle {
    display: inline-block;
    color: #d62828;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.focus-title {
    font-size: 38px;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
}

.focus-description {
    max-width: 650px;
    margin: auto;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}


/* Cards */

.focus-card {
    height: 100%;
    padding: 32px 28px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(214, 40, 40, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

    /* Top Line */

    .focus-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #d62828, #ff8c42);
    }

    /* Hover */

    .focus-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(214, 40, 40, 0.14);
    }


/* Icon */

.focus-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: linear-gradient( 135deg, #fff0ed, #ffe1da );
    color: #d62828;
    font-size: 28px;
    transition: all 0.3s ease;
}

.focus-card:hover .focus-icon {
    background: linear-gradient( 135deg, #d62828, #ef476f );
    color: #ffffff;
    transform: rotate(-5deg) scale(1.05);
}


/* Card Heading */

.focus-card h4 {
    font-size: 21px;
    font-weight: 700;
    color: #252525;
    margin-bottom: 12px;
}


/* Card Text */

.focus-card p {
    color: #707070;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}


/* Mobile */

@media (max-width: 767px) {

    .focus-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .focus-title {
        font-size: 30px;
    }

    .focus-description {
        font-size: 14px;
    }

    .focus-card {
        padding: 26px 22px;
    }

        .focus-card h4 {
            font-size: 19px;
        }

        .focus-card p {
            font-size: 14px;
            line-height: 1.7;
        }
}
/* =====================================
   OUR VISION - UNIQUE BANNER
===================================== */

.vision-banner {
    background: #ffffff;
}

/* Main Box */

.vision-box {
    position: relative;
    overflow: hidden;
    padding: 55px 50px;
    background: linear-gradient( 120deg, #d62828 0%, #e94b4b 55%, #f47721 100% );
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(214, 40, 40, 0.18);
}

    /* Decorative Circle */

    .vision-box::before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border: 45px solid rgba(255,255,255,0.08);
        border-radius: 50%;
        top: -140px;
        right: -80px;
    }

    .vision-box::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border: 30px solid rgba(255,255,255,0.06);
        border-radius: 50%;
        bottom: -100px;
        left: -60px;
    }


/* Icon */

.vision-round-icon {
    width: 105px;
    height: 105px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff;
    font-size: 42px;
    position: relative;
    z-index: 2;
}


/* Label */

.vision-label {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 8px;
}


/* Heading */

.vision-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
}

    .vision-title span {
        color: #ffe082;
    }


/* Main Text */

.vision-text {
    max-width: 850px;
    color: rgba(255,255,255,0.92);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 25px;
}


/* Highlight Message */

.vision-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 850px;
    padding: 17px 20px;
    background: rgba(255,255,255,0.12);
    border-left: 4px solid #ffe082;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

    .vision-message i {
        color: #ffe082;
        font-size: 24px;
        line-height: 1;
    }


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

    .vision-box {
        padding: 40px 25px;
        border-radius: 22px;
        text-align: center;
    }

    .vision-round-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
        margin-bottom: 28px;
    }

    .vision-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .vision-title {
        font-size: 28px;
    }

    .vision-text {
        font-size: 14px;
        line-height: 1.75;
    }

    .vision-message {
        text-align: left;
        font-size: 14px;
        padding: 15px;
    }
}

.self-protection-section {
    background: #fff;
}

.protection-image {
    position: relative;
    padding: 12px;
}

    .protection-image img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        border-radius: 25px;
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

    .protection-image::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        border-top: 6px solid #e9a227;
        border-left: 6px solid #e9a227;
        top: 0;
        left: 0;
        border-radius: 12px 0 0 0;
    }

    .protection-image::after {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        border-right: 6px solid #d62828;
        border-bottom: 6px solid #d62828;
        right: 0;
        bottom: 0;
        border-radius: 0 0 12px 0;
    }

.image-badge {
    position: absolute;
    left: 35px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

    .image-badge i {
        font-size: 28px;
        color: #d62828;
    }

    .image-badge strong,
    .image-badge small {
        display: block;
    }

    .image-badge strong {
        color: #222;
    }

    .image-badge small {
        color: #888;
    }


/* Content */

.content-tag {
    color: #d62828;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.protection-section h2,
.self-protection-section h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
    margin: 14px 0 20px;
}

    .self-protection-section h2 span {
        color: #d62828;
    }

.self-protection-section p {
    color: #666;
    font-size: 15px;
    line-height: 1.85;
}

.lead-text {
    font-size: 17px !important;
    color: #444 !important;
}

.safety-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

    .safety-tags span {
        padding: 9px 15px;
        border-radius: 50px;
        background: #fff5e4;
        color: #a96d00;
        font-size: 13px;
        font-weight: 600;
    }

    .safety-tags i {
        margin-right: 4px;
    }


/* Mobile */

@media (max-width:767px) {

    .protection-image img {
        height: 330px;
    }

    .self-protection-section h2 {
        font-size: 31px;
    }

    .lead-text {
        font-size: 15px !important;
    }

    .image-badge {
        left: 25px;
        bottom: 25px;
    }
}
/* =========================================
   HUMAN RIGHTS INTRO
========================================= */

.rights-intro {
    background: #f7f9fc;
    overflow: hidden;
}

.rights-label {
    color: #5E0D0B;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.rights-title {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
    color: #172033;
    margin: 15px 0 0;
}

    .rights-title span {
        color: #c99a32;
    }

.rights-lead {
    color: #3d4655;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

.rights-text {
    color: #727b88;
    font-size: 15px;
    line-height: 1.9;
}


/* Values */

.rights-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

    .rights-values span {
        padding: 8px 18px;
        border-radius: 4px;
        background: #fff;
        border: 1px solid #e2e7ee;
        color: #5E0D0B;
        font-size: 13px;
        font-weight: 700;
    }


/* =========================================
   RIGHT VISUAL
========================================= */

.rights-visual {
    height: 430px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rights-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5E0D0B;
    color: #fff;
    font-size: 85px;
    box-shadow: 0 0 0 25px rgba(20,86,160,.07), 0 0 0 55px rgba(20,86,160,.04);
}

.visual-word {
    position: absolute;
    padding: 9px 16px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    color: #172033;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.word-one {
    top: 55px;
    left: 15px;
}

.word-two {
    top: 110px;
    right: 0;
}

.word-three {
    bottom: 55px;
    left: 40px;
}


/* =========================================
   FOCUS
========================================= */

.rights-focus {
    background: #fff;
}

.rights-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

    .rights-heading span {
        color: #c99a32;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .rights-heading h2 {
        color: #172033;
        font-size: 38px;
        line-height: 1.25;
        font-weight: 800;
        margin: 8px 0 0;
    }

        .rights-heading h2 strong {
            color: #5E0D0B;
        }

    .rights-heading > p {
        max-width: 420px;
        color: #777;
        line-height: 1.8;
        margin-bottom: 5px;
    }


/* Grid */

.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #e5e8ed;
    border-left: 1px solid #e5e8ed;
}

.rights-box {
    position: relative;
    min-height: 245px;
    padding: 32px;
    border-right: 1px solid #e5e8ed;
    border-bottom: 1px solid #e5e8ed;
    background: #fff;
    transition: .3s ease;
}

    .rights-box:hover {
        background: #f7f9fc;
    }

.rights-box-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #dfe4ea;
    font-size: 27px;
    font-weight: 800;
}

.rights-box > i {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eef5fc;
    color: #5E0D0B;
    font-size: 22px;
    margin-bottom: 22px;
}

.rights-box h4 {
    color: #202938;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-right: 25px;
}

.rights-box p {
    color: #777;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}


/* =========================================
   VISION
========================================= */

.rights-vision {
    background: #172033;
}

.vision-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.vision-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(201,154,50,.15);
    color: #c99a32;
    font-size: 27px;
}

.vision-inner > span {
    color: #c99a32;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.vision-inner h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 12px 0 18px;
}

    .vision-inner h2 strong {
        color: #c99a32;
    }

.vision-inner > p {
    color: #c5cad2;
    font-size: 16px;
    line-height: 1.9;
}

.vision-quote {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

    .vision-quote span {
        padding: 9px 17px;
        border: 1px solid rgba(201,154,50,.35);
        border-radius: 50px;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
    }


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .rights-title {
        font-size: 42px;
    }

    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .rights-intro {
        text-align: center;
    }

    .rights-title {
        font-size: 34px;
    }

    .rights-lead {
        font-size: 16px;
    }

    .rights-values {
        justify-content: center;
    }

    .rights-visual {
        height: 330px;
    }

    .rights-circle {
        width: 160px;
        height: 160px;
        font-size: 60px;
    }

    .rights-heading {
        display: block;
        text-align: center;
    }

        .rights-heading h2 {
            font-size: 30px;
        }

        .rights-heading > p {
            margin: 15px auto 0;
        }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .rights-box {
        min-height: auto;
        padding: 27px;
    }

    .vision-inner h2 {
        font-size: 30px;
    }

    .vision-inner > p {
        font-size: 14px;
    }
}

.rights-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 45px;
}

/* Heading */
.rights-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .rights-title span {
        color: #c99a32;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .rights-title h2 {
        color: #172033;
        font-size: 38px;
        line-height: 1.25;
        font-weight: 800;
        margin: 0;
    }

        .rights-title h2 strong {
            color: #5E0D0B;
        }

/* Paragraph */
.rights-description {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
}

    .rights-description p {
        max-width: 650px;
        color: #777;
        font-size: 16px;
        line-height: 1.8;
        margin: 0;
    }


/* Mobile */
@media (max-width: 767px) {

    .rights-title h2 {
        font-size: 30px;
    }

    .rights-title span {
        font-size: 11px;
    }

    .rights-description {
        margin-top: 20px;
    }

        .rights-description p {
            font-size: 14px;
        }
}
/* ===================================== SPIRITUALITY SECTION ===================================== */ .spirituality-section {
    background: #f8f9fb;
    position: relative;
    overflow: hidden;
}
/* ===================================== MAIN HEADING ===================================== */

.spirituality-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-label {
    display: inline-block;
    color: #d4af37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.spirituality-heading h2 {
    color: #5E0D0B;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 18px;
}

    .spirituality-heading h2 strong {
        font-weight: 800;
    }

.spirituality-heading p {
    color: #697383;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}
/* ===================================== INTRO ===================================== */

.spirituality-intro {
    max-width: 1000px;
    margin: 0 auto 65px;
    padding: 35px;
    background: #ffffff;
    border-left: 5px solid #d4af37;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    box-shadow: 0 12px 35px rgba(6, 42, 99, 0.07);
}

.intro-icon {
    min-width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5E0D0B;
    color: #ffffff;
    border-radius: 50%;
    font-size: 28px;
}

.spirituality-intro h4 {
    color: #5E0D0B;
    font-size: 22px;
    margin-bottom: 12px;
}

.spirituality-intro p {
    color: #687282;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}
/* ===================================== FOCUS HEADING ===================================== */

.focus-heading {
    margin-bottom: 30px;
}

    .focus-heading > span {
        color: #d4af37;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .focus-heading h3 {
        color: #5E0D0B;
        font-size: 30px;
        font-weight: 400;
        margin-top: 8px;
    }

        .focus-heading h3 strong {
            font-weight: 800;
        }
/* ===================================== SPIRITUAL CARDS ===================================== */

.spiritual-card {
    height: 100%;
    min-height: 250px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e8ebef;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
}

    .spiritual-card::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 4px;
        background: #d4af37;
        transition: 0.35s ease;
    }

    .spiritual-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 40px rgba(6, 42, 99, 0.10);
        border-color: #dfe4ea;
    }

        .spiritual-card:hover::after {
            width: 100%;
        }
/* Number */

.card-number {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 34px;
    font-weight: 800;
    color: #5E0D0B;
    opacity: 0.06;
}
/* Icon */

.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef3f9;
    color: #5E0D0B;
    border-radius: 12px;
    font-size: 23px;
    margin-bottom: 22px;
}

.spiritual-card h5 {
    color: #5E0D0B;
    font-size: 18px;
    font-weight: 750;
    margin-bottom: 12px;
}

.spiritual-card p {
    color: #6c7480;
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}
/* ===================================== VISION ===================================== */

.spiritual-vision {
    margin-top: 70px;
    padding: 45px;
    background: #5E0D0B;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

    .spiritual-vision::before {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        border: 40px solid #d4af37;
        opacity: 0.08;
        right: -100px;
        top: -100px;
    }

.vision-symbol {
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4af37;
    color: #5E0D0B;
    font-size: 32px;
}

.vision-content > span {
    color: #d4af37;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vision-content h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
    margin: 7px 0 12px;
}

    .vision-content h3 strong {
        font-weight: 800;
    }

.vision-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.8;
    max-width: 850px;
    margin: 0;
}
/* ===================================== TAGLINE ===================================== */

.spiritual-tagline {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .spiritual-tagline span {
        padding: 12px 20px;
        background: #ffffff;
        color: #5E0D0B;
        border: 1px solid #e5e9ee;
        font-size: 13px;
        font-weight: 700;
        border-radius: 30px;
    }

        .spiritual-tagline span:not(:last-child)::after {
            content: "•";
            color: #d4af37;
            margin-left: 12px;
        }
/* ===================================== TABLET ===================================== */

@media (max-width: 991px) {
    .spirituality-heading h2 {
        font-size: 36px;
    }

    .spiritual-vision {
        padding: 35px;
    }
}
/* ===================================== MOBILE ===================================== */

@media (max-width: 767px) {
    .spirituality-section {
        padding: 45px 0 !important;
    }

    .spirituality-heading {
        margin-bottom: 35px;
    }

        .spirituality-heading h2 {
            font-size: 30px;
        }

        .spirituality-heading p {
            font-size: 14px;
        }

    .spirituality-intro {
        padding: 25px 20px;
        display: block;
        margin-bottom: 45px;
    }

    .intro-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 23px;
        margin-bottom: 20px;
    }

    .spirituality-intro h4 {
        font-size: 20px;
    }

    .spirituality-intro p {
        font-size: 13px;
    }

    .focus-heading h3 {
        font-size: 25px;
    }

    .spiritual-card {
        min-height: auto;
        padding: 25px;
    }

        .spiritual-card p {
            font-size: 13px;
        }

    .spiritual-vision {
        margin-top: 45px;
        padding: 30px 22px;
        display: block;
    }

    .vision-symbol {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .vision-content h3 {
        font-size: 23px;
        line-height: 1.35;
    }

    .vision-content p {
        font-size: 13px;
    }

    .spiritual-tagline {
        gap: 8px;
    }

        .spiritual-tagline span {
            padding: 10px 14px;
            font-size: 11px;
        }

            .spiritual-tagline span:not(:last-child)::after {
                display: none;
            }
}

.generate-id-btn {
    background: #d4af37;
    color: #5E0D0B;
    border: 1px solid #d4af37;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .generate-id-btn:hover {
        background: #ffffff;
        color: #5E0D0B;
        border-color: #ffffff;
    }

.carousel-item img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .carousel-item img {
        height: 220px;
        object-fit: cover;
    }
}
/* ================================= HUMAN RIGHTS AREA ================================= */ .human-rights-area {
    background: #f7f9fc;
    overflow: hidden;
}

.hr-content {
    max-width: 680px;
}
/* Label */

.hr-kicker {
    display: inline-block;
    color: #d4af37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}
/* Heading */

.hr-heading {
    margin: 0;
    color: #5E0D0B;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 400;
}

    .hr-heading strong {
        font-weight: 800;
    }
/* Divider */

.hr-divider {
    width: 65px;
    height: 4px;
    background: #d4af37;
    margin: 22px 0;
}
/* Text */

.hr-intro {
    color: #3e4855;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 12px;
}

.hr-description {
    color: #707987;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}
/* ================================= VALUES ================================= */

.hr-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hr-value {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #ffffff;
    border: 1px solid #e4e9ef;
    border-radius: 5px;
    color: #5E0D0B;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s ease;
}

    .hr-value i {
        color: #d4af37;
        font-size: 15px;
    }

    .hr-value:hover {
        background: #5E0D0B;
        color: #ffffff;
        border-color: #5E0D0B;
        transform: translateY(-3px);
    }

        .hr-value:hover i {
            color: #d4af37;
        }
/* ================================= RIGHT VISUAL ================================= */

.hr-visual {
    width: 390px;
    height: 390px;
    max-width: 100%;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
    /* Outer decorative circle */

    .hr-visual::before {
        content: "";
        position: absolute;
        width: 330px;
        height: 330px;
        border: 1px solid #d4af37;
        border-radius: 50%;
        opacity: 0.45;
    }
    /* Second circle */

    .hr-visual::after {
        content: "";
        position: absolute;
        width: 275px;
        height: 275px;
        border: 1px dashed #5E0D0B;
        border-radius: 50%;
        opacity: 0.2;
    }
/* Main Circle */

.hr-main-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #5E0D0B;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 50px rgba(6, 42, 99, 0.22);
}

.hr-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #d4af37;
    color: #5E0D0B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.hr-main-circle span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}
/* Orbit Labels */

.hr-orbit {
    position: absolute;
    z-index: 6;
    background: #ffffff;
    border: 1px solid #e2e7ed;
    padding: 11px 18px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    color: #5E0D0B;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

    .hr-orbit::before {
        content: "";
        width: 7px;
        height: 7px;
        display: inline-block;
        background: #d4af37;
        border-radius: 50%;
        margin-right: 7px;
    }
/* Positions */

.hr-orbit-one {
    top: 38px;
    left: 10px;
}

.hr-orbit-two {
    top: 42px;
    right: 0;
}

.hr-orbit-three {
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
}
/* Decorative Dots */

.hr-small-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d4af37;
    z-index: 4;
}

.dot-one {
    top: 95px;
    right: 55px;
}

.dot-two {
    bottom: 105px;
    left: 55px;
    background: #5E0D0B;
}

.dot-three {
    top: 50%;
    right: 5px;
}
/* ================================= TABLET ================================= */

@media (max-width: 991px) {
    .hr-heading {
        font-size: 38px;
    }

    .hr-visual {
        width: 350px;
        height: 350px;
    }
}
/* ================================= MOBILE ================================= */

@media (max-width: 767px) {
    .human-rights-area {
        padding: 45px 0 !important;
    }

    .hr-content {
        max-width: 100%;
    }

    .hr-kicker {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hr-heading {
        font-size: 31px;
        line-height: 1.2;
    }

    .hr-intro {
        font-size: 15px;
    }

    .hr-description {
        font-size: 13px;
    }

    .hr-values {
        gap: 8px;
    }

    .hr-value {
        padding: 9px 12px;
        font-size: 11px;
    }

    .hr-visual {
        width: 300px;
        height: 300px;
        margin-top: 20px;
    }

        .hr-visual::before {
            width: 260px;
            height: 260px;
        }

        .hr-visual::after {
            width: 215px;
            height: 215px;
        }

    .hr-main-circle {
        width: 135px;
        height: 135px;
    }

    .hr-icon {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .hr-orbit {
        padding: 8px 12px;
        font-size: 9px;
    }

    .hr-orbit-one {
        top: 25px;
        left: 0;
    }

    .hr-orbit-two {
        top: 30px;
        right: 0;
    }

    .hr-orbit-three {
        bottom: 20px;
    }
}
/* ========================================= ABOUT ARYA BHARAT ========================================= */ .about-arya-section {
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
    color: #303945;
}

    .about-arya-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        border: 80px solid #5E0D0B;
        opacity: 0.025;
        top: -220px;
        right: -150px;
    }

    .about-arya-section::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border: 55px solid #d4af37;
        opacity: 0.035;
        bottom: -170px;
        left: -150px;
    }
/* ========================================= MAIN HEADER ========================================= */

.arya-about-header {
    max-width: 850px;
    margin: 0 auto 55px;
    position: relative;
    z-index: 2;
}

.arya-label {
    display: inline-block;
    color: #d4af37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.arya-about-header h1 {
    color: #5E0D0B;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 0 18px;
}

    .arya-about-header h1 strong {
        display: block;
        font-weight: 800;
    }

.arya-heading-line {
    width: 65px;
    height: 4px;
    background: #d4af37;
    border-radius: 5px;
    margin: 0 auto 22px;
}

.arya-about-header p {
    max-width: 720px;
    margin: auto;
    color: #687281;
    font-size: 15px;
    line-height: 1.8;
}

    .arya-about-header p strong {
        color: #5E0D0B;
    }
/* ========================================= INTRODUCTION ========================================= */

.arya-intro-content {
    max-width: 1000px;
    margin: 0 auto 70px;
    padding: 38px;
    background: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    border-left: 5px solid #d4af37;
    box-shadow: 0 15px 40px rgba(6, 42, 99, 0.07);
    position: relative;
    z-index: 2;
}

.arya-intro-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5E0D0B;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(6, 42, 99, 0.18);
}

.arya-intro-text h3 {
    color: #5E0D0B;
    font-size: 24px;
    font-weight: 750;
    margin: 0 0 12px;
}

.arya-intro-text p {
    color: #697382;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 8px;
}

    .arya-intro-text p:last-child {
        margin-bottom: 0;
    }
/* ========================================= KEY AREAS TITLE ========================================= */

.arya-focus-title {
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

    .arya-focus-title > span {
        color: #d4af37;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2.5px;
    }

    .arya-focus-title h2 {
        color: #5E0D0B;
        font-size: 31px;
        font-weight: 400;
        margin: 8px 0 0;
    }

        .arya-focus-title h2 strong {
            font-weight: 800;
        }
/* ========================================= FOCUS CARDS ========================================= */

.arya-focus-card {
    height: 100%;
    min-height: 275px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e9ee;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    z-index: 2;
}

    .arya-focus-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 4px;
        background: #d4af37;
        transition: width 0.35s ease;
    }

    .arya-focus-card:hover {
        transform: translateY(-7px);
        border-color: #dce2e9;
        box-shadow: 0 18px 45px rgba(6, 42, 99, 0.10);
    }

        .arya-focus-card:hover::before {
            width: 100%;
        }
/* Focus Icon */

.arya-focus-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef3f9;
    color: #5E0D0B;
    border-radius: 13px;
    font-size: 25px;
    margin-bottom: 23px;
    transition: 0.3s ease;
}

.arya-focus-card:hover .arya-focus-icon {
    background: #5E0D0B;
    color: #d4af37;
}
/* Number */

.arya-number {
    position: absolute;
    top: 20px;
    right: 23px;
    font-size: 38px;
    font-weight: 800;
    color: #5E0D0B;
    opacity: 0.055;
}
/* Card Heading */

.arya-focus-card h4 {
    color: #5E0D0B;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 750;
    margin-bottom: 12px;
    padding-right: 20px;
}
/* Card Text */

.arya-focus-card p {
    color: #707986;
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}
/* ========================================= VISION & MISSION ========================================= */

.arya-vm-row {
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.arya-vision-box, .arya-mission-box {
    height: 100%;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.arya-vision-box {
    background: #5E0D0B;
}

.arya-mission-box {
    background: #ffffff;
    border: 1px solid #e5e9ee;
}

    .arya-vision-box:hover, .arya-mission-box:hover {
        transform: translateY(-5px);
    }
/* Decorative Circle */

.arya-vision-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 35px solid #d4af37;
    opacity: 0.08;
    right: -100px;
    bottom: -100px;
}
/* VM Icon */

.arya-vm-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 23px;
}

.arya-vision-box .arya-vm-icon {
    background: #d4af37;
    color: #5E0D0B;
}

.arya-mission-box .arya-vm-icon {
    background: #eef3f9;
    color: #5E0D0B;
}
/* VM Label */

.arya-vision-box > span, .arya-mission-box > span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 9px;
}

.arya-vision-box > span {
    color: #d4af37;
}

.arya-mission-box > span {
    color: #d4af37;
}
/* VM Heading */

.arya-vision-box h3, .arya-mission-box h3 {
    font-size: 27px;
    line-height: 1.35;
    font-weight: 400;
    margin-bottom: 15px;
}

.arya-vision-box h3 {
    color: #ffffff;
}

.arya-mission-box h3 {
    color: #5E0D0B;
}

    .arya-vision-box h3 strong, .arya-mission-box h3 strong {
        font-weight: 800;
    }
/* VM Paragraph */

.arya-vision-box p, .arya-mission-box p {
    font-size: 13px;
    line-height: 1.85;
    margin: 0;
}

.arya-vision-box p {
    color: rgba(255, 255, 255, 0.75);
}

.arya-mission-box p {
    color: #707986;
}
/* ========================================= FINAL TAGLINE ========================================= */

.arya-tagline {
    margin-top: 60px;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.arya-tagline-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #5E0D0B;
    color: #d4af37;
    font-size: 22px;
}

.arya-tagline h2 {
    color: #5E0D0B;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0 auto;
    max-width: 800px;
}

    .arya-tagline h2 span {
        color: #d4af37;
        font-weight: 800;
    }
/* ========================================= TABLET ========================================= */

@media (max-width: 991px) {
    .arya-about-header h1 {
        font-size: 36px;
    }

    .arya-intro-content {
        padding: 30px;
    }

    .arya-focus-title h2 {
        font-size: 28px;
    }

    .arya-focus-card {
        min-height: 255px;
    }

    .arya-vision-box, .arya-mission-box {
        padding: 32px;
    }
}
/* ========================================= MOBILE ========================================= */

@media (max-width: 767px) {
    .about-arya-section {
        padding: 45px 0 !important;
    }

    .arya-about-header {
        margin-bottom: 38px;
    }

    .arya-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .arya-about-header h1 {
        font-size: 29px;
        line-height: 1.3;
    }

    .arya-about-header p {
        font-size: 13px;
        line-height: 1.75;
    }
    /* Intro */

    .arya-intro-content {
        display: block;
        padding: 27px 22px;
        margin-bottom: 48px;
        border-left-width: 4px;
    }

    .arya-intro-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .arya-intro-text h3 {
        font-size: 20px;
    }

    .arya-intro-text p {
        font-size: 13px;
    }
    /* Focus */

    .arya-focus-title {
        margin-bottom: 25px;
    }

        .arya-focus-title > span {
            font-size: 10px;
        }

        .arya-focus-title h2 {
            font-size: 25px;
            line-height: 1.35;
        }

    .arya-focus-card {
        min-height: auto;
        padding: 25px;
    }

    .arya-focus-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .arya-focus-card h4 {
        font-size: 17px;
    }

    .arya-focus-card p {
        font-size: 12.5px;
    }
    /* Vision Mission */

    .arya-vm-row {
        margin-top: 48px;
    }

    .arya-vision-box, .arya-mission-box {
        padding: 28px 22px;
    }

    .arya-vm-icon {
        width: 52px;
        height: 52px;
        font-size: 21px;
        margin-bottom: 18px;
    }

    .arya-vision-box h3, .arya-mission-box h3 {
        font-size: 23px;
    }

    .arya-vision-box p, .arya-mission-box p {
        font-size: 12.5px;
    }
    /* Tagline */

    .arya-tagline {
        margin-top: 40px;
        padding: 25px 10px;
    }

        .arya-tagline h2 {
            font-size: 22px;
            line-height: 1.55;
        }
}
/* ========================================= SMALL MOBILE ========================================= */

@media (max-width: 420px) {
    .arya-about-header h1 {
        font-size: 26px;
    }

    .arya-focus-title h2 {
        font-size: 23px;
    }

    .arya-tagline h2 {
        font-size: 20px;
    }
}
/* ================================
   HOME ACTIVITIES
================================ */

.home-activities {
    background: #f7f9fc;
    position: relative;
}

.activity-heading {
    max-width: 750px;
    margin: auto;
}

.activity-heading > span {
    display: block;
    color: #d4af37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.activity-heading h2 {
    color: #5E0D0B;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
}

.activity-heading h2 strong {
    font-weight: 800;
}

.activity-heading p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}


/* Card */

.activity-card {
    position: relative;
    height: 100%;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 8px;
    overflow: hidden;
    transition: all .35s ease;
}

.activity-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: #d4af37;
    transition: .35s ease;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(6, 42, 99, .12);
}

.activity-card:hover::before {
    height: 100%;
}


/* Icon */

.activity-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef3f9;
    color: #5E0D0B;
    border-radius: 14px;
    font-size: 27px;
    margin-bottom: 25px;
    transition: .35s ease;
}

.activity-card:hover .activity-icon {
    background: #5E0D0B;
    color: #d4af37;
}


/* Number */

.activity-number {
    position: absolute;
    right: 22px;
    top: 20px;
    color: #e9edf3;
    font-size: 42px;
    font-weight: 800;
}


/* Content */

.activity-card h4 {
    color: #5E0D0B;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 13px;
    position: relative;
}

.activity-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.activity-card a {
    color: #5E0D0B;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s ease;
}

.activity-card a i {
    color: #d4af37;
    transition: .3s ease;
}

.activity-card a:hover {
    color: #d4af37;
}

.activity-card a:hover i {
    transform: translateX(5px);
}


/* View All Button */

.activities-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    background: #5E0D0B;
    color: #ffffff;
    border: 1px solid #5E0D0B;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.activities-main-btn:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #5E0D0B;
}

.activities-main-btn i {
    transition: .3s ease;
}

.activities-main-btn:hover i {
    transform: translateX(5px);
}


/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {

    .activity-heading h2 {
        font-size: 28px;
    }

    .activity-heading p {
        font-size: 14px;
    }

    .activity-card {
        padding: 26px 22px;
    }

    .activity-card h4 {
        font-size: 18px;
    }

}
.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    margin-left: 10px;
    color: #5E0D0B;
    font-size: 30px;
    font-weight: 700;
    white-space: nowrap;
    font-family:auto;
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 42px;
    }

    .brand-name {
        font-size: 16px;
        margin-left: 7px;
    }
}