
/*
Theme Name: MGC Rover Scout
Theme URI: https://mgcroverscout.top/
Author: MGC Rover Scout Unit
Description: Custom WordPress theme for Mohanpur Government College Rover Scout Unit.
Version: 1.0.0
*/

/* =========================================
   GLOBAL
========================================= */

:root {
    --primary: #075b46;
    --primary-dark: #034535;
    --accent: #f4c542;
    --white: #ffffff;
    --text: #16382f;
    --light-bg: #f5f8f6;
    --border: #e5ece8;
    --muted: #64766f;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Noto Sans Bengali", "Hind Siliguri", Arial, sans-serif;
    background: var(--light-bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
}

a {
    transition: 0.25s ease;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================
   TOP BAR
========================================= */

.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    font-size: 14px;
}

.top-bar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-location span:first-child {
    color: var(--accent);
}

.top-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-links a {
    color: var(--white);
    text-decoration: none;
}

.top-links a:hover {
    color: var(--accent);
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: relative;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #e8eeeb;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.site-branding .custom-logo-link,
.site-branding .default-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-branding .custom-logo,
.site-branding .default-logo img,
.site-branding img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.site-title-area {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.site-title-area a {
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1.4;
}

.site-title-area span {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
}


/* =========================================
   NAVIGATION
========================================= */

.main-navigation {
    margin-left: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0;
    padding: 0;
}

.main-navigation a {
    display: block;
    padding: 10px 13px;
    color: #173b31;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: var(--primary);
    background: #edf6f2;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: var(--primary-dark);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 6px;
}


/* =========================================
   MAIN
========================================= */

.site-main {
    overflow: hidden;
}


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

.hero-section {
    min-height: 570px;
    display: flex;
    align-items: center;
    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(3, 69, 53, 0.96),
            rgba(3, 69, 53, 0.72)
        ),
        url("assets/images/hero.jpg");

    background-size: cover;
    background-position: center;
}

.hero-content {
    padding: 90px 0;
}

.hero-text {
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(244, 197, 66, 0.5);
    border-radius: 30px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
}

.hero-text h1 {
    margin: 0 0 22px;
    color: var(--white);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.08;
    font-weight: 900;
}

.hero-text p {
    max-width: 650px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 25px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 700;
}

.btn-primary {
    background: var(--accent);
    color: #17382f;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}


/* =========================================
   COMMON SECTIONS
========================================= */

.about-section,
.activities-section,
.notice-section {
    padding: 90px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading > span,
.section-label {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-heading h2 {
    margin: 10px 0 15px;
    color: #123c2f;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
}

.section-heading p {
    margin: 0;
    color: #60756d;
    line-height: 1.8;
}


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

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.about-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #eaf5f0;
    color: var(--primary);
    border-radius: 50%;
    font-weight: 800;
}

.about-card h3 {
    margin: 0 0 12px;
    color: #123c2f;
    font-size: 22px;
}

.about-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}


/* =========================================
   ACTIVITIES
========================================= */

.activities-section {
    background: #f0f6f3;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.activity-card {
    overflow: hidden;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.activity-image {
    width: 100%;
    height: 230px;
    background: #dfeae5;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9f0ec;
    color: #527267;
    font-weight: 600;
}

.activity-content {
    padding: 26px;
}

.activity-category {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.activity-content h3 {
    margin: 9px 0 10px;
    color: #123c2f;
    font-size: 21px;
}

.activity-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.activity-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.activity-link:hover {
    text-decoration: underline;
}


/* =========================================
   NOTICE
========================================= */

.notice-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid #e3ebe7;
    border-radius: 12px;
    overflow: hidden;
}

.notice-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    border-bottom: 1px solid #e7eeeb;
}

.notice-item:last-child {
    border-bottom: 0;
}

.notice-date {
    min-width: 75px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #eaf5f0;
    color: var(--primary);
    border-radius: 10px;
}

.notice-date strong {
    font-size: 27px;
}

.notice-date span {
    font-size: 12px;
    font-weight: 700;
}

.notice-content h3 {
    margin: 5px 0 8px;
    color: #123c2f;
}

.notice-content h3 a {
    color: inherit;
    text-decoration: none;
}

.notice-content h3 a:hover {
    color: var(--primary);
}

.notice-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.notice-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.notice-link:hover {
    text-decoration: underline;
}


/* =========================================
   LEADERS
========================================= */

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

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.leader-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.leader-image {
    width: 100%;
    height: 280px;
    background: #eef4f1;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #668078;
    font-weight: 600;
}

.leader-content {
    padding: 24px;
}

.leader-content h3 {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: 21px;
}

.leader-content p {
    margin: 0;
    color: #60736c;
    line-height: 1.8;
}

.leader-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.leader-link:hover {
    text-decoration: underline;
}


/* =========================================
   MEMBERS
========================================= */

.members-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.member-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.member-image {
    width: 100%;
    height: 240px;
    background: #e9f0ec;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #668078;
    font-weight: 600;
}

.member-content {
    padding: 20px;
}

.member-content h3 {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: 19px;
}

.member-content p {
    margin: 0;
    color: #60736c;
    line-height: 1.7;
}

.member-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.member-link:hover {
    text-decoration: underline;
}


/* =========================================
   GALLERY
========================================= */

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
    border-radius: 14px;
    background: #e9f0ec;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px 18px 18px;
    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.75)
    );
}

.gallery-overlay h3 {
    margin: 0;
    color: var(--white);
    font-size: 17px;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-section .section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.contact-section .section-heading h2 {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 32px;
    line-height: 1.3;
}

.contact-section .section-heading p {
    margin: 0;
    color: #5d6f68;
    font-size: 16px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-card {
    padding: 30px 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
}

.contact-card h3 {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 20px;
}

.contact-card p {
    margin: 0;
    color: #52645d;
    font-size: 15px;
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 60px 0 25px;
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 20px;
}

.footer-about p,
.footer-contact p {
    margin: 0 0 8px;
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 14px;
}


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

@media (max-width: 1000px) {

    .main-navigation a {
        padding: 9px 8px;
        font-size: 14px;
    }

    .members-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 850px) {

    .top-links {
        display: none;
    }

    .header-inner {
        min-height: 70px;
        position: relative;
    }

    .site-title-area a {
        font-size: 16px;
    }

    .site-title-area span {
        font-size: 13px;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        background: var(--white);
        border-top: 1px solid #e8eeeb;
        border-bottom: 1px solid #e8eeeb;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        z-index: 9999;
    }

    .main-navigation.mobile-menu-open {
        display: block;
    }

    .main-navigation ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
    }

    .main-navigation li {
        width: 100%;
    }

    .main-navigation a {
        width: 100%;
        padding: 14px 20px;
        border-radius: 0;
    }

    .main-navigation a:hover,
    .main-navigation .current-menu-item > a {
        background: #edf6f2;
    }

    .mobile-menu-button {
        display: block;
        position: relative;
        z-index: 10000;
    }

    .about-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 650px) {

    .hero-section {
        min-height: 520px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .about-section,
    .activities-section,
    .notice-section {
        padding: 65px 0;
    }

    .notice-item {
        gap: 15px;
        padding: 20px;
    }

    .notice-date {
        min-width: 65px;
        height: 65px;
    }

    .leaders-grid,
    .members-grid,
    .gallery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .leader-image {
        height: 300px;
    }

    .gallery-item {
        height: 220px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


@media (max-width: 420px) {

    .site-branding {
        gap: 9px;
    }

    .site-branding .custom-logo,
    .site-branding .default-logo img,
    .site-branding img {
        width: 48px;
        height: 48px;
    }

    .site-title-area a {
        font-size: 14px;
    }

    .site-title-area span {
        font-size: 11px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-badge {
        font-size: 12px;
    }

    .section-heading h2 {
        font-size: 30px;
    }
}
/* =========================================
   NOTICE TICKER
========================================= */

.notice-ticker-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.notice-ticker {
    display: flex;
    align-items: stretch;
    min-height: 52px;
    overflow: hidden;
}

.notice-ticker-label {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 0 22px;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.notice-ticker-wrapper {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.notice-ticker-content {
    display: inline-flex;
    align-items: center;
    animation: noticeTicker 25s linear infinite;
    padding-left: 100%;
}

.notice-ticker-item {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    margin: 0 18px;
}

.notice-ticker-item:hover {
    color: var(--primary);
}

.notice-ticker-separator {
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
}

@keyframes noticeTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Mobile */
@media (max-width: 768px) {

    .notice-ticker {
        min-height: 46px;
    }

    .notice-ticker-label {
        padding: 0 14px;
        font-size: 14px;
    }

    .notice-ticker-item {
        font-size: 14px;
        margin: 0 12px;
    }

    .notice-ticker-content {
        animation-duration: 20s;
    }
}
/* =========================================
   FOOTER SOCIAL ICONS
========================================= */

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.social-icon {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.2);
}

.facebook-link:hover {
    background: #1877f2;
    transform: translateY(-3px);
}

.map-link {
    background: rgba(66, 133, 244, 0.2);
}

.map-link:hover {
    background: #4285f4;
    transform: translateY(-3px);
}

.footer-social-link:hover {
    color: var(--white);
}


/* Mobile */

@media (max-width: 768px) {

    .footer-social-link {
        width: 40px;
        height: 40px;
    }

    .social-icon {
        font-size: 20px;
    }

}
/* =========================================
   ALL MEMBERS PAGE - STYLISH GRID
========================================= */

.all-members-page {
    padding: 70px 0;
    background: #f7f9f8;
    min-height: 70vh;
}

.all-members-page .section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.all-members-page .section-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 700;
}

.all-members-page .section-heading h1 {
    margin: 0 0 12px;
}

.all-members-page .section-heading p {
    margin: 0 auto;
    max-width: 650px;
}


/* Members Grid */

.all-members-page .members-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* Member Card */

.all-members-page .member-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.all-members-page .member-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}


/* Member Image */

.all-members-page .member-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #eef2f0;
}

.all-members-page .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.all-members-page .member-card:hover .member-image img {
    transform: scale(1.05);
}


/* Member Content */

.all-members-page .member-content {
    padding: 22px;
}

.all-members-page .member-content h3 {
    margin: 0 0 10px;
    font-size: 21px;
}

.all-members-page .member-content p {
    margin: 0 0 18px;
    line-height: 1.7;
}


/* Details Button */

.all-members-page .member-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.all-members-page .member-link:hover {
    text-decoration: underline;
}


/* Back Home */

.members-back-home {
    text-align: center;
    margin-top: 50px;
}

.members-view-all-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.members-view-all-button:hover {
    color: var(--white);
    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .all-members-page .members-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .all-members-page {
        padding: 45px 0;
    }

    .all-members-page .members-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .all-members-page .member-image {
        height: 280px;
    }

    .all-members-page .member-content {
        padding: 18px;
    }

}
/* =========================================
   REGISTRATION PAGE
========================================= */

.registration-page {
    padding: 70px 0;
    background: #f7f9f8;
    min-height: 70vh;
}

.registration-page .section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.registration-page .section-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 700;
}

.registration-page .section-heading h1 {
    margin: 0 0 12px;
}

.registration-page .section-heading p {
    max-width: 650px;
    margin: 0 auto;
}


/* Registration Card */

.registration-frame {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}


/* Registration iframe */

.registration-frame iframe {
    display: block;
    width: 100%;
    min-height: 1100px;
    border: 0;
    background: var(--white);
}


/* Mobile */

@media (max-width: 768px) {

    .registration-page {
        padding: 45px 0;
    }

    .registration-page .section-heading {
        margin-bottom: 25px;
    }

    .registration-frame {
        border-radius: 10px;
    }

    .registration-frame iframe {
        min-height: 1200px;
    }

}
/* =========================================
   HEADER + SEARCH FIX
========================================= */

/* Main header */
.site-header {
    background: #ffffff;
    position: relative;
    z-index: 1000;
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 110px;
}


/* =========================================
   BRANDING
========================================= */

.site-branding {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 auto;
    min-width: 0;
}

.site-branding .custom-logo-link,
.site-branding .default-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-branding .custom-logo,
.site-branding .default-logo img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.site-title-area {
    min-width: 0;
}

.site-title-area a {
    display: block;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
    color: #064d3b;
    text-decoration: none;
    white-space: normal;
}

.site-title-area span {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.4;
    color: #27715f;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.main-navigation {
    flex: 0 0 auto;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation a {
    display: block;
    color: #174f42;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}


/* =========================================
   HEADER SEARCH
========================================= */

.header-search {
    flex: 0 0 auto;
}

.header-search-form {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.header-search-form label {
    margin: 0;
}

.header-search-input {
    width: 150px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #cfdad6;
    border-right: 0;
    border-radius: 9px 0 0 9px;
    outline: none;
    background: #ffffff;
    color: #174f42;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.header-search-input:focus {
    border-color: #0b5d48;
}

.header-search-input::placeholder {
    color: #8a9994;
}

.header-search-button {
    width: 44px;
    height: 42px;
    padding: 0;
    border: 1px solid #0b5d48;
    border-radius: 0 9px 9px 0;
    background: #0b5d48;
    color: #ffffff;
    cursor: pointer;
    font-size: 21px;
    line-height: 1;
}

.header-search-button:hover {
    background: #064d3b;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-button {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0b5d48;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .site-header .header-inner {
        gap: 16px;
    }

    .main-navigation ul {
        gap: 12px;
    }

    .main-navigation a {
        font-size: 13px;
    }

    .header-search-input {
        width: 125px;
    }

    .site-title-area a {
        font-size: 19px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .site-header .header-inner {
        min-height: 100px;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* Hide desktop navigation */
    .main-navigation {
        display: none;
    }

    /* Logo */
    .site-branding {
        flex: 1 1 auto;
        gap: 10px;
    }

    .site-branding .custom-logo,
    .site-branding .default-logo img {
        width: 68px;
        height: 68px;
    }

    /* Site name */
    .site-title-area {
        flex: 1 1 auto;
        min-width: 0;
    }

    .site-title-area a {
        font-size: 16px;
        line-height: 1.35;
    }

    .site-title-area span {
        font-size: 12px;
        margin-top: 2px;
    }

    /* Search */
    .header-search {
        flex: 0 0 auto;
    }

    .header-search-input {
        width: 115px;
        height: 40px;
        font-size: 13px;
        padding: 0 9px;
    }

    .header-search-button {
        width: 40px;
        height: 40px;
        font-size: 19px;
    }

    /* Menu */
    .mobile-menu-button {
        width: 42px;
        height: 42px;
        font-size: 31px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .site-header .header-inner {
        min-height: 90px;
        gap: 7px;
    }

    .site-branding {
        gap: 7px;
    }

    .site-branding .custom-logo,
    .site-branding .default-logo img {
        width: 58px;
        height: 58px;
    }

    .site-title-area a {
        font-size: 14px;
        line-height: 1.3;
    }

    .site-title-area span {
        font-size: 11px;
    }

    /* Mobile Search Input */
.header-search-input {
    display: block;
    width: 105px;
    height: 40px;
    font-size: 13px;
    padding: 0 8px;
}

.header-search-button {
    width: 40px;
    height: 40px;
    border-radius: 0 8px 8px 0;
}

    .header-search-button {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
        font-size: 29px;
    }

}
/* =========================================
   SEARCH RESULTS PAGE
========================================= */

.search-results-page {
    padding: 70px 0 90px;
    background: #f7f9f8;
    min-height: 70vh;
}

.search-results-page .section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.search-results-page .section-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #b58a19;
    font-size: 15px;
    font-weight: 700;
}

.search-results-page .section-heading h1 {
    margin: 0;
    color: #064d3b;
    font-size: 32px;
    line-height: 1.4;
}


/* Results Grid */

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}


/* Result Card */

.search-result-card {
    display: flex;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3ebe8;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
}


/* Image */

.search-result-image {
    flex: 0 0 180px;
    height: 190px;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.search-result-card:hover .search-result-image img {
    transform: scale(1.04);
}


/* Content */

.search-result-content {
    flex: 1;
    padding: 22px;
}

.search-result-type {
    display: inline-block;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 20px;
    background: #edf7f3;
    color: #0b5d48;
    font-size: 12px;
    font-weight: 700;
}

.search-result-content h2 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.4;
}

.search-result-content h2 a {
    color: #064d3b;
    text-decoration: none;
}

.search-result-content h2 a:hover {
    color: #b58a19;
}

.search-result-content p {
    margin: 0 0 16px;
    color: #66736f;
    font-size: 14px;
    line-height: 1.7;
}

.search-result-link {
    color: #0b5d48;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.search-result-link:hover {
    color: #b58a19;
}


/* No Results */

.search-no-results {
    max-width: 650px;
    margin: 20px auto 0;
    padding: 55px 30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e3ebe8;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.search-no-results-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf7f3;
    color: #0b5d48;
    font-size: 34px;
}

.search-no-results h2 {
    margin: 0 0 10px;
    color: #064d3b;
    font-size: 25px;
}

.search-no-results p {
    margin: 0 auto 25px;
    color: #68756f;
    line-height: 1.7;
}

.search-back-home {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    background: #0b5d48;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.search-back-home:hover {
    background: #064d3b;
}


/* Pagination */

.search-pagination {
    margin-top: 45px;
    text-align: center;
}

.search-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.search-pagination a,
.search-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 7px 12px;
    border: 1px solid #d9e4df;
    border-radius: 7px;
    background: #ffffff;
    color: #0b5d48;
    text-decoration: none;
    font-size: 14px;
}

.search-pagination .current {
    background: #0b5d48;
    color: #ffffff;
    border-color: #0b5d48;
}


/* =========================================
   MOBILE SEARCH RESULTS
========================================= */

@media (max-width: 768px) {

    .search-results-page {
        padding: 45px 0 60px;
    }

    .search-results-page .section-heading {
        margin-bottom: 30px;
    }

    .search-results-page .section-heading h1 {
        font-size: 24px;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .search-result-card {
        display: block;
    }

    .search-result-image {
        width: 100%;
        height: 210px;
    }

    .search-result-content {
        padding: 20px;
    }

    .search-result-content h2 {
        font-size: 19px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .search-results-page .section-heading h1 {
        font-size: 21px;
    }

    .search-result-image {
        height: 190px;
    }

    .search-no-results {
        padding: 40px 20px;
    }

}
/* =========================================
   FINAL HEADER SEARCH FIX
========================================= */

/* Header layout */
.site-header .header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Branding must keep enough space */
.site-branding {
    flex: 1 1 auto;
    min-width: 0;
}

/* Desktop navigation */
.main-navigation {
    flex: 0 0 auto;
}

/* Desktop search */
.header-search {
    position: relative;
    flex: 0 0 auto;
}

.desktop-search-form {
    display: flex;
    align-items: center;
}

.desktop-search-form .header-search-input {
    width: 150px;
    height: 40px;
}

.desktop-search-form .header-search-button {
    height: 40px;
}

/* Mobile search button hidden on desktop */
.mobile-search-toggle {
    display: none;
}

/* Mobile panel hidden by default */
.mobile-search-panel {
    display: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .site-header .header-inner {
        min-height: 90px;
        gap: 8px;
    }

    /* Hide desktop navigation */
    .main-navigation {
        display: none;
    }

    /* Branding */
    .site-branding {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        align-items: center;
    }

    .site-branding .custom-logo,
    .site-branding .default-logo img {
        width: 62px;
        height: 62px;
    }

    .site-title-area {
        min-width: 0;
        flex: 1 1 auto;
    }

    .site-title-area a {
        font-size: 15px;
        line-height: 1.35;
    }

    .site-title-area span {
        font-size: 11px;
    }


    /* Completely hide desktop search */
    .desktop-search-form {
        display: none !important;
    }

}

/* =========================================
   HEADER SEARCH — CLEAN RESPONSIVE SYSTEM
========================================= */

.site-header .header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-branding {
    flex: 1 1 auto;
    min-width: 0;
}

.main-navigation {
    flex: 0 0 auto;
}

.header-search {
    flex: 0 0 auto;
    margin-left: auto;
}

.header-search-form {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
}

.header-search-input {
    width: 150px;
    height: 40px;
    padding: 0 12px;

    border: 1px solid #d6e1dd;
    border-right: 0;
    border-radius: 7px 0 0 7px;

    background: #ffffff;
    color: #174f42;

    font-family: inherit;
    font-size: 14px;

    outline: none;
    box-sizing: border-box;
}

.header-search-input:focus {
    border-color: #0b5d48;
}

.header-search-button {
    width: 42px;
    height: 40px;

    padding: 0;
    border: 0;
    border-radius: 0 7px 7px 0;

    background: #0b5d48;
    color: #ffffff;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;
}

.header-search-button:hover {
    background: #064d3b;
}


/* =========================================
   MOBILE HEADER
========================================= */

@media (max-width: 768px) {

    .site-header .header-inner {
        min-height: 80px;
        gap: 8px;
    }

    .site-branding {
        flex: 1 1 auto;
        min-width: 0;
    }

    .main-navigation {
        display: none;
    }

    .header-search {
        flex: 0 0 auto;
        margin-left: 0;
    }

    .header-search-form {
        display: flex;
    }

    .header-search-input {
        display: none;
    }

    .header-search-button {
        width: 40px;
        height: 40px;

        border-radius: 8px;

        background: transparent;
        color: #0b5d48;

        font-size: 27px;
    }

    .header-search-button:hover {
        background: #edf7f3;
        color: #064d3b;
    }

    .mobile-menu-button {
        flex: 0 0 auto;

        width: 40px;
        height: 40px;

        padding: 0;

        border: 0;
        border-radius: 8px;

        background: transparent;
        color: #0b5d48;

        font-size: 27px;
        line-height: 1;

        cursor: pointer;
    }

    .mobile-menu-button:hover {
        background: #edf7f3;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .site-header .header-inner {
        min-height: 72px;
        gap: 5px;
    }

    .site-branding {
        min-width: 0;
    }

    .site-branding .custom-logo,
    .site-branding .default-logo img {
        width: 55px;
        height: 55px;
    }

    .site-title-area {
        min-width: 0;
    }

    .site-title-area a {
        font-size: 14px;
        line-height: 1.3;
    }

    .site-title-area span {
        font-size: 10px;
    }

    .header-search-button,
    .mobile-menu-button {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

}
/* =========================================
   MOBILE SEARCH TOGGLE
========================================= */

@media (max-width: 768px) {

    .header-search {
        position: relative;
    }

    .header-search-form {
        display: flex;
        align-items: center;
    }

    .header-search-input {
        display: none;
        width: 180px;
        height: 40px;
        margin-right: 6px;

        padding: 0 12px;

        border: 1px solid #d6e1dd;
        border-radius: 7px;

        background: #ffffff;
        color: #174f42;

        font-family: inherit;
        font-size: 14px;

        outline: none;
        box-sizing: border-box;
    }

    .header-search.mobile-search-open .header-search-input {
        display: block;
    }

    .header-search-button {
        flex: 0 0 auto;

        width: 40px;
        height: 40px;

        padding: 0;
        border: 0;
        border-radius: 8px;

        background: transparent;
        color: #0b5d48;

        font-size: 27px;
        line-height: 1;

        cursor: pointer;
    }

    .header-search-button:hover {
        background: #edf7f3;
    }

}

@media (max-width: 480px) {

    .header-search-input {
        width: 145px;
        height: 36px;
        font-size: 13px;
    }

    .header-search-button {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}
/* =========================================
   MEMBER PROFILE PAGE
========================================= */

.member-profile-page {
    padding: 80px 0;
    background: #f7f9f8;
    min-height: 70vh;
}

.member-profile-card {
    max-width: 950px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 360px 1fr;

    background: #ffffff;
    border: 1px solid #e3ebe8;
    border-radius: 22px;
    overflow: hidden;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.member-profile-image {
    min-height: 430px;
    background: #edf7f3;
}

.member-profile-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;

    display: block;
    object-fit: cover;
}

.member-profile-placeholder {
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #6c7974;
    font-size: 16px;
}

.member-profile-content {
    padding: 55px 50px;
}

.member-profile-label {
    display: inline-block;

    margin-bottom: 14px;
    padding: 7px 14px;

    border-radius: 30px;

    background: #edf7f3;
    color: #0b5d48;

    font-size: 13px;
    font-weight: 700;
}

.member-profile-content h1 {
    margin: 0 0 30px;

    color: #064d3b;

    font-size: 36px;
    line-height: 1.35;
}

.member-profile-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 15px 0;

    border-bottom: 1px solid #e8eeeb;
}

.member-profile-info strong {
    color: #34443e;
}

.member-profile-info span {
    color: #0b5d48;
    font-weight: 600;
    text-align: right;
}

.member-profile-description {
    margin-top: 28px;

    color: #65736d;

    font-size: 15px;
    line-height: 1.9;
}

.member-profile-back {
    display: inline-block;

    margin-top: 30px;
    padding: 12px 22px;

    border-radius: 8px;

    background: #0b5d48;
    color: #ffffff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition: background 0.25s ease,
                transform 0.25s ease;
}

.member-profile-back:hover {
    background: #064d3b;
    transform: translateY(-2px);
}


/* Mobile */

@media (max-width: 768px) {

    .member-profile-page {
        padding: 45px 0 60px;
    }

    .member-profile-card {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .member-profile-image,
    .member-profile-image img,
    .member-profile-placeholder {
        min-height: 300px;
    }

    .member-profile-image img {
        height: 300px;
    }

    .member-profile-content {
        padding: 32px 24px;
    }

    .member-profile-content h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .member-profile-info {
        display: block;
    }

    .member-profile-info span {
        display: block;
        margin-top: 6px;
        text-align: left;
    }

}
/* =========================================
   LEADER PROFILE PAGE
========================================= */

.leader-profile-page {
    padding: 80px 0;
    background: #f7f9f8;
    min-height: 70vh;
}

.leader-profile-card {
    max-width: 950px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 360px 1fr;

    background: #ffffff;
    border: 1px solid #e3ebe8;
    border-radius: 22px;
    overflow: hidden;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.leader-profile-image {
    min-height: 430px;
    background: #edf7f3;
}

.leader-profile-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;

    display: block;
    object-fit: cover;
}

.leader-profile-placeholder {
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #6c7974;
    font-size: 16px;
}

.leader-profile-content {
    padding: 55px 50px;
}

.leader-profile-label {
    display: inline-block;

    margin-bottom: 14px;
    padding: 7px 14px;

    border-radius: 30px;

    background: #edf7f3;
    color: #0b5d48;

    font-size: 13px;
    font-weight: 700;
}

.leader-profile-content h1 {
    margin: 0 0 30px;

    color: #064d3b;

    font-size: 36px;
    line-height: 1.35;
}

.leader-profile-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 15px 0;

    border-bottom: 1px solid #e8eeeb;
}

.leader-profile-info strong {
    color: #34443e;
}

.leader-profile-info span {
    color: #0b5d48;
    font-weight: 600;
    text-align: right;
}

.leader-profile-back {
    display: inline-block;

    margin-top: 30px;
    padding: 12px 22px;

    border-radius: 8px;

    background: #0b5d48;
    color: #ffffff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition: background 0.25s ease,
                transform 0.25s ease;
}

.leader-profile-back:hover {
    background: #064d3b;
    transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .leader-profile-page {
        padding: 45px 0 60px;
    }

    .leader-profile-card {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .leader-profile-image,
    .leader-profile-image img,
    .leader-profile-placeholder {
        min-height: 300px;
    }

    .leader-profile-image img {
        height: 300px;
    }

    .leader-profile-content {
        padding: 32px 24px;
    }

    .leader-profile-content h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .leader-profile-info {
        display: block;
    }

    .leader-profile-info span {
        display: block;
        margin-top: 6px;
        text-align: left;
    }

}
/* =========================================
   LEADER CARDS
========================================= */

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.leader-card {
    background: #ffffff;
    border: 1px solid #e3ebe8;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.leader-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}


/* =========================================
   LEADER IMAGE
========================================= */

.leader-image {
    width: 100%;
    height: 280px;

    background: #edf7f3;

    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.04);
}

.leader-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #6c7974;
    font-size: 15px;
}


/* =========================================
   LEADER CONTENT
========================================= */

.leader-content {
    padding: 24px;
}

.leader-content h3 {
    margin: 0 0 18px;

    color: #064d3b;

    font-size: 21px;
    line-height: 1.4;
}


/* =========================================
   LEADER META
========================================= */

.leader-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;

    padding: 11px 0;

    border-bottom: 1px solid #edf1ef;

    font-size: 14px;
}

.leader-meta strong {
    color: #52605b;
    font-weight: 600;
}

.leader-meta span {
    color: #0b5d48;
    font-weight: 600;

    text-align: right;
}


/* =========================================
   LEADER LINK
========================================= */

.leader-link {
    display: inline-block;

    margin-top: 20px;
    padding: 11px 18px;

    border-radius: 8px;

    background: #0b5d48;
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.leader-link:hover {
    background: #064d3b;

    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .leaders-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .leader-image {
        height: 300px;
    }

    .leader-content {
        padding: 20px;
    }

    .leader-content h3 {
        font-size: 20px;
    }

}
/* =========================================
   MOBILE MENU FIX
========================================= */

@media (max-width: 768px) {

    .main-navigation {
        display: none;
    }

    .main-navigation.mobile-menu-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        background: #ffffff;

        border-top: 1px solid #e3ebe8;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

        z-index: 9999;
    }

    .main-navigation.mobile-menu-open ul {
        display: block;

        margin: 0;
        padding: 10px 0;

        list-style: none;
    }

    .main-navigation.mobile-menu-open li {
        display: block;

        margin: 0;
        padding: 0;
    }

    .main-navigation.mobile-menu-open li a {
        display: block;

        padding: 14px 20px;

        color: #064d3b;

        text-decoration: none;

        font-size: 15px;
        font-weight: 600;

        border-bottom: 1px solid #edf1ef;
    }

    .main-navigation.mobile-menu-open li a:hover {
        background: #edf7f3;
        color: #0b5d48;
    }

}
/* =========================================
   FINAL MOBILE MENU FIX
========================================= */

@media (max-width: 768px) {

    .site-header {
        position: relative;
        z-index: 10000;
    }

    .site-header .header-inner {
        position: relative;
    }

    .main-navigation {
        display: none !important;
    }

    .main-navigation.mobile-menu-open {
        display: block !important;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        background: #ffffff;

        border-top: 1px solid #e3ebe8;

        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

        z-index: 99999;
    }

    .main-navigation.mobile-menu-open ul {
        display: block !important;

        width: 100%;

        margin: 0;
        padding: 8px 0;

        list-style: none;
    }

    .main-navigation.mobile-menu-open li {
        display: block !important;

        width: 100%;

        margin: 0;
        padding: 0;
    }

    .main-navigation.mobile-menu-open li a {
        display: block !important;

        width: 100%;

        padding: 15px 20px;

        box-sizing: border-box;

        color: #064d3b;

        background: #ffffff;

        border-bottom: 1px solid #edf1ef;

        text-decoration: none;

        font-size: 15px;
        font-weight: 600;
    }

    .main-navigation.mobile-menu-open li a:hover {
        background: #edf7f3;
        color: #0b5d48;
    }

    .mobile-menu-button {
        position: relative;

        z-index: 100001;

        display: flex;

        align-items: center;
        justify-content: center;
    }

}
/* =========================================
   STATISTICS SECTION
========================================= */

.statistics-section {
    padding: 80px 0;
    background: #f7f9f8;
}

.statistics-section .section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.statistics-section .section-heading span {
    display: inline-block;
    margin-bottom: 10px;

    color: #0b5d48;
    font-size: 14px;
    font-weight: 700;
}

.statistics-section .section-heading h2 {
    margin: 0 0 12px;

    color: #064d3b;
}

.statistics-section .section-heading p {
    max-width: 650px;
    margin: 0 auto;

    color: #66736e;
}


/* =========================================
   STATISTICS GRID
========================================= */

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* =========================================
   STATISTIC CARD
========================================= */

.statistic-card {
    padding: 32px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e3ebe8;
    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.statistic-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
}


/* =========================================
   ICON
========================================= */

.statistic-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf7f3;
    color: #0b5d48;

    font-size: 25px;
}


/* =========================================
   NUMBER
========================================= */

.statistic-number {
    margin-bottom: 8px;

    color: #064d3b;

    font-size: 38px;
    line-height: 1;

    font-weight: 800;
}


/* =========================================
   LABEL
========================================= */

.statistic-label {
    color: #5f6d67;

    font-size: 14px;
    line-height: 1.5;

    font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .statistics-section {
        padding: 55px 0;
    }

    .statistics-section .section-heading {
        margin-bottom: 30px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .statistic-card {
        padding: 24px 12px;
        border-radius: 14px;
    }

    .statistic-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 14px;

        font-size: 21px;
    }

    .statistic-number {
        font-size: 30px;
    }

    .statistic-label {
        font-size: 12px;
    }

}

/* =========================================================
   MGC ROVER
   WEBSITE ACCOUNT - LOGIN & REGISTRATION
========================================================= */


/* =========================================================
   COMMON ACCOUNT PAGE
========================================================= */

.website-registration-page,
.website-login-page {

    background: #f5f8f7;

    padding: 55px 20px 70px;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        "SolaimanLipi",
        Arial,
        sans-serif !important;
}


/* =========================================================
   ACCOUNT CONTAINER
========================================================= */

.website-registration-page .container,
.website-login-page .container {

    width: 100%;
    max-width: 760px;

    margin: 0 auto;
}


/* =========================================================
   ACCOUNT CARD
========================================================= */

.website-registration-page .registration-box,
.website-login-page .login-box {

    background: #ffffff;

    border: 1px solid #e1ebe7;

    border-radius: 18px;

    padding: 38px;

    box-shadow:
        0 12px 35px rgba(0, 64, 50, 0.08);

    box-sizing: border-box;
}


/* =========================================================
   SMALL LABEL / TOP TEXT
========================================================= */

.website-registration-page .registration-heading,
.website-login-page .login-heading {

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif !important;

    color: #064638;

    font-weight: 800;

    line-height: 1.25;

    margin-top: 0;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.website-registration-page h1,
.website-login-page h1 {

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif !important;

    color: #064638 !important;

    font-weight: 800 !important;

    font-size: clamp(38px, 7vw, 58px);

    line-height: 1.2;

    margin-top: 0;

    margin-bottom: 25px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.website-registration-page p,
.website-login-page p {

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif !important;

    color: #4b5d57;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   REGISTRATION FORM
========================================================= */

.website-registration-form {

    width: 100%;

    margin-top: 28px;
}


/* =========================================================
   REGISTRATION FIELD
========================================================= */

.website-registration-form .registration-field {

    width: 100%;

    margin-bottom: 20px;
}


/* =========================================================
   LABEL
========================================================= */

.website-registration-form label {

    display: block;

    margin-bottom: 8px;

    color: #173f35;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif !important;

    font-size: 16px;

    font-weight: 700;
}


/* =========================================================
   REGISTRATION INPUT
========================================================= */

.website-registration-form input[type="text"],
.website-registration-form input[type="email"],
.website-registration-form input[type="password"] {

    width: 100%;

    height: 54px;

    padding: 12px 16px;

    box-sizing: border-box;

    border: 1px solid #d4e1dc;

    border-radius: 10px;

    background: #ffffff;

    color: #173f35;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif !important;

    font-size: 16px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


/* =========================================================
   LOGIN FORM
========================================================= */

#mgc-login-form {

    width: 100%;

    margin-top: 28px;
}


/* =========================================================
   LOGIN FORM PARAGRAPH
========================================================= */

#mgc-login-form p {

    margin: 0 0 20px;
}


/* =========================================================
   LOGIN LABEL
========================================================= */

#mgc-login-form label {

    display: block;

    margin-bottom: 8px;

    color: #173f35;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif !important;

    font-size: 16px;

    font-weight: 700;
}


/* =========================================================
   LOGIN INPUT
========================================================= */

#mgc-login-form input[type="text"],
#mgc-login-form input[type="email"],
#mgc-login-form input[type="password"] {

    width: 100%;

    height: 54px;

    padding: 12px 16px;

    box-sizing: border-box;

    border: 1px solid #d4e1dc;

    border-radius: 10px;

    background: #ffffff;

    color: #173f35;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif !important;

    font-size: 16px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


/* =========================================================
   INPUT FOCUS
========================================================= */

.website-registration-form input:focus,
#mgc-login-form input:focus {

    border-color: #006b56;

    box-shadow:
        0 0 0 3px rgba(0, 107, 86, 0.10);
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.website-registration-form input::placeholder,
#mgc-login-form input::placeholder {

    color: #9aa8a3;

    opacity: 1;
}


/* =========================================================
   REGISTRATION BUTTON
========================================================= */

.website-registration-form .registration-submit-button {

    width: 100%;

    min-height: 54px;

    padding: 12px 24px;

    margin-top: 8px;

    border: 0;

    border-radius: 10px;

    background: #006b56;

    color: #ffffff;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif !important;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


.website-registration-form .registration-submit-button:hover {

    background: #005542;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(0, 70, 55, 0.18);
}


/* =========================================================
   LOGIN BUTTON
========================================================= */

#mgc-login-form input[type="submit"] {

    width: 100%;

    min-height: 54px;

    padding: 12px 24px;

    border: 0;

    border-radius: 10px;

    background: #006b56;

    color: #ffffff;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif !important;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


#mgc-login-form input[type="submit"]:hover {

    background: #005542;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(0, 70, 55, 0.18);
}


/* =========================================================
   REMEMBER ME
========================================================= */

#mgc-login-form .login-remember label {

    display: flex;

    align-items: center;

    gap: 8px;

    font-weight: 500;

    color: #52635d;
}


#mgc-login-form .login-remember input[type="checkbox"] {

    width: 18px;

    height: 18px;

    margin: 0;

    accent-color: #006b56;
}


/* =========================================================
   ACCOUNT LINKS
========================================================= */

.website-registration-page a,
.website-login-page a {

    color: #006b56;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif !important;

    font-weight: 700;

    text-decoration: none;
}


.website-registration-page a:hover,
.website-login-page a:hover {

    color: #004d3e;

    text-decoration: underline;
}


/* =========================================================
   SUCCESS / ERROR MESSAGE
========================================================= */

.website-registration-page .registration-message {

    padding: 14px 16px;

    margin-bottom: 20px;

    border-radius: 10px;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif !important;

    font-size: 15px;

    line-height: 1.6;
}


.website-registration-page .registration-error {

    background: #fff1f1;

    border: 1px solid #f0caca;

    color: #9b2929;
}


.website-registration-page .registration-success {

    background: #effaf5;

    border: 1px solid #c9e8d9;

    color: #176b48;
}


/* =========================================================
   REGISTRATION LOGIN LINK
========================================================= */

.registration-login-link {

    margin-top: 20px;

    text-align: center;

    font-size: 16px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .website-registration-page,
    .website-login-page {

        padding: 35px 16px 50px;
    }


    .website-registration-page .registration-box,
    .website-login-page .login-box {

        padding: 25px 20px;

        border-radius: 15px;

        box-shadow:
            0 8px 25px rgba(0, 64, 50, 0.07);
    }


    .website-registration-page h1,
    .website-login-page h1 {

        font-size: 40px;

        margin-bottom: 20px;
    }


    .website-registration-page p,
    .website-login-page p {

        font-size: 16px;
    }


    .website-registration-form input[type="text"],
    .website-registration-form input[type="email"],
    .website-registration-form input[type="password"],
    #mgc-login-form input[type="text"],
    #mgc-login-form input[type="email"],
    #mgc-login-form input[type="password"] {

        height: 52px;

        font-size: 16px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .website-registration-page,
    .website-login-page {

        padding-left: 12px;

        padding-right: 12px;
    }


    .website-registration-page .registration-box,
    .website-login-page .login-box {

        padding: 22px 16px;
    }


    .website-registration-page h1,
    .website-login-page h1 {

        font-size: 36px;
    }
}
/* =========================================
   MGC ROVER PWA INSTALL CARD
========================================= */

#mgc-pwa-install-card {
    position: fixed;
    top: 145px;
    left: 50%;
    transform: translateX(-50%) translateY(-18px);
    z-index: 999999;

    width: min(92%, 390px);

    padding: 10px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #006b56 0%,
            #008f73 48%,
            #d5a928 100%
        );

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.22);

    opacity: 0;

    animation:
        mgcPwaInstallIn
        0.55s
        cubic-bezier(.22, 1, .36, 1)
        forwards;

    overflow: hidden;
}

/* ভিতরের glass-style অংশ */

.mgc-pwa-install-content {
    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 58px;

    padding: 8px 9px;

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Install Icon */

.mgc-pwa-install-icon {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.95);

    color: #006b56;

    font-size: 25px;
    font-weight: 900;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.12);
}

.mgc-pwa-install-icon span {
    display: block;
    line-height: 1;

    animation:
        mgcPwaArrow
        1.2s
        ease-in-out
        infinite;
}

/* Text */

.mgc-pwa-install-text {
    flex: 1;
    min-width: 0;

    color: #ffffff;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        "SolaimanLipi",
        Arial,
        sans-serif;
}

.mgc-pwa-install-text strong {
    display: block;

    font-size: 14px;
    line-height: 1.4;

    font-weight: 800;
}

.mgc-pwa-install-text small {
    display: block;

    margin-top: 2px;

    font-size: 10px;
    line-height: 1.4;

    opacity: 0.88;
}

/* Install Button */

#mgc-pwa-install-button {
    flex: 0 0 auto;

    min-height: 38px;

    padding: 8px 13px;

    border: 0;
    border-radius: 10px;

    background: #ffffff;

    color: #006b56;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

#mgc-pwa-install-button:active {
    transform: scale(0.94);
}

#mgc-pwa-install-button:hover {
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.18);
}


/* =========================================
   PWA ANIMATIONS
========================================= */

@keyframes mgcPwaInstallIn {

    from {
        opacity: 0;
        transform:
            translateX(-50%)
            translateY(-18px)
            scale(0.96);
    }

    to {
        opacity: 1;
        transform:
            translateX(-50%)
            translateY(0)
            scale(1);
    }

}

@keyframes mgcPwaArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    #mgc-pwa-install-card {
        top: 145px;
        width: calc(100% - 28px);
        max-width: 390px;
    }

    .mgc-pwa-install-content {
        min-height: 56px;
    }

    .mgc-pwa-install-text strong {
        font-size: 13px;
    }

    .mgc-pwa-install-text small {
        font-size: 9px;
    }

    #mgc-pwa-install-button {
        padding: 8px 12px;
        font-size: 11px;
    }

}

/* =========================================
   MGC ROVER LANGUAGE SWITCHER
========================================= */

.header-language-switcher {
    display: flex;
    align-items: center;
    margin-left: 12px;
    flex-shrink: 0;
}

.header-language-switcher select {
    min-height: 38px;
    padding: 7px 30px 7px 11px;

    border: 1px solid rgba(0, 107, 86, 0.22);
    border-radius: 10px;

    background: #ffffff;
    color: #006b56;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    outline: none;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.07);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.header-language-switcher select:hover {
    border-color: #d5a928;

    box-shadow:
        0 5px 16px rgba(0, 0, 0, 0.10);

    transform: translateY(-1px);
}

.header-language-switcher select:focus {
    border-color: #006b56;

    box-shadow:
        0 0 0 3px rgba(0, 107, 86, 0.10);
}


/* Mobile */

@media (max-width: 768px) {

    .header-language-switcher {
        margin-left: auto;
        margin-right: 8px;
    }

    .header-language-switcher select {
        min-height: 34px;
        padding: 6px 25px 6px 8px;
        font-size: 11px;
        border-radius: 9px;
    }

}
/* =========================================
   MGCROV AI ASSISTANT
========================================= */

#mgcrov-ai-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999998;
    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        "SolaimanLipi",
        Arial,
        sans-serif;
}


/* AI BUTTON */

#mgcrov-ai-button {
    position: relative;
    width: 60px;
    height: 60px;
    padding: 3px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #006b56 0%,
        #008f73 50%,
        #d5a928 100%
    );
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        0 0 0 0 rgba(0, 107, 86, 0.35);
    cursor: pointer;
    overflow: visible;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
    animation: mgcrovAiPulse 2.5s infinite;
}

#mgcrov-ai-button:hover {
    transform: scale(1.08);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.30),
        0 0 0 8px rgba(0, 107, 86, 0.10);
}

#mgcrov-ai-button img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}


/* ONLINE STATUS */

.mgcrov-ai-status {
    position: absolute;
    right: 1px;
    bottom: 2px;
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #19c37d;
}


/* CHAT WINDOW */

#mgcrov-ai-chat {
    position: fixed;
    right: 18px;
    bottom: 90px;

    width: 350px;
    max-width: calc(100vw - 24px);
    height: 500px;
    max-height: calc(100vh - 120px);

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid rgba(0, 107, 86, 0.12);
    border-radius: 20px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.20);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(.97);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}


/* OPEN */

#mgcrov-ai-chat.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}


/* HEADER */

.mgcrov-ai-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 14px;

    background:
        linear-gradient(
            135deg,
            #006b56 0%,
            #008f73 55%,
            #d5a928 100%
        );

    color: #ffffff;
}


.mgcrov-ai-title {
    display: flex;
    align-items: center;
    gap: 10px;
}


.mgcrov-ai-mini-logo {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

    padding: 2px;

    border-radius: 50%;
    background: #ffffff;
}


.mgcrov-ai-mini-logo img {
    width: 100%;
    height: 100%;
    display: block;

    border-radius: 50%;
    object-fit: cover;
}


.mgcrov-ai-title strong {
    display: block;

    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
}


.mgcrov-ai-title small {
    display: block;

    margin-top: 2px;

    font-size: 10px;
    line-height: 1.3;

    opacity: .88;
}


#mgcrov-ai-close {
    width: 34px;
    height: 34px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.15);
    color: #ffffff;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}


#mgcrov-ai-close:hover {
    background: rgba(255,255,255,.25);
    transform: rotate(90deg);
}


/* MESSAGES */

#mgcrov-ai-messages {
    flex: 1;

    padding: 15px;

    overflow-y: auto;

    background: #f6f9f8;
}


/* MESSAGE */

.mgcrov-ai-message {
    display: flex;

    margin-bottom: 11px;

    font-size: 13px;
    line-height: 1.6;
}


.mgcrov-ai-bot {
    justify-content: flex-start;
}


.mgcrov-ai-bot span {
    max-width: 85%;

    padding: 10px 12px;

    border-radius: 13px 13px 13px 4px;

    background: #ffffff;
    color: #24332f;

    box-shadow:
        0 3px 12px rgba(0,0,0,.06);
}


/* INPUT */

.mgcrov-ai-input-area {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px;

    background: #ffffff;
    border-top: 1px solid #e7eeeb;
}


#mgcrov-ai-input {
    flex: 1;

    min-width: 0;
    height: 42px;

    padding: 8px 12px;

    border: 1px solid #dbe6e2;
    border-radius: 12px;

    background: #f8faf9;
    color: #26352f;

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        Arial,
        sans-serif;

    font-size: 12px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


#mgcrov-ai-input:focus {
    border-color: #006b56;

    box-shadow:
        0 0 0 3px rgba(0,107,86,.08);
}


#mgcrov-ai-send {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border: 0;
    border-radius: 12px;

    background: #006b56;
    color: #ffffff;

    font-size: 17px;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}


#mgcrov-ai-send:hover {
    background: #008f73;
    transform: translateY(-1px);
}


#mgcrov-ai-send:active {
    transform: scale(.94);
}


/* BUTTON PULSE */

@keyframes mgcrovAiPulse {

    0% {
        box-shadow:
            0 8px 25px rgba(0,0,0,.25),
            0 0 0 0 rgba(0,107,86,.35);
    }

    70% {
        box-shadow:
            0 8px 25px rgba(0,0,0,.25),
            0 0 0 10px rgba(0,107,86,0);
    }

    100% {
        box-shadow:
            0 8px 25px rgba(0,0,0,.25),
            0 0 0 0 rgba(0,107,86,0);
    }
}


/* MOBILE */

@media (max-width: 600px) {

    #mgcrov-ai-widget {
        right: 12px;
        bottom: 14px;
    }

    #mgcrov-ai-button {
        width: 56px;
        height: 56px;
    }

    #mgcrov-ai-chat {
        right: 12px;
        bottom: 80px;

        width: calc(100vw - 24px);
        max-width: none;

        height: 70vh;
        max-height: 560px;

        border-radius: 18px;
    }

    .mgcrov-ai-header {
        padding: 12px;
    }

    #mgcrov-ai-messages {
        padding: 12px;
    }
}

/* =========================================
   MGC ROVER USER THEME SWITCHER
========================================= */

#mgc-theme-switcher {
    position: fixed;
    right: 18px;
    bottom: 88px;
    z-index: 999997;
    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        "SolaimanLipi",
        Arial,
        sans-serif;
}

#mgc-theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 7px 13px 7px 9px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, #006b56, #008f73, #d5a928);
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,.20);
    transition: transform .22s ease, box-shadow .22s ease;
}

#mgc-theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.mgc-theme-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    color: #006b56;
    font-size: 18px;
    line-height: 1;
}

#mgc-theme-panel {
    position: absolute;
    right: 0;
    bottom: 53px;
    width: 300px;
    max-width: calc(100vw - 24px);
    padding: 13px;
    border: 1px solid rgba(0,107,86,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 55px rgba(0,0,0,.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.97);
    transform-origin: bottom right;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

#mgc-theme-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mgc-theme-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 3px 3px 11px;
}

.mgc-theme-panel-header strong {
    display: block;
    color: #18342d;
    font-size: 14px;
    line-height: 1.35;
}

.mgc-theme-panel-header small {
    display: block;
    margin-top: 2px;
    color: #71817b;
    font-size: 9px;
    line-height: 1.4;
}

#mgc-theme-close {
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #eef4f1;
    color: #48615a;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.mgc-theme-options {
    display: grid;
    gap: 7px;
}

.mgc-theme-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px;
    border: 1px solid #e3ebe7;
    border-radius: 12px;
    background: #ffffff;
    color: #24352f;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.mgc-theme-option:hover {
    transform: translateX(-2px);
    border-color: #b9d4ca;
    background: #f7faf8;
}

.mgc-theme-option.active {
    border-color: #006b56;
    background: #edf7f3;
    box-shadow: inset 0 0 0 1px rgba(0,107,86,.10);
}

.mgc-theme-option > span:last-child {
    min-width: 0;
}

.mgc-theme-option strong {
    display: block;
    font-size: 11px;
    line-height: 1.35;
}

.mgc-theme-option small {
    display: block;
    margin-top: 1px;
    color: #7a8883;
    font-size: 8px;
    line-height: 1.35;
}

.mgc-theme-preview {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 10px;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,.13);
}

.mgc-theme-preview-classic {
    background: linear-gradient(135deg, #006b56 0%, #008f73 55%, #d5a928 100%);
}

.mgc-theme-preview-dark {
    background: linear-gradient(135deg, #10151c 0%, #1d2a35 60%, #8b6c21 100%);
}

.mgc-theme-preview-glass {
    background: linear-gradient(135deg, #d9f4ee 0%, #9dcfc6 50%, #d8c37a 100%);
}

.mgc-theme-preview-scout {
    background: linear-gradient(135deg, #304c3d 0%, #58735a 55%, #c6a34b 100%);
}

.mgc-theme-preview-premium {
    background: linear-gradient(135deg, #17221f 0%, #3d4d47 55%, #c9a33a 100%);
}

.mgc-theme-panel-footer {
    margin-top: 10px;
    padding-top: 9px;
    border-top: 1px solid #edf1ef;
    color: #83908b;
    font-size: 8px;
    line-height: 1.5;
    text-align: center;
}


/* -----------------------------------------
   THEME OVERRIDES
----------------------------------------- */

/* DARK */
html[data-mgc-theme="dark"] body {
    background: #10151c;
    color: #e8eeeb;
}

html[data-mgc-theme="dark"] .site-header,
html[data-mgc-theme="dark"] .site-footer {
    background: #141c24;
    color: #e8eeeb;
}

html[data-mgc-theme="dark"] .top-bar {
    background: #0b1117;
}

html[data-mgc-theme="dark"] .container,
html[data-mgc-theme="dark"] .site-main {
    color: #e8eeeb;
}

html[data-mgc-theme="dark"] .mgc-theme-option {
    background: #1b252e;
    border-color: #34424d;
    color: #e8eeeb;
}

html[data-mgc-theme="dark"] #mgc-theme-panel {
    background: #151e26;
    border-color: #34424d;
}

html[data-mgc-theme="dark"] .mgc-theme-panel-header strong {
    color: #f4f7f5;
}

html[data-mgc-theme="dark"] .mgc-theme-panel-header small,
html[data-mgc-theme="dark"] .mgc-theme-option small {
    color: #9eaaa5;
}

html[data-mgc-theme="dark"] .mgc-theme-option:hover,
html[data-mgc-theme="dark"] .mgc-theme-option.active {
    background: #21342e;
}

html[data-mgc-theme="dark"] #mgc-theme-close {
    background: #26333c;
    color: #d9e1dd;
}

/* GLASS */
html[data-mgc-theme="glass"] body {
    background: linear-gradient(135deg, #eefaf7 0%, #f7fbfa 55%, #fff9e7 100%);
}

html[data-mgc-theme="glass"] .site-header {
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0,107,86,.10);
}

html[data-mgc-theme="glass"] .top-bar {
    background: rgba(0,107,86,.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

html[data-mgc-theme="glass"] .site-footer {
    background: rgba(0,107,86,.92);
}

/* SCOUT */
html[data-mgc-theme="scout"] {
    --mgc-scout-green: #304c3d;
    --mgc-scout-gold: #c6a34b;
}

html[data-mgc-theme="scout"] .site-header {
    background: var(--mgc-scout-green);
}

html[data-mgc-theme="scout"] .top-bar {
    background: #23392e;
}

html[data-mgc-theme="scout"] .site-footer {
    background: #23392e;
}

html[data-mgc-theme="scout"] .main-navigation a:hover,
html[data-mgc-theme="scout"] .main-navigation .current-menu-item > a {
    color: var(--mgc-scout-gold);
}

/* PREMIUM */
html[data-mgc-theme="premium"] body {
    background: #f7f7f4;
}

html[data-mgc-theme="premium"] .site-header {
    background: #17221f;
}

html[data-mgc-theme="premium"] .top-bar {
    background: #0e1513;
}

html[data-mgc-theme="premium"] .site-footer {
    background: #17221f;
}

html[data-mgc-theme="premium"] .main-navigation a:hover,
html[data-mgc-theme="premium"] .main-navigation .current-menu-item > a {
    color: #c9a33a;
}


/* MOBILE */
@media (max-width: 600px) {

    #mgc-theme-switcher {
        right: 12px;
        bottom: 80px;
    }

    #mgc-theme-toggle {
        width: 44px;
        height: 44px;
        min-height: 44px;
        padding: 5px;
        justify-content: center;
        border-radius: 50%;
    }

    .mgc-theme-toggle-text {
        display: none;
    }

    .mgc-theme-toggle-icon {
        width: 29px;
        height: 29px;
    }

    #mgc-theme-panel {
        right: 0;
        bottom: 51px;
        width: 286px;
    }
}
/* =========================================
   BS ID VERIFICATION
========================================= */

.bs-verification-page {
    padding: 60px 20px 80px;
    background: #f5f8f7;
}

.bs-verification-page .container {
    max-width: 760px;
    margin: 0 auto;
}

.bs-verification-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 107, 86, 0.08);
}

.bs-verification-header {
    text-align: center;
    margin-bottom: 30px;
}

.bs-verification-header h1 {
    margin: 0 0 8px;
    color: #006b56;
    font-size: 32px;
    font-weight: 800;
}

.bs-verification-header p {
    margin: 0;
    color: #66736f;
    font-size: 15px;
}

.bs-verification-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bs-verification-form label {
    color: #26332f;
    font-size: 14px;
    font-weight: 700;
}

.bs-verification-form input {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    box-sizing: border-box;
    border: 1px solid #d9e2df;
    border-radius: 12px;
    background: #ffffff;
    color: #1f2926;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    transition: .2s ease;
}

.bs-verification-form input:focus {
    border-color: #006b56;
    box-shadow: 0 0 0 4px rgba(0, 107, 86, 0.10);
}

.bs-verification-form button {
    margin-top: 8px;
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    background: #006b56;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}

.bs-verification-form button:hover {
    background: #005443;
    transform: translateY(-1px);
}

.bs-verification-result {
    margin-top: 30px;
    padding: 28px;
    text-align: center;
    border-radius: 18px;
    background: #f7faf9;
    border: 1px solid #e0ebe7;
}

.bs-result-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #006b56;
    color: #ffffff;
    font-size: 27px;
    font-weight: 800;
}

.bs-verification-result h2 {
    margin: 0 0 8px;
    color: #26332f;
    font-size: 22px;
}

.bs-verification-result p {
    margin: 0 auto 18px;
    max-width: 540px;
    color: #687570;
    line-height: 1.7;
    font-size: 14px;
}

.bs-result-note {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2ebe8;
}

.bs-result-note strong {
    color: #006b56;
    font-size: 14px;
}

.bs-result-note span {
    color: #697570;
    font-size: 13px;
}

.bs-official-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 11px;
    background: #006b56;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    transition: .2s ease;
}

.bs-official-button:hover {
    background: #005443;
    transform: translateY(-1px);
}

@media (max-width: 600px) {

    .bs-verification-page {
        padding: 35px 15px 55px;
    }

    .bs-verification-box {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .bs-verification-header h1 {
        font-size: 25px;
    }

    .bs-verification-result {
        padding: 22px 16px;
    }
}
/* =========================================
   BS VERIFICATION STATUS
========================================= */

.bs-verification-status {
    margin-top: 25px;
    padding: 25px;
    text-align: center;
    background: #f7faf9;
    border: 1px solid #dfeae6;
    border-radius: 18px;
}

.bs-status-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #006b56;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

.bs-verification-status h2 {
    margin: 0 0 8px;
    color: #26332f;
    font-size: 21px;
}

.bs-verification-status p {
    margin: 0 auto 18px;
    max-width: 520px;
    color: #697570;
    font-size: 14px;
    line-height: 1.7;
}

.bs-status-id {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 360px;
    margin: 0 auto 18px;
    padding: 13px 16px;
    background: #ffffff;
    border: 1px solid #e1ebe8;
    border-radius: 11px;
}

.bs-status-id span {
    color: #687570;
    font-size: 13px;
}

.bs-status-id strong {
    color: #006b56;
    font-size: 17px;
    letter-spacing: 1px;
}
/* =========================================
   ROVER PROMISE & LAW PREVIEW
========================================= */

.rover-promise-preview-section {
    padding: 70px 0;
}

.rover-promise-preview {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 35px;
    align-items: stretch;
    padding: 45px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        #f4fbf8 0%,
        #ffffff 55%,
        #eef8f4 100%
    );
    border: 1px solid rgba(0, 107, 86, 0.12);
    box-shadow: 0 15px 45px rgba(0, 70, 55, 0.08);
    overflow: hidden;
    position: relative;
}

.rover-promise-preview::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(0, 107, 86, 0.05);
    top: -100px;
    right: -70px;
}

.rover-promise-preview-content {
    position: relative;
    z-index: 1;
}

.rover-preview-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 50px;
    background: rgba(0, 107, 86, 0.09);
    color: #006b56;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.rover-promise-preview-content h2 {
    margin: 0 0 14px;
    color: #123b32;
    font-size: 34px;
    line-height: 1.25;
}

.rover-promise-preview-content > p {
    max-width: 650px;
    margin: 0 0 22px;
    color: #5d6f69;
    font-size: 16px;
    line-height: 1.8;
}

.rover-promise-preview-quote {
    max-width: 720px;
    margin-bottom: 28px;
    padding: 18px 22px;
    border-left: 4px solid #006b56;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.75);
    color: #314c45;
    font-size: 15px;
    line-height: 1.8;
}

.rover-promise-preview-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 10px;
    background: #006b56;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.rover-promise-preview-button:hover {
    background: #004f40;
    transform: translateY(-2px);
}

.rover-promise-preview-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.rover-law-mini-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 107, 86, 0.09);
}

.rover-law-mini-item strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: #006b56;
    color: #ffffff;
    font-size: 13px;
}

.rover-law-mini-item span {
    color: #24463d;
    font-size: 15px;
    font-weight: 700;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .rover-promise-preview-section {
        padding: 45px 0;
    }

    .rover-promise-preview {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .rover-promise-preview-content h2 {
        font-size: 27px;
    }

    .rover-promise-preview-content > p {
        font-size: 15px;
    }

    .rover-promise-preview-quote {
        font-size: 14px;
        padding: 15px 17px;
    }

    .rover-promise-preview-button {
        width: 100%;
    }

    .rover-promise-preview-side {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .rover-law-mini-item {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 14px 8px;
        gap: 8px;
    }

    .rover-law-mini-item strong {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 12px;
    }

    .rover-law-mini-item span {
        font-size: 12px;
    }

}
/* =========================================
   ROVER PROMISE & LAW FULL PAGE
========================================= */

.rover-promise-law-page {
    padding: 70px 0;
    background: #f8fbfa;
}

.rover-promise-law-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.rover-section-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 15px;
    border-radius: 50px;
    background: rgba(0, 107, 86, 0.09);
    color: #006b56;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.rover-promise-law-header h1 {
    margin: 0 0 12px;
    color: #123b32;
    font-size: 42px;
}

.rover-promise-law-header p {
    margin: 0;
    color: #667872;
    font-size: 16px;
}


/* PROMISE */

.rover-promise-card {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 45px;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 107, 86, 0.1);
    box-shadow: 0 15px 45px rgba(0, 70, 55, 0.08);
}

.rover-card-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #006b56;
    color: #ffffff;
    font-size: 20px;
}

.rover-promise-card h2 {
    margin: 0 0 25px;
    color: #123b32;
    font-size: 28px;
}

.rover-promise-text {
    padding: 25px;
    border-radius: 15px;
    background: #f4faf7;
    color: #29483f;
    font-size: 19px;
    line-height: 2;
    font-weight: 500;
}


/* LAW */

.rover-law-section {
    margin-bottom: 60px;
}

.rover-section-heading {
    max-width: 700px;
    margin: 0 auto 35px;
    text-align: center;
}

.rover-section-heading > span {
    color: #006b56;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.rover-section-heading h2 {
    margin: 8px 0 10px;
    color: #123b32;
    font-size: 34px;
}

.rover-section-heading p {
    margin: 0;
    color: #667872;
    line-height: 1.7;
}

.rover-law-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.rover-law-item {
    padding: 25px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0, 107, 86, 0.09);
    box-shadow: 0 8px 25px rgba(0, 70, 55, 0.05);
}

.rover-law-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #006b56;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.rover-law-item h3 {
    margin: 0 0 8px;
    color: #24463d;
    font-size: 18px;
}

.rover-law-item p {
    margin: 0;
    color: #687973;
    line-height: 1.7;
}


/* MOTTO */

.rover-motto-card {
    max-width: 700px;
    margin: 0 auto 45px;
    padding: 40px 25px;
    text-align: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #006b56, #004f40);
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 70, 55, 0.18);
}

.rover-motto-label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.rover-motto-card h2 {
    margin: 0 0 8px;
    font-size: 36px;
}

.rover-motto-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}


/* BACK BUTTON */

.rover-back-button {
    text-align: center;
}

.rover-back-button a {
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 10px;
    background: #ffffff;
    color: #006b56;
    border: 1px solid rgba(0, 107, 86, 0.15);
    text-decoration: none;
    font-weight: 700;
}


/* MOBILE */

@media (max-width: 768px) {

    .rover-promise-law-page {
        padding: 45px 0;
    }

    .rover-promise-law-header h1 {
        font-size: 30px;
    }

    .rover-promise-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .rover-promise-card h2 {
        font-size: 24px;
    }

    .rover-promise-text {
        padding: 20px 15px;
        font-size: 16px;
        line-height: 1.9;
    }

    .rover-section-heading h2 {
        font-size: 27px;
    }

    .rover-law-grid {
        grid-template-columns: 1fr;
    }

    .rover-law-item {
        padding: 22px;
    }

    .rover-motto-card {
        padding: 32px 20px;
    }

}
