:root {
    --zama-gold: #fbc52e;
    --zama-black: #000000;
    --zama-text-muted: #6c757d;
}

body.zama-body {
    font-family: 'Inter', sans-serif;
    color: var(--zama-black);
}

/* Utilities */
.text-gold { color: var(--zama-gold) !important; }
.fw-black { font-weight: 800; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.1em; }

/* Top Bar */
.zama-top-bar {
    background: var(--zama-black);
    color: var(--zama-gold);
}
.zama-top-text {
    font-size: 10px;
    letter-spacing: 2px;
}
/* Standard Dropdown Styling */
.zama-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #ffffff;
    padding: 15px 0;
    border-top: 3px solid var(--zama-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

/* Show on Hover */
.zama-has-dropdown:hover .zama-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.zama-has-dropdown:hover .zama-icon-sm {
    transform: rotate(180deg);
}

/* Links inside Dropdown */
.zama-dropdown-link {
    display: block;
    padding: 10px 25px;
    color: #444;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.zama-dropdown-link:hover {
    background-color: #f8f9fa;
    color: var(--zama-gold);
    padding-left: 30px;
}

/* Divider & Special Highlight */
.zama-dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 8px 25px;
}

.zama-link-highlight {
    color: var(--zama-gold) !important;
}

/* Icon Transition */
.transition-transform {
    transition: transform 0.3s ease;
}

/* Header & Nav */
.zama-logo {
    height: 60px;
    width: auto;
}
.zama-nav-link {
    color: var(--zama-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.zama-nav-link:hover, .zama-nav-link.active {
    color: var(--zama-gold);
}

/* Mega Menu */
/* Ensure the mega menu can handle longer lists */
.zama-mega-menu {
    min-width: 100%;
    background: #ffffff;
    border-bottom: 4px solid var(--zama-v2-gold);
}

.zama-mega-list li {
    margin-bottom: 5px;
}

.zama-mega-list li a {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.zama-mega-list li a:hover {
    color: var(--zama-v2-gold);
    transform: translateX(5px);
}

/* CTA Box refinement */
.zama-mega-cta {
    background: #fcfcfc !important;
}

.border-gold {
    border-color: var(--zama-v2-gold) !important;
}
.zama-has-mega { position: static; }
.zama-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.4s ease;
    z-index: 1000;
    border-top: 1px solid #eee;
}
.zama-nav-item:hover .zama-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.zama-mega-title {
    color: var(--zama-gold);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
    margin-bottom: 15px;
}
.zama-mega-list li a {
    text-decoration: none;
    color: #555;
    font-size: 13px;
    padding: 5px 0;
    display: block;
    transition: 0.3s;
}
.zama-mega-list li a:hover {
    color: var(--zama-black);
    padding-left: 5px;
}
.zama-mega-cta {
    background: #f8f9fa;
    padding: 20px;
}

/* Buttons */
.zama-btn-gold {
    background: var(--zama-gold);
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
}
.zama-btn-gold:hover {
    background: var(--zama-black);
    color: var(--zama-gold);
}
.zama-btn-black {
    background: var(--zama-black);
    color: #fff;
    font-weight: 700;
}
.zama-btn-outline-gold {
    border: 1px solid var(--zama-gold);
    color: var(--zama-gold);
    text-transform: uppercase;
    font-size: 11px;
    padding: 10px 25px;
}




/*sliders*/

/*slider mobile */

 /* Mobile Accordion Styling - Ensures no layout shift on Desktop */
        @media (max-width: 991px) {
            .offcanvas-body { padding: 0; }
            .accordion-button:not(.collapsed) {
                background-color: #f8f9fa;
                color: #fbc52e; /* Your gold color */
            }
            .accordion-button:focus {
                box-shadow: none;
                border-color: rgba(0,0,0,.125);
            }
            .mobile-sub-link {
                padding: 10px 20px;
                display: block;
                text-decoration: none;
                color: #666;
                font-size: 0.9rem;
                border-bottom: 1px solid #eee;
            }
            .mobile-category-title {
                background: #eee;
                padding: 5px 20px;
                font-size: 0.75rem;
                font-weight: 800;
                color: #333;
                text-transform: uppercase;
            }
        }
/*slider mobile end*/

/* Slider Base */
.zama-hero-swiper {
    width: 100%;
    height: 70vh; /* Full screen height */
    background: #000;
}

.zama-hero-slide {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

/* Luxury Zoom Effect (Ken Burns) */
.zama-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease-out;
    transform: scale(1);
}

.swiper-slide-active .zama-hero-bg {
    transform: scale(1.15); /* Zooms in while slide is active */
}

.zama-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

/* Staggered Text Animations */
.zama-hero-container {
    position: relative;
    z-index: 10;
    color: #fff;
}

.zama-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.swiper-slide-active .zama-animate {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .zama-slider-sub { transition-delay: 0.3s; }
.swiper-slide-active .zama-slider-title { transition-delay: 0.5s; }
.swiper-slide-active .zama-slider-text { transition-delay: 0.7s; }
.swiper-slide-active .zama-slider-btns { transition-delay: 0.9s; }

/* Typography */
.zama-slider-sub {
    font-weight: 700;
    color: var(--zama-gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
}

.zama-slider-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 25px;
}

.zama-slider-text {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Custom Nav Dots */
.zama-main-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    border-radius: 0;
    background: #fff;
    opacity: 0.3;
}

.zama-main-pagination .swiper-pagination-bullet-active {
    background: var(--zama-gold);
    opacity: 1;
}

/* --- ZAMA HERO TOTAL MOBILE OVERHAUL --- */
@media (max-width: 991px) {
    /* 1. Reset the height and force Flexbox centering */
    .zama-hero-slide {
        height: 80vh !important; /* Good balance for most phones */
        display: flex !important;
        align-items: center !important; /* Vertical center */
        justify-content: center !important; /* Horizontal center */
        text-align: center !important;
        overflow: hidden !important;
    }

    /* 2. Fix the Background Image framing */
    .zama-hero-bg {
        background-position: center center !important;
        background-size: cover !important;
        transform: scale(1.1); /* Slightly zoomed to ensure no white edges */
    }

    /* 3. Darken the overlay for better text readability on mobile */
    .zama-hero-overlay {
        background: rgba(0, 0, 0, 0.5) !important; 
    }

    /* 4. Container & Content Spacing */
    .zama-hero-container {
        padding: 0 20px !important;
        z-index: 10 !important;
        position: relative !important;
    }

    /* 5. Typography Precision */
    .zama-slider-sub {
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        color: #fbc52e !important; /* Gold */
        margin-bottom: 12px !important;
    }

    .zama-slider-title {
        font-size: 2.25rem !important; /* Adjust if words still break */
        line-height: 1.1 !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        margin-bottom: 15px !important;
    }

    .zama-slider-text {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        max-width: 320px !important; /* Keeps text in a neat block */
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 25px !important;
    }

    /* 6. Buttons */
    .zama-slider-btns .zama-btn-gold {
        padding: 12px 30px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        width: auto !important;
        min-width: 180px;
    }

    /* 7. Hide clutter */
    .zama-nav-btn {
        display: none !important;
    }

    /* 8. Fix Pagination Dots visibility */
    .zama-main-pagination {
        bottom: 0px !important;
    }
    .zama-main-pagination .swiper-pagination-bullet {
        background: #fff !important;
        opacity: 0.5;
    }
    .zama-main-pagination .swiper-pagination-bullet-active {
        background: #fbc52e !important;
        opacity: 1;
    }
}

/* For Very Small Phones (e.g., iPhone SE) */
@media (max-width: 375px) {
    .zama-slider-title {
        font-size: 1.85rem !important;
    }
    .zama-slider-text {
        font-size: 0.85rem !important;
    }
}
/*sliders*/

/*5blocks*/
/* Feature Section Styling */
.zama-feature-section {
    border-top: 1px solid #f0f0f0;
}

.zama-feature-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border-radius: 15px;
}

/* Icon Box Styling */
.zama-icon-box {
    width: 70px;
    height: 70px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zama-gold);
    transition: 0.4s ease;
}

.zama-icon-box svg {
    width: 32px;
    height: 32px;
}

/* Hover Effects */
.zama-feature-item:hover .zama-feature-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--zama-gold);
}

.zama-feature-item:hover .zama-icon-box {
    background: var(--zama-gold);
    color: #fff;
    transform: rotateY(180deg); /* Modern flip effect */
}

/* Heading Styling */
.zama-feature-heading {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--zama-black);
    line-height: 1.4;
    margin: 0;
}

/* Responsive adjustment for 5 items */
@media (min-width: 1200px) {
    .col-xl-2 {
        width: 20%; /* Forces exactly 5 items in a row */
    }
}

/*about*/
/* Isolated Variables to prevent mixing */
:root {
    --zama-v2-gold: #fbc52e;
    --zama-v2-black: #111111;
}

.zama-about-v2-section { overflow: hidden;padding: 56px; }

/* Visual Stack Elements */
.zama-about-v2-visual-stack {
    position: relative;
    padding: 40px;
}

.zama-about-v2-frame {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 90%;
    border: 2px solid var(--zama-v2-gold);
    z-index: 0;
}

.zama-about-v2-img-primary img {
    width: 85%;
    height: 450px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 4px;
}

.zama-about-v2-img-secondary {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 45%;
    z-index: 3;
}

.zama-about-v2-img-secondary img {
    width: 100%;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/*about mobile*/
/* --- ZAMA ABOUT V2 MOBILE CLEAN STACK --- */
@media (max-width: 991px) {
    .zama-about-v2-section {
        padding: 60px 0 !important;
    }

    /* 1. Transform Visual Stack into a Clean Grid */
    .zama-about-v2-visual-stack {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px;
        margin-bottom: 40px;
    }

    /* Remove all absolute positioning from images */
    .zama-about-v2-img-primary, 
    .zama-about-v2-img-secondary {
        position: relative !important;
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .zama-about-v2-img-primary img, 
    .zama-about-v2-img-secondary img {
        width: 100% !important;
        height: 250px !important; /* Fixed height for consistency */
        object-fit: cover !important; /* Crops images perfectly */
        border-radius: 12px !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    }

    /* Floating Experience Card - Centered between images */
    .zama-about-v2-experience-card {
        position: relative !important;
        margin: -40px auto 0 auto !important; /* Pulls it up to overlap the first image */
        z-index: 10;
        width: fit-content;
        left: auto !important;
        transform: scale(0.9);
    }

    /* Hide the decorative frame background */
    .zama-about-v2-frame {
        display: none !important;
    }

    /* 2. Content Alignment */
    .zama-about-v2-content {
        padding: 0 15px !important;
        text-align: center !important;
    }

    .zama-about-v2-tag-wrapper {
        justify-content: center !important;
        display: flex;
    }

    .zama-about-v2-title {
        font-size: 1.85rem !important;
        margin-top: 15px !important;
        font-weight: 800 !important;
    }

    /* 3. Points Grid - 2 Columns on Mobile for better use of space */
    .zama-about-v2-points-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* Side by side points */
        gap: 15px !important;
        text-align: left !important;
        margin: 30px 0 !important;
    }

    .zama-about-v2-point-text p {
        display: none; /* Hide small text descriptions to save space */
    }

    .zama-about-v2-point-text strong {
        font-size: 0.85rem !important;
        display: block;
    }

    /* 4. Full Width Button for Mobile */
    .zama-about-v2-btn {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
        padding: 18px !important;
        font-weight: 700 !important;
    }
}

/* Specific fix for very narrow phones */
@media (max-width: 480px) {
    .zama-about-v2-points-grid {
        grid-template-columns: 1fr !important; /* Stack back to 1 column on tiny phones */
    }
}
/*about mobile end*/

/* Floating Experience Card */
.zama-about-v2-experience-card {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 4;
    background: var(--zama-v2-black);
    padding: 25px;
    color: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.zama-about-v2-number {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--zama-v2-gold);
    line-height: 1;
}

.zama-about-v2-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Content Styling */
.zama-about-v2-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--zama-v2-gold);
    border-left: 3px solid var(--zama-v2-gold);
    padding-left: 15px;
}

.zama-about-v2-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--zama-v2-black);
    margin-bottom: 25px;
}

.zama-about-v2-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Points List */
.zama-about-v2-point-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.zama-about-v2-check {
    width: 24px;
    height: 24px;
    background: var(--zama-v2-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #000;
    flex-shrink: 0;
}

.zama-about-v2-point-text strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.zama-about-v2-point-text p {
    font-size: 13px;
    margin: 0;
    color: #888;
}

/* Button */
.zama-about-v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--zama-v2-black);
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    transition: 0.3s;
}

.zama-about-v2-btn:hover {
    background: var(--zama-v2-gold);
    color: #000;
}


/* Section Container */
.zama-explore-fixed-section {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    /* Use the Earth-at-night image provided in your reference */
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072'); 
    background-attachment: fixed !important; /* This creates the "Fixed" effect */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Radial Dark Overlay (Matches your image perfectly) */
.zama-explore-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker on edges, slightly lighter in the center for depth */
    background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

/* Content Layer */
.zama-explore-content-wrapper {
    position: relative;
    z-index: 10;
}

/* Tagline with Gold Lines */
.zama-explore-tag {
    position: relative;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--zama-v2-gold);
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.zama-explore-tag::before,
.zama-explore-tag::after {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--zama-v2-gold);
    opacity: 0.5;
}

/* Main Heading Typography */
.zama-explore-heading {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
}

.text-gold {
    color: var(--zama-v2-gold) !important;
}

/* Paragraph Text */
.zama-explore-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

/* The Gold Button */
.zama-explore-btn {
    display: inline-block;
    background-color: var(--zama-v2-gold);
    color: #000000;
    padding: 20px 45px;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border-radius: 2px; /* Sharp corporate look */
}

.zama-explore-btn:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(217, 165, 32, 0.3);
}

/* Responsive adjustment for Mobile (Fixed BG can be glitchy on iOS) */
@media (max-width: 991px) {
    .zama-explore-fixed-section {
        background-attachment: scroll !important;
        padding: 80px 0;
    }
}


/* Unique Scoped Variables */


.zama-trio-v3-item {
    overflow: hidden;
    height: 500px; /* Fixed height for a balanced grid */
}

.zama-trio-v3-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: 0.6s ease;
}

.zama-trio-v3-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%); /* Subtle luxury tone */
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Overlay - Starts dark */
.zama-trio-v3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    z-index: 2;
    transition: 0.5s ease;
}

/* Content Motion */
.zama-trio-v3-content {
    width: 100%;
    transition: transform 0.5s ease;
}

.zama-trio-v3-title {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-left: 4px solid var(--zama-v3-gold);
    padding-left: 20px;
}

/* Hidden Details - Reveal on Hover */
.zama-trio-v3-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.zama-trio-v3-hidden p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.zama-trio-v3-link {
    color: var(--zama-v3-gold);
    text-decoration: none;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hover States */
.zama-trio-v3-item:hover .zama-trio-v3-hidden {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

.zama-trio-v3-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.zama-trio-v3-item:hover .zama-trio-v3-overlay {
    background: rgba(0, 0, 0, 0.75); /* Darkens on hover to focus text */
}

/* Responsive */
@media (max-width: 991px) {
    .zama-trio-v3-item {
        height: 400px;
        border-bottom: 1px solid rgba(217, 165, 32, 0.2);
    }
}


/*home blog */
/* Unique Ticker Styling */
.zama-ticker-v4-wrapper {
    background-color: #fbc52e; /* Your Requested Golden Color */
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.zama-ticker-v4-container {
    display: flex;
    white-space: nowrap;
}

.zama-ticker-v4-track {
    display: flex;
    animation: zama-scroll-left 30s linear infinite;
}

.zama-ticker-v4-item {
    display: flex;
    align-items: center;
    color: #000000;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 60px; /* Space between points */
    transition: opacity 0.3s ease;
}

.zama-ticker-v4-item:hover {
    opacity: 0.7;
}

/* Tag inside the ticker */
.zama-ticker-v4-tag {
    background: #000;
    color: #fbc52e;
    padding: 2px 8px;
    font-size: 9px;
    margin-right: 12px;
    border-radius: 2px;
}

/* Right to Left Animation */
@keyframes zama-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover for readability */
.zama-ticker-v4-wrapper:hover .zama-ticker-v4-track {
    animation-play-state: paused;
}



/*cta*/
/* Isolated Variables */
:root {
    --zama-power-gold: #fbc52e;
    --zama-gold-light: #f3cf7a;
    --zama-gold-dark: #b8860b;
}

.zama-gold-cta-section {
    position: relative;
    padding: 16px 0;
    /* Shaded Golden Gradient Background */
    background: linear-gradient(135deg, 
        var(--zama-gold-dark) 0%, 
        var(--zama-power-gold) 50%, 
        var(--zama-gold-light) 100%);
    overflow: hidden;
    border-bottom: 8px solid #000; /* Grounding black border at the very bottom */
}

/* Subtle Animated Shimmer Overlay */
.zama-gold-cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        to right, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: zama-shimmer-move 8s infinite linear;
}

@keyframes zama-shimmer-move {
    from { left: -100%; }
    to { left: 100%; }
}

/* Typography */
.zama-gold-cta-tag {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #000;
    margin-bottom: 20px;
}

.zama-gold-cta-title {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
}

.zama-gold-cta-desc {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin: 0 auto 45px;
    font-weight: 500;
}

/* Buttons */
.zama-gold-cta-btn-black {
    display: inline-block;
    background: #000;
    color: var(--zama-power-gold);
    padding: 20px 45px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.4s ease;
    border-radius: 4px;
}

.zama-gold-cta-btn-black:hover {
    background: #222;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.zama-gold-cta-btn-outline {
    display: inline-block;
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 18px 45px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    margin-left: 15px;
    transition: 0.4s ease;
}

.zama-gold-cta-btn-outline:hover {
    background: #000;
    color: var(--zama-power-gold);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .zama-gold-cta-btn-outline {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
    .zama-gold-cta-btn-black {
        width: 100%;
    }
}

/*footer*/

/* ZAMA FINAL FOOTER STYLING */
:root {
    --zama-gold: #fbc52e;
    --zama-black: #000000;
    --zama-dark: #111111;
    --zama-grey: rgba(255,255,255,0.5);
}

.zama-footer-final-wrapper {
    background-color: var(--zama-black);
    color: #ffffff;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.zama-footer-gold-accent {
    width: 100%;
    height: 10px;
    background: #fff;
}

/* Brand Section */
.zama-footer-logo { height: 45px; width: auto; }
.zama-footer-about { font-size: 13px; color: var(--zama-grey); line-height: 1.8; }


/* Navigation Titles */
.zama-footer-title {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--zama-gold);
    margin-bottom: 30px;
}

.zama-link-cat {
    font-size: 10px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* Link Lists */
.zama-footer-links li a {
    color: var(--zama-grey);
    text-decoration: none;
    font-size: 12px;
    line-height: 2.2;
    transition: 0.3s;
}

.zama-footer-links li a:hover {
    color: var(--zama-gold);
    padding-left: 5px;
}

/* Newsletter */
.zama-sub-input-wrap {
    display: flex;
    border-bottom: 1px solid rgba(217, 165, 32, 0.5);
    padding-bottom: 8px;
}

.zama-sub-input-wrap input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 11px;
    width: 100%;
    outline: none;
    letter-spacing: 1px;
}

.zama-sub-input-wrap button {
    background: transparent;
    border: none;
    color: var(--zama-gold);
    font-weight: 900;
    font-size: 11px;
    cursor: pointer;
}

/* Bottom Copyright Bar */
.zama-footer-copyright-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.zama-copy-text {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
}

.zama-bottom-nav li a {
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.zama-bottom-nav li a:hover {
    color: var(--zama-gold);
}

/* Text Gold Helper */
.text-gold { color: var(--zama-gold) !important; }

/*about*/
/* Unique Variables */
:root {
    --zama-abt-gold: #fbc52e;
    --zama-abt-black: #000000;
}

/* Breadcrumb Styling */
.zama-abt-pg-breadcrumb {
    position: relative;
    padding: 120px 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.zama-abt-pg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6), rgba(0,0,0,0.9));
    z-index: 1;
}

.zama-abt-pg-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.zama-abt-pg-breadcrumb .breadcrumb-item, 
.zama-abt-pg-breadcrumb .breadcrumb-item a {
    color: var(--zama-abt-gold);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
}

.zama-abt-pg-breadcrumb .breadcrumb-item.active {
    color: #fff;
    opacity: 0.6;
}

/* Section Styling */
.zama-abt-pg-image-frame {
    position: relative;
    padding: 30px;
}

.zama-abt-pg-gold-rect {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 70%;
    border: 3px solid var(--zama-abt-gold);
    z-index: 0;
}

.zama-abt-pg-main-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 2px;
}

.zama-abt-pg-experience-float {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--zama-abt-black);
    padding: 25px 35px;
    z-index: 10;
    text-align: center;
    border-bottom: 4px solid var(--zama-abt-gold);
}

/* Content Styling */
.zama-abt-pg-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--zama-abt-gold);
}

.zama-abt-pg-heading {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

.zama-abt-pg-text {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.zama-abt-pg-pillar {
    border-left: 2px solid var(--zama-abt-gold);
    padding-left: 15px;
}

.zama-abt-pg-btn {
    background: var(--zama-abt-black);
    color: #fff;
    padding: 18px 35px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: 0.4s;
}

.zama-abt-pg-btn:hover {
    background: var(--zama-abt-gold);
    color: #000;
    transform: translateY(-5px);
}

/* Fix for background-attachment on mobile */
@media (max-width: 991px) {
    .zama-abt-pg-breadcrumb {
        background-attachment: scroll;
        padding: 80px 0;
    }
}

/*misssion*/
/* Isolated Variables */
:root {
    --zama-mv-gold: #fbc52e;
    --zama-mv-black: #000000;
}

/* Breadcrumb Styling */
.zama-mv-pg-breadcrumb {
    position: relative;
    padding: 140px 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.zama-mv-pg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
}

.zama-mv-pg-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Breadcrumb Links */
.zama-mv-pg-breadcrumb .breadcrumb-item, 
.zama-mv-pg-breadcrumb .breadcrumb-item a {
    color: var(--zama-mv-gold);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
}

/* Details Section */
.zama-mv-pg-card {
    padding: 40px;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: 0.4s ease;
    background: #fff;
}

.zama-mv-pg-card:hover {
    border-color: var(--zama-mv-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.zama-mv-pg-icon-wrap {
    color: var(--zama-mv-gold);
    margin-bottom: 25px;
}

.zama-mv-pg-sub-heading {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--zama-mv-black);
}

/* Point Styling */
.zama-mv-pg-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.zama-dot {
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 2px;
    background: var(--zama-mv-gold);
}

/* Core Values Bar */
.zama-mv-pg-values-bar {
    border-bottom: 5px solid var(--zama-mv-gold);
}

.zama-mv-pg-value-item {
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.zama-mv-pg-value-item:last-child {
    border-right: none;
}

/* Animation Fallbacks */
@media (max-width: 991px) {
    .zama-mv-pg-breadcrumb {
        background-attachment: scroll;
    }
    .zama-mv-pg-value-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

/*Zama Corporate Responsibility*/
/* Isolated Variables */
:root {
    --zama-csr-gold: #fbc52e;
    --zama-csr-black: #000000;
}

/* Header Styling */
.zama-csr-v9-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--zama-csr-gold);
    border-bottom: 2px solid var(--zama-csr-gold);
    padding-bottom: 5px;
}

.zama-csr-v9-main-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 20px;
    color: var(--zama-csr-black);
}

.zama-csr-v9-intro {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* Image Presentation */
.zama-csr-v9-img-box {
    position: relative;
    padding: 15px;
}

.zama-csr-v9-img-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 2;
}

.zama-csr-v9-overlay-gold {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: var(--zama-csr-gold);
    opacity: 0.1;
    z-index: 1;
}

.zama-csr-v9-overlay-gold-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background: var(--zama-csr-gold);
    opacity: 0.1;
    z-index: 1;
}

/* Content Details */
.zama-csr-v9-subheading {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.zama-csr-v9-points li {
    margin-bottom: 20px;
    font-size: 15px;
    color: #444;
    padding-left: 20px;
    border-left: 3px solid var(--zama-csr-gold);
}

.zama-csr-v9-mini-stat {
    padding: 20px;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-bottom: 4px solid var(--zama-csr-gold);
}

/* Responsive */
@media (max-width: 991px) {
    .zama-csr-v9-img-box img {
        height: 300px;
    }
}

/*timeline*/

/* Isolated Variables */
:root {
    --zama-tm-gold: #fbc52e;
    --zama-tm-black: #000000;
}

.zama-tm-v10-section { position: relative; }

.zama-tm-v10-main-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
}

/* Timeline Pathway Structure */
.zama-tm-v10-pathway-container {
    max-width: 1000px;
    margin: 0 auto;
}

.zama-tm-v10-spine {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #eeeeee;
    transform: translateX(-50%);
}

.zama-tm-v10-row {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.zama-tm-v10-col {
    width: 50%;
    padding: 0 40px;
}

/* Timeline Nodes */
.zama-tm-v10-point {
    position: absolute;
    left: 50%;
    top: 40px;
    width: 16px;
    height: 16px;
    background: var(--zama-tm-gold);
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 5;
    box-shadow: 0 0 10px rgba(217, 165, 32, 0.5);
}

/* Content Card */
.zama-tm-v10-content-card {
    background: #fff;
    padding: 35px;
    border: 1px solid #f0f0f0;
    position: relative;
    border-bottom: 4px solid var(--zama-tm-gold);
}

.zama-tm-v10-year {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--zama-tm-gold);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.zama-tm-v10-event-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.zama-tm-v10-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Alignment Styling */
.zama-tm-v10-left { text-align: right; }
.zama-tm-v10-right { text-align: left; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .zama-tm-v10-spine { left: 20px; }
    .zama-tm-v10-point { left: 20px; }
    .zama-tm-v10-col { width: 100%; padding-left: 60px; text-align: left; }
    .zama-tm-v10-left { text-align: left; }
    .zama-tm-v10-row { display: block; }
}


/*career*/
/* Isolated Variables */
:root {
    --zama-hr-gold: #fbc52e;
    --zama-hr-black: #000000;
}

/* Section Header */
.zama-hr-v11-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--zama-hr-gold);
    border-bottom: 2px solid var(--zama-hr-gold);
    padding-bottom: 5px;
}

.zama-hr-v11-main-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 20px;
    color: var(--zama-hr-black);
}

.zama-hr-v11-intro {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 20px auto 0;
}

/* Benefit Cards */
.zama-hr-v11-benefit-card {
    padding: 40px;
    background: #fcfcfc;
    border-top: 5px solid var(--zama-hr-gold);
    height: 100%;
    transition: 0.4s ease;
}

.zama-hr-v11-benefit-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.zama-hr-v11-num {
    font-size: 40px;
    font-weight: 900;
    color: rgba(217, 165, 32, 0.15);
    margin-bottom: 10px;
    line-height: 1;
}

/* Job List Section */
.zama-hr-v11-job-list {
    border-radius: 4px;
}

.zama-hr-v11-job-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.zama-hr-v11-job-item:last-of-type {
    border-bottom: none;
}

.zama-hr-v11-apply-btn {
    color: var(--zama-hr-gold);
    text-decoration: none;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    border: 1px solid var(--zama-hr-gold);
    transition: 0.4s;
}

.zama-hr-v11-apply-btn:hover {
    background: var(--zama-hr-gold);
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .zama-hr-v11-benefit-card { margin-bottom: 20px; }
}



/*job details*/
/* Isolated Variables */
:root {
    --zama-jd-gold: #fbc52e;
    --zama-jd-black: #000000;
}

/* Header & Typography */
.zama-jd-v12-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--zama-jd-black);
}

.zama-jd-v12-badge {
    background: var(--zama-jd-gold);
    color: #000;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zama-jd-v12-location {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zama-jd-v12-sub {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--zama-jd-gold);
    margin-bottom: 20px;
}

.zama-jd-v12-list {
    list-style: none;
    padding-left: 0;
}

.zama-jd-v12-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #444;
}

.zama-jd-v12-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--zama-jd-gold);
    font-weight: bold;
}

/* Sidebar & Form Styling */
.zama-jd-v12-sidebar {
    border-top: 5px solid var(--zama-jd-gold);
}

.zama-jd-v12-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    outline: none;
    transition: 0.3s;
}

.zama-jd-v12-input:focus {
    border-bottom-color: var(--zama-jd-gold);
}

.zama-jd-v12-file-label {
    display: block;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.zama-jd-v12-file-label:hover {
    border-color: var(--zama-jd-gold);
}

.zama-jd-v12-submit {
    width: 100%;
    background: var(--zama-jd-gold);
    color: #000;
    border: none;
    padding: 18px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
}

.zama-jd-v12-submit:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Sidebar Sticky Adjustment */
@media (max-width: 991px) {
    .zama-jd-v12-sidebar {
        margin-top: 50px;
        position: static !important;
    }
}

/*blogs*/
/* Isolated Variables */
:root {
    --zama-v14-gold: #fbc52e;
    --zama-v14-black: #000000;
}

.zama-row-blog-v14-main-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Item Structure */
.zama-row-blog-v14-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.zama-row-blog-v14-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1) !important;
}

/* Image Presentation */
.zama-row-blog-v14-img {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.zama-row-blog-v14-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.zama-row-blog-v14-item:hover .zama-row-blog-v14-img img {
    transform: scale(1.08);
}

/* Content Details */
.zama-row-blog-v14-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--zama-v14-gold);
    margin-bottom: 15px;
    border-left: 3px solid var(--zama-v14-gold);
    padding-left: 10px;
}

.zama-row-blog-v14-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.zama-row-blog-v14-link {
    color: var(--zama-v14-black);
    text-decoration: none;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 25px;
    border: 1px solid var(--zama-v14-black);
    transition: 0.3s;
}

.zama-row-blog-v14-link:hover {
    background: var(--zama-v14-black);
    color: var(--zama-v14-gold);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .zama-row-blog-v14-img { min-height: 250px; }
    .zama-row-blog-v14-title { font-size: 20px; }
    .zama-row-blog-v14-item { margin-bottom: 30px; }
}


/*blog details */
/* Isolated Variables */
:root {
    --zama-v15-gold: #fbc52e;
    --zama-v15-black: #000000;
}

/* Typography & Header */
.zama-post-v15-main-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--zama-v15-black);
}

.zama-post-v15-cat {
    color: var(--zama-v15-gold);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
}

.zama-post-v15-meta {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
}

/* Body Content */
.zama-post-v15-lead {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.zama-post-v15-subtitle {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 20px;
}

.zama-post-v15-body p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.zama-post-v15-quote {
    padding: 40px;
    background: #fcfcfc;
    border-left: 5px solid var(--zama-v15-gold);
    font-style: italic;
    font-size: 20px;
    margin: 40px 0;
}

.zama-post-v15-list {
    list-style: none;
    padding-left: 0;
}

.zama-post-v15-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 17px;
}

.zama-post-v15-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--zama-v15-gold);
    font-weight: bold;
}

/* Sidebar Elements */
.zama-post-v15-btn-gold {
    background: var(--zama-v15-gold);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    padding: 15px;
    font-size: 11px;
    letter-spacing: 1px;
    border-radius: 0;
}

.zama-post-v15-side-title {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 2px solid var(--zama-v15-gold);
    display: inline-block;
    padding-bottom: 5px;
}

.zama-post-v15-trending-item h6 a {
    color: var(--zama-v15-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.zama-post-v15-trending-item h6 a:hover {
    color: var(--zama-v15-gold);
}

.zama-post-v15-side-date {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    font-weight: bold;
}

/* Share Links */
.zama-post-v15-social-links a {
    margin-left: 15px;
    color: var(--zama-v15-black);
    text-decoration: none;
    font-weight: 900;
    font-size: 12px;
}

.zama-post-v15-social-links a:hover {
    color: var(--zama-v15-gold);
}

/*contact us*/
/* Isolated Variables */
:root {
    --zama-ct-gold: #fbc52e;
    --zama-ct-black: #000000;
}

.zama-ct-v16-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

/* Info Details Styling */
.zama-ct-v16-item {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid var(--zama-ct-gold);
}

.zama-ct-v16-label {
    display: block;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--zama-ct-gold);
    margin-bottom: 5px;
}

.zama-ct-v16-item p {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #333;
}

/* Social Plateform Circular Animation */
.zama-social-plateform {
    display: flex;
    gap: 12px;
}

.zama-social-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(217, 165, 32, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: transparent;
}

.zama-social-circle svg {
    width: 18px;
    height: 18px;
    z-index: 2;
    transition: 0.4s;
}

.zama-social-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--zama-ct-gold);
    border-radius: 50%;
    transform: scale(0);
    transition: 0.4s ease;
    z-index: 1;
}

.zama-social-circle:hover {
    transform: rotate(360deg);
    border-color: var(--zama-ct-gold);
}

.zama-social-circle:hover::before {
    transform: scale(1);
}

.zama-social-circle:hover svg {
    color: #000;
}

/* Form Styling */
.zama-ct-v16-form-card {
    border-bottom: 6px solid var(--zama-ct-gold);
}

.zama-ct-v16-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    outline: none;
    transition: 0.3s;
}

.zama-ct-v16-input:focus {
    border-bottom-color: var(--zama-ct-gold);
}

.zama-ct-v16-select option {
    background: var(--zama-ct-black);
    color: #fff;
}

.zama-ct-v16-submit {
    background: var(--zama-ct-gold);
    color: #000;
    border: none;
    padding: 18px 45px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
}

.zama-ct-v16-submit:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Map Frame */
.zama-ct-v16-map {
    border: 1px solid #eee;
    padding: 10px;
    background: #fff;
}

/*program overview*/
/* Isolated Variables */
:root {
    --zama-v19-gold: #fbc52e;
    --zama-v19-black: #111111;
    --zama-v19-bg: #F8F9FA;
}

/* Panel Styling */
.zama-lum-v19-panel {
    background: #ffffff;
    padding: 60px 50px;
    height: 100%;
    border-top: 4px solid var(--zama-v19-gold);
    transition: 0.4s ease;
}

.zama-lum-v19-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
}

.zama-lum-v19-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--zama-v19-black);
    color: var(--zama-v19-black);
    text-decoration: none;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.zama-lum-v19-btn:hover {
    background: var(--zama-v19-black);
    color: var(--zama-v19-gold);
}

/* Pillar Card Styling */
.zama-lum-v19-pillar-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    height: 100%;
    transition: 0.5s;
}

.zama-lum-v19-card-img {
    height: 220px;
    overflow: hidden;
}

.zama-lum-v19-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%) grayscale(20%);
    transition: 0.7s;
}

.zama-lum-v19-card-info {
    padding: 30px;
}

.zama-lum-v19-card-info h4 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--zama-v19-black);
}

/* Horizontal Pillar Layout */
.zama-lum-v19-pillar-card.horizontal {
    display: flex;
    align-items: center;
}

.zama-lum-v19-pillar-card.horizontal .zama-lum-v19-card-img {
    width: 40%;
    height: 100%;
}

.zama-lum-v19-pillar-card.horizontal .zama-lum-v19-card-info {
    width: 60%;
}

/* Hover Effects */
.zama-lum-v19-pillar-card:hover {
    border-color: var(--zama-v19-gold);
}

.zama-lum-v19-pillar-card:hover img {
    filter: sepia(0%) grayscale(0%);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .zama-lum-v19-pillar-card.horizontal {
        flex-direction: column;
    }
    .zama-lum-v19-pillar-card.horizontal .zama-lum-v19-card-img,
    .zama-lum-v19-pillar-card.horizontal .zama-lum-v19-card-info {
        width: 100%;
    }
}


/* Isolated Variables */
:root {
    --zama-v20-gold: #fbc52e;
    --zama-v20-black: #111111;
}

.zama-discovery-v20-cat-title {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--zama-v20-black);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--zama-v20-gold);
    display: inline-block;
}

/* Card Styling */
.zama-discovery-v20-card {
    text-decoration: none;
    display: block;
    transition: 0.4s;
}

.zama-discovery-v20-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #000;
    border-radius: 2px;
}

.zama-discovery-v20-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.5s ease;
}

/* Hover Overlay */
.zama-discovery-v20-overlay {
    position: absolute;
    inset: 0;
    background: rgba(217, 165, 32, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    transform: translateY(100%);
}

.zama-discovery-v20-overlay span {
    color: #000;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Text Content */
.zama-discovery-v20-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--zama-v20-black);
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* Hover Animations */
.zama-discovery-v20-card:hover .zama-discovery-v20-img img {
    transform: scale(1.1);
    opacity: 1;
    filter: blur(2px);
}

.zama-discovery-v20-card:hover .zama-discovery-v20-overlay {
    opacity: 1;
    transform: translateY(0);
}

.zama-discovery-v20-card:hover .zama-discovery-v20-name {
    color: var(--zama-v20-gold);
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .zama-discovery-v20-img { height: 140px; }
}

/*global overview*/

/* Isolated Variables */
:root {
    --zama-v21-gold: #fbc52e;
    --zama-v21-black: #111111;
}

/* Typography Focus */
.zama-gc-v21-main-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--zama-v21-black);
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--zama-v21-gold);
}

.zama-gc-v21-lead {
    font-size: 19px;
    color: #666;
    max-width: 550px;
    line-height: 1.6;
}

/* Image Stack & Decoration */
.zama-gc-v21-img-stack {
    position: relative;
    padding: 20px;
}

.zama-gc-v21-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 3px solid var(--zama-v21-gold);
    z-index: 1;
}

.zama-gc-v21-img-stack img {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    margin-left: 40px;
    border-radius: 4px;
}

.zama-gc-v21-badge {
    position: absolute;
    bottom: -10px;
    right: 20px;
    background: var(--zama-v21-black);
    padding: 15px 25px;
    z-index: 10;
    font-size: 11px;
    letter-spacing: 2px;
}

/* Buttons */
.zama-gc-v21-btn {
    display: inline-block;
    background: var(--zama-v21-black);
    color: #fff;
    padding: 15px 35px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.4s;
}

.zama-gc-v21-btn:hover {
    background: var(--zama-v21-gold);
    color: #000;
    transform: translateY(-3px);
}

/* Steps Styling */
.zama-gc-v21-step-item {
    padding: 40px;
    background: #fcfcfc;
    border-bottom: 3px solid #eee;
    transition: 0.4s;
}

.zama-gc-v21-step-item:hover {
    background: #fff;
    border-bottom-color: var(--zama-v21-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.zama-gc-v21-step-num {
    font-size: 40px;
    font-weight: 900;
    color: rgba(217, 165, 32, 0.2);
    display: block;
    margin-bottom: 10px;
}


/*sitemap*/
/* Isolated Variables */
:root {
    --zama-map-gold: #fbc52e;
    --zama-map-black: #111111;
}

.zama-map-revised-section {
    background-color: #ffffff;
}

/* Category Containers */
.zama-map-revised-group {
    padding: 20px;
    height: 100%;
}

/* Section Titles */
.zama-map-revised-title {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--zama-map-black);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.zama-map-revised-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--zama-map-gold);
}

/* Sub-labels */
.zama-map-revised-sub {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--zama-map-gold);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    margin-top: 10px;
}

/* Links */
.zama-map-revised-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zama-map-revised-list li {
    margin-bottom: 12px;
    position: relative;
}

.zama-map-revised-list li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.zama-map-revised-list li a:hover {
    color: var(--zama-map-gold);
    transform: translateX(5px);
}

.zama-map-revised-list li a.active {
    color: var(--zama-map-gold);
    font-weight: 800;
}

/* Mobile Tweak */
@media (max-width: 991px) {
    .zama-map-revised-group {
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
    }
}

/*privacy-policy*/
/* Isolated Variables */
:root {
    --zama-v23-gold: #fbc52e;
    --zama-v23-black: #111111;
}

.zama-legal-v23-section {
    background-color: #ffffff;
    line-height: 1.8;
}

/* Typography */
.zama-legal-v23-sub {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--zama-v23-gold);
    margin-bottom: 20px;
    display: block;
}

.zama-legal-v23-content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

/* Bullet Styling */
.zama-legal-v23-list {
    list-style: none;
    padding-left: 0;
}

.zama-legal-v23-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
}

.zama-legal-v23-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--zama-v23-gold);
    font-weight: bold;
}

/* Contact Box */
.zama-legal-v23-contact {
    background: #fcfcfc !important;
}

/* Print Styling */
@media print {
    .zama-legal-v23-section { padding: 0; }
    .btn, .header, .footer { display: none; }
}

/*gallary zama marker-start*/

/* Tab Buttons Styling */
.zama-tab-btn {
    border: 1px solid #eaeaea !important;
    background: transparent !important;
    color: #111 !important;
    font-weight: 700 !important;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 12px 24px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease;
}

.zama-tab-btn.active {
    background: #fbc52e !important; /* Gold */
    border-color: #fbc52e !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

/* Gallery Box Styling */
.zama-gal-box {
    display: block;
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none !important;
}

.zama-gal-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.zama-gal-box span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hover Effects */
.zama-gal-box:hover img {
    transform: scale(1.1);
}

.zama-gal-box:hover span {
    background: linear-gradient(to top, #fbc52e 0%, transparent 80%);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .zama-gal-box { height: 180px; }
}

@media (max-width: 768px) {
    .zama-gallery-tabs { padding: 40px 0; }
    .zama-tab-btn {
        padding: 8px 12px !important;
        font-size: 11px;
    }
    .zama-gal-box span {
        font-size: 0.85rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .zama-gal-box { height: 150px; } /* Smaller images for small phones */
    .nav-pills { gap: 5px !important; } /* Tighten buttons on mobile */
}

/*galary end*/


/*website cookies*/

/* Cookie Banner Container */
.zama-cookie-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    max-width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); /* Premium Blur Effect */
    border: 1px solid #fbc52e;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000000;
    display: block; /* Hidden via JS if already accepted */
    animation: slideUp 0.5s ease-out;
}

.zama-cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zama-cookie-text h5 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
}

.zama-cookie-text p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.zama-cookie-actions {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

/* Buttons */
.btn-zama-accept, .btn-zama-reject {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-zama-accept {
    background-color: #fbc52e;
    color: white;
}

.btn-zama-accept:hover {
    background-color: #111;
    transform: translateY(-2px);
}

.btn-zama-reject {
    background-color: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.btn-zama-reject:hover {
    background-color: #f5f5f5;
    color: #111;
}

/* Animation */
@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .zama-cookie-container {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 15px;
    }
    .zama-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .zama-cookie-icon { display: none; }
    .zama-cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    .btn-zama-accept, .btn-zama-reject {
        width: 100%;
    }
}