/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER
   PREMIUM / STABLE DROPDOWNS / MOBILE FRIENDLY
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   CONTACT BAR
========================================================= */

.header-info {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    min-height: 52px;

    padding: 7px 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 28px;

    background: #000;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 2000;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 6px 10px;

    color: #fff;

    text-decoration: none;

    font-size: .86rem;
    font-weight: 600;

    border-radius: 999px;

    transition:
        background .2s ease,
        color .2s ease;
}

.contact-item a:hover {
    background: rgba(255, 255, 255, .08);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: fixed;

    top: 52px;
    left: 0;

    width: 100%;

    min-height: 82px;

    padding: 9px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: rgba(0, 0, 0, .96);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 1500;

    transition:
        min-height .3s ease,
        padding .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.main-header.header-scrolled {
    min-height: 68px;

    padding: 7px 32px;

    background: #000;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.logo img {
    display: block;

    width: 180px;
    height: auto;

    object-fit: contain;

    transition:
        width .3s ease,
        transform .3s ease;
}

.logo:hover img {
    transform: scale(1.015);
}

.header-scrolled .logo img {
    width: 150px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex: 1;

    min-width: 0;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 4px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.menu-items {
    position: relative;

    list-style: none;

    flex-shrink: 0;
}


/* =========================================================
   MAIN NAVIGATION LINKS
========================================================= */

.menu-items > a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 8px 10px;

    color: #fff;

    text-decoration: none;

    white-space: nowrap;

    font-size: clamp(.78rem, 1vw, .98rem);

    font-weight: 600;

    transition:
        color .2s ease,
        background .2s ease;
}

.menu-items > a:hover {
    color: #aaa;
}


/* =========================================================
   NAVIGATION UNDERLINE
========================================================= */

.menu-items > a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #fff;

    border-radius: 99px;

    transform: translateX(-50%);

    transition: width .25s ease;
}

.menu-items > a:hover::after {
    width: 55%;
}


/* =========================================================
   DESKTOP DROPDOWNS
========================================================= */

.sub-menu {
    position: absolute;

    /*
       IMPORTANT:
       No 5px gap here.
       The dropdown touches the navigation item.
    */
    top: 100%;
    left: 0;

    width: 250px;

    max-height: 65vh;

    overflow-y: auto;
    overflow-x: hidden;

    padding: 7px 0;

    margin: 0;

    list-style: none;

    background: #fff;

    border-radius: 13px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .35);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity .22s ease,
        transform .22s ease,
        visibility .22s ease;

    z-index: 3000;
}


/* =========================================================
   INVISIBLE HOVER BRIDGE
   Prevents dropdown from disappearing while moving
   the mouse from the menu item into the dropdown.
========================================================= */

.sub-menu::before {
    content: "";

    position: absolute;

    top: -10px;
    left: 0;

    width: 100%;
    height: 10px;

    background: transparent;
}


/* =========================================================
   DESKTOP DROPDOWN OPEN STATE
========================================================= */

@media (min-width: 901px) {

    .menu-items:hover > .sub-menu,
    .menu-items:focus-within > .sub-menu {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }

}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.sub-menu li {
    position: relative;

    list-style: none;
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.sub-menu a {
    display: block;

    width: 100%;

    padding: 11px 17px;

    color: #000 !important;

    text-decoration: none !important;

    font-size: .92rem;

    font-weight: 550;

    line-height: 1.4;

    transition:
        background .2s ease,
        padding-left .2s ease,
        color .2s ease;
}

.sub-menu a:hover {
    background: #f1f1f1;

    padding-left: 22px;
}


/* =========================================================
   DROPDOWN SCROLLBAR
========================================================= */

.sub-menu::-webkit-scrollbar {
    width: 6px;
}

.sub-menu::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.sub-menu::-webkit-scrollbar-thumb {
    background: #bbb;

    border-radius: 20px;
}


/* =========================================================
   RIGHT-SIDE DROPDOWN
   Prevents dropdown from leaving the screen.
========================================================= */

@media (min-width: 901px) {

    .menu-items:last-child > .sub-menu {
        left: auto;
        right: 0;
    }

}


/* =========================================================
   HIDE DONATE
   Code can remain in HTML.
========================================================= */

.donate-menu-item {
    display: none !important;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #fff;

    cursor: pointer;

    font-size: 1.65rem;

    line-height: 1;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.menu-toggle::before {
    content: "☰";
}

.menu-toggle.active::before {
    content: "✕";
}


/* =========================================================
   DROPDOWN ICON
========================================================= */

.dropdown-icon {
    display: none;

    margin-left: auto;

    font-size: .7rem;

    transition: transform .3s ease;
}


/* =========================================================
   HEADER IMAGE / CONTENT AFTER HEADER
========================================================= */

.header-after {
    width: 100%;

    margin-top: 154px;

    overflow: hidden;
}

.header-after img {
    display: block;

    width: 100%;

    height: auto;

    min-height: 280px;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .main-header {
        padding: 8px 22px;

        gap: 18px;
    }

    .main-header.header-scrolled {
        padding: 7px 22px;
    }

    .logo img {
        width: 160px;
    }

    .header-scrolled .logo img {
        width: 145px;
    }

    .menu {
        gap: 2px;
    }

    .menu-items > a {
        padding: 8px 7px;

        font-size: .79rem;
    }

    .sub-menu {
        width: 235px;
    }

    .header-after {
        margin-top: 146px;
    }
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 900px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 48px;

        padding: 6px 12px;

        gap: 8px;
    }

    .contact-item a {
        font-size: .72rem;

        padding: 5px 8px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 48px;

        min-height: 72px;

        padding: 8px 18px;

        gap: 15px;
    }

    .main-header.header-scrolled {
        min-height: 63px;

        padding: 6px 18px;
    }


    /* LOGO */

    .logo img {
        width: 150px;
    }

    .header-scrolled .logo img {
        width: 140px;
    }


    /* MOBILE BUTTON */

    .menu-toggle {
        display: flex;
    }


    /* MOBILE NAVIGATION */

    .navigation {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        max-height: calc(100vh - 120px);

        overflow-y: auto;

        padding: 6px 0 15px;

        background: #fff;

        border-bottom: 2px solid #000;

        box-shadow:
            0 18px 35px rgba(0, 0, 0, .25);

        z-index: 2500;
    }

    .navigation.active {
        display: block;
    }


    /* MOBILE MENU */

    .menu {
        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        width: 100%;
    }


    /* MENU ITEMS */

    .menu-items {
        width: 100%;
    }


    /* MAIN MOBILE LINKS */

    .menu-items > a {
        width: 100%;

        min-height: 56px;

        justify-content: flex-start;

        padding: 14px 20px;

        color: #000;

        background: #fff;

        border-bottom: 1px solid #ededed;

        font-size: .98rem;
    }

    .menu-items > a:hover {
        color: #000;

        background: #f5f5f5;
    }


    /* REMOVE DESKTOP UNDERLINE */

    .menu-items > a::after {
        display: none;
    }


    /* =====================================================
       MOBILE DROPDOWN
    ===================================================== */

    .sub-menu {
        position: static;

        display: none;

        width: 100%;

        max-height: none;

        overflow: visible;

        padding: 0;

        margin: 0;

        border-radius: 0;

        box-shadow: none;

        background: #f6f6f6;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: none;

        transition: none;
    }


    /* MOBILE DROPDOWN OPEN */

    .sub-menu.visible {
        display: block;
    }


    /* REMOVE HOVER BRIDGE ON MOBILE */

    .sub-menu::before {
        display: none;
    }


    /* MOBILE SUB LINKS */

    .sub-menu a {
        display: flex;

        align-items: center;

        width: 100%;

        min-height: 48px;

        padding: 12px 20px 12px 38px;

        color: #000 !important;

        background: #f6f6f6;

        font-size: .91rem;

        border-bottom: 1px solid #e6e6e6;
    }

    .sub-menu a:hover {
        padding-left: 43px;

        background: #e9e9e9;
    }


    /* DROPDOWN ICON */

    .dropdown-icon {
        display: inline-block;

        margin-left: auto;

        font-size: .7rem;

        color: #000;

        transition: transform .3s ease;
    }

    .menu-items.open .dropdown-icon {
        transform: rotate(180deg);
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 130px;
    }

    .header-after img {
        min-height: 250px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 44px;

        padding: 4px 6px;

        gap: 3px;
    }

    .contact-item a {
        min-height: 32px;

        padding: 4px 6px;

        font-size: .61rem;

        gap: 5px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 44px;

        min-height: 66px;

        padding: 7px 13px;
    }

    .main-header.header-scrolled {
        min-height: 58px;

        padding: 6px 13px;
    }


    /* LOGO */

    .logo img {
        width: 132px;
    }

    .header-scrolled .logo img {
        width: 125px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 42px;
        height: 42px;

        font-size: 1.55rem;
    }


    /* MENU */

    .menu-items > a {
        min-height: 54px;

        padding: 14px 17px;

        font-size: .94rem;
    }


    /* SUB MENU */

    .sub-menu a {
        min-height: 47px;

        padding: 12px 17px 12px 33px;

        font-size: .87rem;
    }

    .sub-menu a:hover {
        padding-left: 38px;
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 112px;
    }

    .header-after img {
        min-height: 210px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 41px;

        padding: 4px 5px;

        gap: 2px;
    }

    .contact-item a {
        font-size: .55rem;

        padding: 3px 5px;

        gap: 4px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 41px;

        min-height: 62px;

        padding: 6px 10px;
    }

    .main-header.header-scrolled {
        min-height: 55px;

        padding: 5px 10px;
    }


    /* LOGO */

    .logo img {
        width: 118px;
    }

    .header-scrolled .logo img {
        width: 112px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 40px;
        height: 40px;

        font-size: 1.45rem;
    }


    /* MAIN LINKS */

    .menu-items > a {
        min-height: 52px;

        padding: 13px 15px;

        font-size: .9rem;
    }


    /* SUB LINKS */

    .sub-menu a {
        min-height: 47px;

        padding: 11px 15px 11px 30px;

        font-size: .84rem;
    }

    .sub-menu a:hover {
        padding-left: 35px;
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 104px;
    }

    .header-after img {
        min-height: 180px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 340px) {

    /* CONTACT TEXT */

    .contact-item a span {
        display: none;
    }

    .contact-item a {
        width: 34px;
        height: 30px;

        padding: 0;

        justify-content: center;
    }


    /* LOGO */

    .logo img {
        width: 108px;
    }

    .header-scrolled .logo img {
        width: 104px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 38px;
        height: 38px;
    }
}


/* =========================================================
   ACCESSIBILITY / KEYBOARD
========================================================= */

.menu-items > a:focus-visible,
.sub-menu a:focus-visible,
.menu-toggle:focus-visible,
.contact-item a:focus-visible {
    outline: 2px solid #fff;

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER END
========================================================= */

/* about Start */
/* =========================================================
   ADVENTURE LEOPARDS — ABOUT PAGE
   COMPACT PREMIUM / RESPONSIVE
   IMAGES = NATURAL HEIGHT
========================================================= */

.hero {
    width: 100%;
    background: #000;
    color: #fff;
    overflow: hidden;
}


/* =========================================================
   MAIN INTRO
========================================================= */

.heading {
    max-width: 1200px;
    margin: 0 auto;

    padding: 85px 35px 65px;

    border-bottom: 1px solid rgba(255,255,255,0.09);
}


.heading::before {
    content: "ABOUT ADVENTURE LEOPARDS";

    display: block;

    margin-bottom: 16px;

    color: rgba(255,255,255,0.42);

    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 3px;
}


.heading h2 {
    margin: 0;

    max-width: 760px;

    font-size: clamp(3rem, 6vw, 5.8rem);

    line-height: 0.92;

    letter-spacing: -0.06em;

    font-weight: 800;

    color: #fff;
}


.heading p {
    max-width: 720px;

    margin: 24px 0 0;

    color: rgba(255,255,255,0.52);

    font-size: clamp(0.9rem, 1.1vw, 1.05rem);

    line-height: 1.75;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.hero > .container {
    max-width: 1200px;

    margin: 0 auto;

    padding: 65px 35px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1fr);

    gap: clamp(40px, 6vw, 75px);

    align-items: center;

    border-bottom:
        1px solid
        rgba(255,255,255,0.07);
}


/* =========================================================
   ALTERNATING SECTION
========================================================= */

.hero > .container:nth-of-type(2) {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.85fr);
}


.hero > .container:nth-of-type(2)
.hero-content {
    order: 2;
}


.hero > .container:nth-of-type(2)
.hero-image {
    order: 1;
}


/* =========================================================
   TEXT
========================================================= */

.hero-content {
    max-width: 510px;
}


.hero-content::before {
    content: "";

    display: block;

    width: 32px;

    height: 2px;

    margin-bottom: 18px;

    background: #fff;
}


.hero-content h2 {
    margin: 0 0 16px;

    color: #fff;

    font-size:
        clamp(1.9rem, 3.2vw, 3.2rem);

    line-height: 0.98;

    letter-spacing: -0.045em;

    font-weight: 800;
}


.hero-content p {
    margin: 0;

    color:
        rgba(255,255,255,0.50);

    font-size:
        clamp(0.88rem, 1vw, 1rem);

    line-height: 1.78;
}


/* =========================================================
   IMAGES
   NATURAL HEIGHT — NO FIXED HEIGHT
========================================================= */

.hero-image {
    width: 100%;

    max-width: 500px;

    overflow: hidden;

    border-radius: 20px;

    border:
        1px solid
        rgba(255,255,255,0.10);

    background: #090909;

    box-shadow:
        0 18px 50px
        rgba(0,0,0,0.45);
}


.hero-image img {
    display: block;

    width: 100%;

    height: auto;

    max-width: 100%;

    object-fit: contain;

    filter:
        grayscale(8%)
        contrast(1.03);

    transition:
        transform .8s ease,
        filter .5s ease;
}


.hero > .container:hover
.hero-image img {
    transform: scale(1.025);

    filter:
        grayscale(0%)
        contrast(1.05);
}


/* =========================================================
   THIRD SECTION
========================================================= */

.hero > .container:nth-of-type(3) {
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1fr);
}


/* =========================================================
   STORY
========================================================= */

.hero > .container:last-child {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.85fr);

    padding-top: 75px;
    padding-bottom: 90px;

    border-bottom: none;
}


.hero > .container:last-child
.hero-content {
    max-width: 550px;
}


.hero > .container:last-child
.hero-content h2 {
    font-size:
        clamp(2rem, 3.4vw, 3.4rem);
}


.hero > .container:last-child
.hero-content p {
    font-size:
        clamp(0.88rem, 1vw, 1rem);

    line-height: 1.82;
}


/* =========================================================
   STORY IMAGE
   NATURAL HEIGHT
========================================================= */

.hero > .container:last-child .image {
    width: 100%;

    max-width: 500px;

    overflow: hidden;

    border-radius: 20px;

    border:
        1px solid
        rgba(255,255,255,0.10);

    background: #090909;

    box-shadow:
        0 20px 55px
        rgba(0,0,0,0.5);
}


.hero > .container:last-child
.image img {
    display: block;

    width: 100%;

    height: auto;

    max-width: 100%;

    object-fit: contain;

    transition:
        transform .8s ease;
}


.hero > .container:last-child:hover
.image img {
    transform: scale(1.025);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .heading {
        padding:
            75px 28px
            55px;
    }


    .hero > .container,
    .hero > .container:nth-of-type(2),
    .hero > .container:nth-of-type(3),
    .hero > .container:last-child {

        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            60px 28px;
    }


    .hero > .container:nth-of-type(2)
    .hero-content {
        order: 1;
    }


    .hero > .container:nth-of-type(2)
    .hero-image {
        order: 2;
    }


    .hero-content,
    .hero-image,
    .hero > .container:last-child .image {

        max-width: 100%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .heading {
        padding:
            60px 20px
            45px;
    }


    .heading::before {
        margin-bottom: 15px;

        font-size: 0.54rem;

        letter-spacing: 2.3px;
    }


    .heading h2 {
        font-size:
            clamp(
                2.65rem,
                13vw,
                3.8rem
            );

        line-height: 0.93;
    }


    .heading p {
        margin-top: 20px;

        font-size: 0.87rem;

        line-height: 1.7;
    }


    .hero > .container,
    .hero > .container:nth-of-type(2),
    .hero > .container:nth-of-type(3),
    .hero > .container:last-child {

        padding:
            50px 20px;

        gap: 28px;
    }


    .hero-content::before {
        width: 28px;

        margin-bottom: 15px;
    }


    .hero-content h2 {
        margin-bottom: 14px;

        font-size:
            clamp(
                1.9rem,
                9vw,
                2.7rem
            );
    }


    .hero-content p {
        font-size: 0.86rem;

        line-height: 1.75;
    }


    .hero-image,
    .hero > .container:last-child .image {

        border-radius: 16px;
    }


    .hero-image img,
    .hero > .container:last-child
    .image img {

        width: 100%;

        height: auto;

    }


    .hero > .container:last-child {
        padding-bottom: 65px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .heading {
        padding:
            52px 17px
            42px;
    }


    .hero > .container,
    .hero > .container:nth-of-type(2),
    .hero > .container:nth-of-type(3),
    .hero > .container:last-child {

        padding-left: 17px;

        padding-right: 17px;
    }


    .heading h2 {
        font-size: 2.5rem;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-image img,
    .hero > .container:last-child
    .image img {

        transition: none;
    }

}
        /* about End */

         /* Global body background */
body {
    background-color: #000; /* Black background */
    color: #000; /* Default text color black */
}

/*Start team section*/
.team-section {
    margin-top: 15em;
    width: 97%;
    padding: 6rem 1rem;
    background-color: transparent;
}

/* Heading aligned left + black text */
.team-heading {
    text-align: left;
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff; /* White heading for black background */
    margin-bottom: 4rem;
    position: relative;
}

.team-heading::after {
    content: "";
    width: 80px;
    height: 6px;
    background-color: #fff; /* White underline */
    position: absolute;
    bottom: -15px;
    left: 0;
    border-radius: 3px;
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Card background white, text left */
.team-card {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 2rem;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
}

.team-background {
    width: 100%;
    height: 300px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.team-profile {
    width: 140px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 6px solid #fff;
    position: absolute;
    bottom: -40px;
    left: 2rem;
    background-color: #fff;
}

.team-content {
    margin-top: 60px;
    text-align: left;
    padding: 0 2rem;
}

.team-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000; /* Black text */
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

/* Hidden text */
.hidden {
    display: none;
}

/* READ MORE BUTTON — Black & White Professional */
.read-more-btn {
    margin-top: 1.5rem;
    padding: 12px 26px;
    background-color: #000;        /* Black button */
    color: #fff;                   /* White text */
    border: 2px solid #fff;        /* White border */
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: left;
    display: inline-block;
    letter-spacing: 0.5px;
}

/* Hover: clean, careful, inverted */
.read-more-btn:hover {
    background-color: #fff;        /* White background */
    color: #000;                   /* Black text */
    border-color: #000;            /* Black border */
    transform: translateX(4px);    /* Smooth slide */
}

/* Responsive */
@media (max-width: 768px) {
    .team-section {
        margin-top: 20em;
        width: 90%;
    }
    .team-heading {
        font-size: 2.2rem;
    }
    .team-background {
        height: 220px;
    }
    .team-profile {
        width: 120px;
        height: 160px;
        bottom: -30px;
        left: 1.5rem;
    }
    .team-name {
        font-size: 1.6rem;
    }
    .team-role {
        font-size: 1rem;
    }
    .team-bio {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        margin-top: 20em;
        width: 90%;
    }
    .team-heading {
        font-size: 1.8rem;
    }
    .team-profile {
        width: 100px;
        height: 140px;
        left: 1rem;
    }
    .team-name {
        font-size: 1.4rem;
    }
    .team-bio {
        font-size: 0.9rem;
    }
}
/*End team section*/

     /* =========================================================
   ADVENTURE LEOPARDS — CONTACT SECTION
========================================================= */

.al-contact {
    width: 100%;
    padding: 105px 30px;
    background: #f5f6f4;
    box-sizing: border-box;
}

.al-contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 0.85fr);

    gap: 75px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.al-contact-content {
    width: 100%;
    min-width: 0;
}

.al-contact-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #1d5c3b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}

.al-contact-title {
    max-width: 650px;

    margin: 0 0 24px;

    color: #111;

    font-size: clamp(40px, 5vw, 66px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;
}

.al-contact-description {
    max-width: 590px;

    margin: 0 0 42px;

    color: #626762;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.al-contact-details {
    width: 100%;
    max-width: 650px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 27px 35px;
}

.al-contact-detail {
    min-width: 0;

    display: flex;

    align-items: flex-start;

    gap: 14px;
}

.al-contact-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #111;

    color: #fff;

    font-size: 14px;
}

.al-contact-detail > div:last-child {
    min-width: 0;
}

.al-contact-detail span {
    display: block;

    margin-bottom: 5px;

    color: #777;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.al-contact-detail a,
.al-contact-detail p {
    display: block;

    max-width: 100%;

    margin: 0;

    color: #171717;

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;

    overflow-wrap: anywhere;
}

.al-contact-detail a {
    transition: color 0.25s ease;
}

.al-contact-detail a:hover {
    color: #1d5c3b;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.al-contact-card {
    width: 100%;
    min-width: 0;

    padding: 43px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #e1e4e1;

    border-radius: 22px;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   CARD HEADER
========================================================= */

.al-contact-card-header {
    margin-bottom: 30px;
}

.al-contact-card-header > span {
    display: block;

    margin-bottom: 10px;

    color: #1d5c3b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.al-contact-card-header h2 {
    margin: 0 0 10px;

    color: #111;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 800;
}

.al-contact-card-header p {
    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   FORM
========================================================= */

.al-contact-form {
    width: 100%;
}

.al-form-group {
    width: 100%;

    margin-bottom: 20px;
}

.al-form-group label {
    display: block;

    margin-bottom: 8px;

    color: #222;

    font-size: 12px;

    font-weight: 700;
}

.al-form-group input,
.al-form-group textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #dfe2df;

    border-radius: 10px;

    background: #fafbfa;

    color: #111;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.al-form-group input {
    height: 52px;

    padding: 0 16px;
}

.al-form-group textarea {
    min-height: 135px;

    padding: 15px 16px;

    resize: vertical;
}

.al-form-group input::placeholder,
.al-form-group textarea::placeholder {
    color: #999;
}


/* =========================================================
   INPUT FOCUS
========================================================= */

.al-form-group input:focus,
.al-form-group textarea:focus {
    border-color: #1d5c3b;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(29, 92, 59, 0.08);
}


/* =========================================================
   SEND BUTTON
========================================================= */

.al-contact-button {
    width: 100%;

    min-height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 3px;

    padding: 0 20px;

    border: 0;

    border-radius: 10px;

    background: #111;

    color: #fff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.al-contact-button:hover {
    background: #1d5c3b;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);
}

.al-contact-button:active {
    transform: translateY(0);
}

.al-contact-button:disabled {
    cursor: wait;
}


/* =========================================================
   SENDING STATE
========================================================= */

.al-contact-button.sending {
    background: #333;

    opacity: 0.75;

    cursor: wait;

    transform: none;

    box-shadow: none;
}

.al-contact-button.sending i {
    animation:
        al-contact-spinner 0.8s linear infinite;
}

@keyframes al-contact-spinner {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.al-form-success {
    display: none;

    align-items: flex-start;

    gap: 14px;

    width: 100%;

    margin: 0 0 20px;

    padding: 17px;

    box-sizing: border-box;

    border: 1px solid #cde3d5;

    border-radius: 12px;

    background: #f1f8f4;

    animation:
        al-success-in 0.35s ease;
}

.al-form-success.show {
    display: flex;
}

@keyframes al-success-in {

    from {
        opacity: 0;

        transform: translateY(-6px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}

.al-success-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1d5c3b;

    color: #fff;

    font-size: 13px;
}

.al-form-success h3 {
    margin: 0 0 5px;

    color: #173d2a;

    font-size: 14px;

    line-height: 1.3;

    font-weight: 800;
}

.al-form-success p {
    margin: 0;

    color: #557061;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   ERROR MESSAGE
========================================================= */

.al-form-error {
    display: none;

    align-items: center;

    gap: 10px;

    width: 100%;

    margin: 0 0 20px;

    padding: 14px 16px;

    box-sizing: border-box;

    border: 1px solid #ead2d2;

    border-radius: 10px;

    background: #fbf3f3;

    color: #873f3f;

    font-size: 13px;
}

.al-form-error.show {
    display: flex;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .al-contact {
        padding: 80px 25px;
    }

    .al-contact-container {
        max-width: 760px;

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .al-contact-title {
        max-width: 700px;
    }

    .al-contact-description {
        max-width: 700px;
    }

    .al-contact-details {
        max-width: 700px;
    }

    .al-contact-card {
        padding: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .al-contact {
        padding: 65px 18px;
    }

    .al-contact-container {
        gap: 38px;
    }

    .al-contact-eyebrow {
        margin-bottom: 14px;

        font-size: 10px;

        letter-spacing: 2.5px;
    }

    .al-contact-title {
        margin-bottom: 18px;

        font-size: clamp(34px, 10vw, 46px);

        line-height: 1.08;

        letter-spacing: -1.2px;
    }

    .al-contact-description {
        margin-bottom: 32px;

        font-size: 14px;

        line-height: 1.75;
    }

    .al-contact-details {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .al-contact-detail {
        gap: 13px;
    }

    .al-contact-icon {
        flex-basis: 42px;

        width: 42px;

        height: 42px;
    }

    .al-contact-detail a,
    .al-contact-detail p {
        font-size: 13px;
    }

    .al-contact-card {
        padding: 28px 20px;

        border-radius: 17px;
    }

    .al-contact-card-header {
        margin-bottom: 25px;
    }

    .al-contact-card-header h2 {
        font-size: 26px;
    }

    .al-contact-card-header p {
        font-size: 13px;
    }

    .al-form-group {
        margin-bottom: 18px;
    }

    .al-form-group input {
        height: 50px;
    }

    .al-form-group textarea {
        min-height: 120px;
    }

    .al-contact-button {
        min-height: 52px;
    }

    .al-form-success {
        padding: 15px;

        gap: 12px;
    }

    .al-success-icon {
        flex-basis: 34px;

        width: 34px;

        height: 34px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .al-contact {
        padding-left: 14px;

        padding-right: 14px;
    }

    .al-contact-title {
        font-size: 32px;
    }

    .al-contact-card {
        padding: 24px 16px;
    }

}

/*contact end*/

/*donation page start*/
/* ===========================
   DONATION PAGE WRAPPER
=========================== */
.donation-page {
    background: #ffffff;
    max-width: 900px;
    margin: 4em auto;
    padding: 4em 2.5em;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0,0,0,0.08);
}

/* ===========================
   HEADER TEXT
=========================== */
.donation-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.6em;
    letter-spacing: -1px;
}

.donation-header p {
    font-size: 1.35rem;
    line-height: 1.9em;
    color: #333;
    max-width: 700px;
    margin: 0 auto 2.8em auto;
}

/* ===========================
   DONATION BUTTONS
=========================== */
.donation-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2em;
    margin-bottom: 3em;
}

.donation-options button {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 1.1em 2.2em;
    font-size: 1.35rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
}

.donation-options button:hover {
    background: #fff;      /* white background */
    color: #000;           /* black text */
    border-color: #000;
    transform: translateY(-4px);
}

/* ===========================
   CUSTOM AMOUNT
=========================== */
.custom-amount {
    display: flex;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;
}

.custom-amount input {
    width: 220px;
    padding: 1.1em;
    font-size: 1.25rem;
    border: 2px solid #000;
    border-radius: 12px;
    outline: none;
    transition: 0.25s ease;
}

.custom-amount input:focus {
    border-color: #333;
}

.custom-amount button {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 1.1em 2.2em;
    font-size: 1.35rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.custom-amount button:hover {
    background: #fff;
    color: #000;
    border-color: #000;
    transform: translateY(-4px);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {

    .donation-header h2 {
        font-size: 2.4rem;
    }

    .donation-header p {
        font-size: 1.25rem;
    }

    .donation-options button {
        width: 100%;
        padding: 1em;
        font-size: 1.3rem;
    }

    .custom-amount {
        flex-direction: column;
        align-items: center;
    }

    .custom-amount input {
        width: 100%;
        max-width: 320px;
    }

    .custom-amount button {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {

    .donation-header h2 {
        font-size: 2rem;
    }

    .donation-header p {
        font-size: 1.15rem;
    }

    .donation-options button {
        font-size: 1.2rem;
    }

    .custom-amount input,
    .custom-amount button {
        font-size: 1.15rem;
    }
}

/*donation page end*/ 
/* =========================================
   ADVENTURE LEOPARDS — PREMIUM BLACK FOOTER
========================================= */

.premium-footer {
    position: relative;
    width: 100%;
    background: #000;
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(209, 209, 209, 0.7);
}

.footer-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    padding-top: 75px;
}

/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 0.8fr 1fr;
    gap: 80px;
    padding-bottom: 65px;
}

/* =========================================
   BRAND
========================================= */

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    width: 110px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-brand h2 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-description {
    max-width: 480px;
    margin: 0 0 22px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================
   DISCOVER LINK
========================================= */

.footer-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.footer-explore span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #555;
    border-radius: 50%;
    transition: 0.3s ease;
}

.footer-explore:hover {
    color: #ccc;
}

.footer-explore:hover span {
    transform: translateX(4px);
    border-color: #fff;
}

/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
    position: relative;
    margin: 5px 0 25px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #fff;
}

/* =========================================
   MENU LINKS
========================================= */

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 13px;
}

.footer-column li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-column li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* =========================================
   CONTACT
========================================= */

.footer-contact > p {
    max-width: 280px;
    margin: 0 0 20px;
    color: #999;
    font-size: 14px;
    line-height: 1.7;
}

.footer-email,
.footer-website {
    display: block;
    width: fit-content;
    margin-bottom: 11px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-email:hover,
.footer-website:hover {
    color: #fff;
}

/* =========================================
   BOTTOM BAR
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 85px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 12px;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    background: #000;
    border: 1px solid #333;
    border-radius: 50%;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: #fff;
    color: #000;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .footer-main {
        grid-template-columns: 1.5fr 1fr;
        gap: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 650px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .footer-container {
        width: 88%;
        padding-top: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 45px;
    }

    .footer-brand {
        grid-column: auto;
        max-width: 100%;
    }

    .footer-logo {
        width: 95px;
    }

    .footer-brand h2 {
        font-size: 30px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 25px 0;
        text-align: center;
    }

    .footer-socials {
        gap: 7px;
    }

    .footer-socials a {
        width: 35px;
        height: 35px;
    }
}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .footer-container {
        width: 86%;
    }

    .footer-brand h2 {
        font-size: 27px;
    }

    .footer-description {
        font-size: 12.5px;
    }
}