html,
body {
    width: 100%;
}


.glass-panel {
    background: rgba(15, 36, 22, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    padding: 4rem 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #f2d17c 0%, #d4af37 50%, #b38600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-card {
    border-radius: var(--radius-xl);
    background: var(--bg-surface);
    box-shadow: 0 15px 40px rgba(15, 36, 22, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(193, 155, 108, 0.1);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 36, 22, 0.1);
    border-color: rgba(193, 155, 108, 0.3);
}

.bg-pattern {
    position: relative;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--brand-gold) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.z-index-1 {
    z-index: 1;
}


.glass-panel {
    background: rgba(15, 36, 22, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    padding: 4rem 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #f2d17c 0%, #d4af37 50%, #b38600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-card {
    border-radius: var(--radius-xl);
    background: var(--bg-surface);
    box-shadow: 0 15px 40px rgba(15, 36, 22, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(193, 155, 108, 0.1);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 36, 22, 0.1);
    border-color: rgba(193, 155, 108, 0.3);
}

.bg-pattern {
    position: relative;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--brand-gold) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.z-index-1 {
    z-index: 1;
}


@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}


@keyframes bounceSoft {

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

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

.animate-bounce {
    animation: bounceSoft 2s infinite ease-in-out;
}

.tracking-wider {
    letter-spacing: 0.2em;
}


@keyframes spinRing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.btn-orbit-wrapper {
    position: relative;
    display: inline-block;
    padding: 3px;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(42, 93, 69, 0.1);
}

.btn-orbit-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2000px;
    height: 2000px;
    background: conic-gradient(from 0deg, transparent 70%, #ff0000 85%, #ffff00 100%);
    animation: spinRing 2.5s linear infinite;
    z-index: 0;
}

.btn-orbit-inner {
    position: relative;
    background-color: var(--brand-primary);
    color: white !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 47px;
    z-index: 1;
    border: none;
}

.btn-orbit-inner:hover {
    background-color: #1e4231;
}


.review-card {
    border-radius: 1.5rem !important;
    /* More curved */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: transparent !important;
}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: block;
}

.gallery-item img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 36, 22, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}


@keyframes spinRing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.btn-orbit-wrapper {
    position: relative;
    display: inline-block;
    padding: 3px;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(42, 93, 69, 0.1);
}

.btn-orbit-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2000px;
    height: 2000px;
    background: conic-gradient(from 0deg, transparent 70%, #ff0000 85%, #ffff00 100%);
    animation: spinRing 2.5s linear infinite;
    z-index: 0;
}

.btn-orbit-inner {
    position: relative;
    background-color: var(--brand-primary);
    color: white !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 47px;
    z-index: 1;
    border: none;
}

.btn-orbit-inner:hover {
    background-color: #1e4231;
}


@media (min-width: 992px) {
    .snake-timeline {
        position: relative;
        padding: 2rem 0;
        overflow: hidden;
    }

    .snake-row {
        position: relative;
        padding: 3rem 0;
        margin-top: -3px !important;
    }

    .snake-row:first-child {
        margin-top: 0 !important;
    }

    .snake-path-right {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 35%;
        border: 3px dashed var(--brand-gold);
        border-left: none;
        border-top-right-radius: 4rem;
        border-bottom-right-radius: 4rem;
        opacity: 0.5;
        z-index: 0;
        pointer-events: none;
    }

    .snake-path-left {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 50%;
        width: 35%;
        border: 3px dashed var(--brand-gold);
        border-right: none;
        border-top-left-radius: 4rem;
        border-bottom-left-radius: 4rem;
        opacity: 0.5;
        z-index: 0;
        pointer-events: none;
    }

    /* The first row doesn't curve into the top, it just starts at the dot */
    .snake-row:first-child .snake-path-right {
        border-top: none;
        border-top-right-radius: 0;
    }

    /* The last row doesn't curve at the bottom, it just ends at the dot */
    .snake-row:last-child .snake-path-right {
        border-bottom: none;
        border-bottom-right-radius: 0;
    }

    .snake-dot {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        background-color: var(--brand-gold);
        border: 4px solid #fff;
        border-radius: 50%;
        z-index: 2;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .snake-dot-end {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
        width: 24px;
        height: 24px;
        background-color: var(--brand-gold);
        border: 4px solid #fff;
        border-radius: 50%;
        z-index: 2;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}


.team-card-modern:hover img {
    transform: scale(1.08) !important;
}

.team-card-modern:hover .team-bio {
    max-height: 150px !important;
    opacity: 1 !important;
    margin-bottom: 10px;
}

.team-card-modern {
    cursor: pointer;
}


.value-card-modern {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.value-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 36, 22, 0.08) !important;
    border-color: transparent !important;
}

.value-card-modern:hover .hover-bar {
    opacity: 1 !important;
}

.value-card-modern:hover .icon-wrapper {
    background-color: var(--brand-gold) !important;
    color: white !important;
    transform: scale(1.1) rotate(5deg);
}


.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: transparent !important;
}


@keyframes spinRing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.btn-orbit-wrapper {
    position: relative;
    display: inline-block;
    padding: 3px;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(42, 93, 69, 0.1);
}

.btn-orbit-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2000px;
    height: 2000px;
    background: conic-gradient(from 0deg, transparent 70%, #ff0000 85%, #ffff00 100%);
    animation: spinRing 2.5s linear infinite;
    z-index: 0;
}

.btn-orbit-inner {
    position: relative;
    background-color: var(--brand-primary);
    color: white !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 47px;
    z-index: 1;
    border: none;
}

.btn-orbit-inner:hover {
    background-color: #1e4231;
}


@keyframes spinRing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.btn-orbit-wrapper {
    position: relative;
    display: inline-block;
    padding: 3px;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(42, 93, 69, 0.1);
}

.btn-orbit-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2000px;
    height: 2000px;
    /* A beautiful red and yellow glowing tail that sweeps around */
    background: conic-gradient(from 0deg, transparent 70%, #ff0000 85%, #ffff00 100%);
    animation: spinRing 2.5s linear infinite;
    z-index: 0;
}

.btn-orbit-inner {
    position: relative;
    background-color: var(--brand-primary);
    color: white !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 47px;
    z-index: 1;
}

.btn-orbit-inner:hover {
    background-color: #1e4231;
}

/* Interaction Animations */
.transition-smooth {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.hover-scale:hover {
    transform: scale(1.03) !important;
}

.hover-lift:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.hover-lift:active {
    transform: translateY(-2px) scale(0.98) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.hover-scale:active {
    transform: scale(0.95) !important;
}

/* Floating Navbar */
.floating-nav {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 95% !important;
    max-width: 1200px !important;
    border-radius: 50px !important;
    z-index: 1030 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

@media (max-width: 991px) {
    .floating-nav {
        width: 95% !important;
        top: 15px !important;
        border-radius: 30px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.pt-nav-clearance {
    padding-top: 130px !important;
}

@media (max-width: 768px) {
    .hero-content-mobile-fix {
        padding-top: 100px !important;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}