@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400;1,700&display=swap');

/* =========================================
   Base Styles & Variables
   ========================================= */
:root {
    --primary-color: #22b573;
    /* Brand Green Left */
    --primary-light: #8bc63f;
    /* Brand Green Right */
    --primary-dark: #57bd59;
    /* Brand Green Middle */
    --secondary-color: #124021;
    /* Dark teal/green */
    --tertiary-color: #808080;
    /* Brand Gray */
    --accent-color: #e9f7ef;
    /* Light green tint */
    --dark-text: #000000;
    --light-text: #f8fafc;
    --white: #ffffff;

    /* NEW — Complementary Accent Colors */
    /* Removed Navy & Gold for Brand Compliance */
    --navy: #000000;
    --navy-light: #121212;
    --slate: #475569;
    --cream: #fdfbf7;
    --warm-white: #fafaf9;

    --font-heading: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;

    --transition-speed: 0.3s;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-soft: 0 10px 30px rgba(34, 181, 115, 0.08);
    --shadow-hover: 0 15px 40px rgba(34, 181, 115, 0.15);
    --shadow-glow: 0 0 20px rgba(34, 181, 115, 0.3);
    --shadow-elevation: 0 20px 60px rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.25);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #2a2a2a;
    background-color: var(--warm-white);
    line-height: 1.65;
    overflow-x: hidden;
    font-weight: 400;
    animation: fadeInPage 0.8s ease-out;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.3px;
}

h1 {
    letter-spacing: -1px;
}

h2 {
    letter-spacing: -0.8px;
}

strong,
b {
    font-weight: 700;
    color: var(--primary-color);
}

em,
i {
    font-style: italic;
}

/* Testimonial Name Styling */
.name {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
}

/* Testimonial Small Text Styling */
.text-muted {
    color: var(--secondary-color) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Global Link Styling with Better Visibility */
a:not(.nav-link):not(.dropdown-item) {
    position: relative;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
}

a:not(.nav-link):not(.dropdown-item):hover {
    color: var(--primary-light);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Improved Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

p {
    color: #2a2a2a;
    font-weight: 400;
    line-height: 1.7;
}

ul {
    list-style: none;
    padding: 0;
}

/* =========================================
   Keyframe Animations
   ========================================= */

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-30px) translateX(15px) scale(1.1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-15px) translateX(-10px) scale(0.9);
        opacity: 0.5;
    }

    75% {
        transform: translateY(-40px) translateX(5px) scale(1.05);
        opacity: 0.6;
    }
}

@keyframes morphBackground {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes textReveal {
    from {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

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

@keyframes floatGentle {

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

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(20px 20px 60px rgba(34, 181, 115, 0.15));
    }

    50% {
        filter: drop-shadow(20px 20px 60px rgba(34, 181, 115, 0.3));
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.95;
        transform: scale(1.02);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes borderShimmer {
    0% {
        border-color: rgba(34, 181, 115, 0.15);
    }

    50% {
        border-color: rgba(34, 181, 115, 0.4);
    }

    100% {
        border-color: rgba(34, 181, 115, 0.15);
    }
}

@keyframes scrollIndicator {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0.4;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes iconBounce {

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

    50% {
        transform: translateY(-6px);
    }
}

@keyframes quoteMarkFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
        opacity: 0.08;
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.12;
    }
}

@keyframes underlineGrow {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

/* =========================================
   Header & Navigation — Glassmorphism
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(34, 181, 115, 0.08);
    transition: all 0.5s var(--transition-smooth);
    padding: 8px 0;
    border-bottom: 1px solid rgba(34, 181, 115, 0.06);
}

.main-header.scrolled {
    padding: 4px 0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(34, 181, 115, 0.06);
    border-bottom: 1px solid rgba(34, 181, 115, 0.12);
}

/* Animated border shimmer on scroll */
.main-header.scrolled::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(50deg,
            transparent,
            var(--primary-color),
            var(--primary-light),
            var(--primary-color),
            transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0 !important;
    margin: 0 !important;
}

.navbar-brand img {
    height: 65px;
    width: auto;
    transition: transform 0.4s var(--transition-bounce);
    margin: 0;
}

.navbar-brand:hover img {
    transform: scale(1.1) rotate(-2deg);
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    /* Slightly smaller */
    letter-spacing: 1px;
    padding: 0.5rem 0.8rem !important;
    /* Tighter padding */
    position: relative;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

/* Animated underline */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    /* Lower underline */
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    /* Full width for clarity */
}

/* Remove the duplicate ::before underline */
.nav-link::before {
    display: none;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    color: var(--dark-text);
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
}

.dropdown-item:hover {
    background: linear-gradient(50deg, rgba(34, 181, 115, 0.08), rgba(139, 198, 63, 0.05));
    color: var(--primary-color);
    transform: translateX(5px);
    padding-left: 22px;
}

/* Hover Dropdown Logic for Desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        margin-top: 0;
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.98);
        transition: all 0.35s var(--transition-smooth);
    }
}

/* Services Link Arrow */
.nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
}

/* =========================================
   Hero Section — Cinematic
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5%;
    text-align: left;
    color: var(--white);
    overflow: hidden;
    background: linear-gradient(50deg, rgba(34, 181, 115, 0.85) 0%, rgba(15, 76, 58, 0.75) 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(34, 181, 115, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(87, 189, 89, 0.2) 0%, transparent 50%),
        radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
}

/* Floating particles */
.hero-section .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: particleFloat linear infinite;
}

.hero-particles .particle:nth-child(1) {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.hero-particles .particle:nth-child(2) {
    width: 4px;
    height: 4px;
    top: 60%;
    left: 25%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.hero-particles .particle:nth-child(3) {
    width: 8px;
    height: 8px;
    top: 40%;
    left: 60%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.hero-particles .particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 75%;
    animation-duration: 9s;
    animation-delay: 3s;
}

.hero-particles .particle:nth-child(5) {
    width: 3px;
    height: 3px;
    top: 15%;
    left: 85%;
    animation-duration: 11s;
    animation-delay: 0.5s;
}

.hero-particles .particle:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 45%;
    animation-duration: 13s;
    animation-delay: 4s;
}

.hero-particles .particle:nth-child(7) {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 1.5s;
}

.hero-particles .particle:nth-child(8) {
    width: 6px;
    height: 6px;
    top: 50%;
    left: 90%;
    animation-duration: 14s;
    animation-delay: 2.5s;
}

.home-hero-content {
    z-index: 1;
    max-width: 900px;
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 60px 80px;
    text-align: left;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), inset 0 0 80px rgba(34, 181, 115, 0.03);
    animation: slideInLeft 1s ease-out;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient edge glow */
.home-hero-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(50deg, rgba(34, 181, 115, 0.3), transparent 40%, transparent 60%, rgba(139, 198, 63, 0.2));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.home-hero-content:hover::before {
    opacity: 1;
}

.climbHeading {
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -1px;
}

.climbHeading span {
    color: var(--primary-light);
    font-style: italic;
    background: linear-gradient(50deg, var(--primary-color), var(--primary-light), #2ed573);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding: 0 10px;
    animation: gradientShift 4s ease-in-out infinite;
}

.climbPar {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.92);
    max-width: 700px;
    line-height: 1.85;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.secondary-text {
    font-size: 1.05rem;
    font-style: italic;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    border-left: 4px solid var(--primary-light);
    padding-left: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.scroll-indicator .scroll-arrow {
    width: 28px;
    height: 28px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    animation: scrollIndicator 2s ease-in-out infinite;
}

.scroll-indicator .scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    filter: drop-shadow(0 -5px 15px rgba(0, 0, 0, 0.1));
}

/* =========================================
   Layout & Decoration
   ========================================= */
.section-separator {
    text-align: center;
    margin: -20px 0 40px 0;
    position: relative;
    z-index: 10;
}

.line-img {
    max-width: 100%;
    height: auto;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.bg-decoration {
    position: absolute;
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.grad-ark-bg {
    top: 10%;
    right: -10%;
    width: 30vw;
    min-width: 300px;
    transform: rotate(-15deg);
}

/* =========================================
   Beyond Section — Premium
   ========================================= */
.beyond-section {
    padding: 8rem 0;
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Subtle dotted grid background */
.beyond-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(34, 181, 115, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.beyond-content {
    position: relative;
    z-index: 1;
}

.beyond-number-container {
    padding-left: 2rem;
}

.LBN-line {
    color: var(--tertiary-color);
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(34, 181, 115, 0.1);
}

.green {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
    animation: fadeInScale 0.8s ease-out;
}

.green::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(50deg, var(--primary-color), var(--primary-light));
    opacity: 0.2;
    z-index: -1;
    transform: skewX(-15deg);
    border-radius: 3px;
    transition: opacity 0.3s ease;
}

.custom-btn {
    background: linear-gradient(50deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 1.15rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(34, 181, 115, 0.3);
    transition: all 0.4s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shimmer sweep on hover */
.custom-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.custom-btn:hover::before {
    left: 100%;
}

.custom-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(34, 181, 115, 0.4);
    color: var(--white);
}

.custom-btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 10px 30px rgba(34, 181, 115, 0.3);
}

.custom-icon {
    font-size: 1.4rem;
    transition: transform 0.4s var(--transition-bounce);
    position: relative;
    z-index: 1;
}

.custom-btn:hover .custom-icon {
    transform: translateX(6px) scale(1.1);
}

/* Phone mockup layout */
.image-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 500px;
    position: relative;
}

@media (max-width: 991px) {
    .image-grid {
        height: 400px;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .image-grid {
        height: auto;
        display: block;
        text-align: center;
    }

    .phone-mockup-wrapper {
        position: relative;
        z-index: 2;
        max-width: 80%;
        margin: 0 auto;
    }

    .decoration-circle {
        width: 250px;
        height: 250px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.phone-mockup-wrapper {
    grid-column: 2 / span 6;
    grid-row: 2 / span 10;
    z-index: 2;
    animation: floatGentle 6s ease-in-out infinite;
    transition: transform 0.3s var(--transition-smooth);
}

.phone-mockup {
    width: 100%;
    height: auto;
    filter: drop-shadow(20px 20px 60px rgba(0, 0, 0, 0.18));
    transition: filter 0.5s ease;
}

.phone-mockup-wrapper:hover .phone-mockup {
    filter: drop-shadow(25px 25px 80px rgba(34, 181, 115, 0.25));
}

.client-love-wrapper {
    display: flex !important;
    justify-content: center;
    align-items: center;
    grid-column: unset !important;
    grid-row: unset !important;
    z-index: 3;
    animation: floatGentle 6s ease-in-out infinite !important;
    max-width: 300px;
    margin: 0 auto;
}

.client-love {
    width: 100%;
    height: auto;
    filter: drop-shadow(12px 12px 35px rgba(34, 181, 115, 0.2));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid rgba(34, 181, 115, 0.15);
    transition: all 0.4s var(--transition-smooth);
}

.client-love:hover {
    transform: scale(1.08) translateY(-8px);
    filter: drop-shadow(18px 18px 45px rgba(34, 181, 115, 0.3));
    background: rgba(255, 255, 255, 0.98);
}

.decoration-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 181, 115, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: morphBackground 8s ease-in-out infinite;
}

/* =========================================
   Metrics Section — Premium Cards
   ========================================= */
.metrics-section {
    background: linear-gradient(135deg, #000000 0%, #121212 50%, #000000 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle dot pattern for depth */
.metrics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(34, 181, 115, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.metrics-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(34, 181, 115, 0.15);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Animated gradient top border — gold */
.metrics-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color), var(--primary-light), var(--primary-color), var(--primary-dark));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.metricsText {
    position: relative;
    padding: 1rem 0;
}

/* Gradient divider between metrics — gold */
.metricsText:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(34, 181, 115, 0.3), transparent);
}

.metricsNum {
    display: block;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.metricsNum span {
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.5s var(--transition-bounce);
}

.metricsText:hover .metricsNum span {
    transform: scale(1.08);
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-top: 15px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.metric-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

/* =========================================
   Quote Section — Elegant
   ========================================= */
.quote-section {
    padding: 8rem 0;
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Quote background decoration */
.quote-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(34, 181, 115, 0.04);
    z-index: 0;
    white-space: nowrap;
    text-transform: uppercase;
    font-family: var(--font-body);
    pointer-events: none;
    max-width: 100vw;
    overflow: hidden;
}

/* Animated large quotation mark */
.quote-section::before {
    content: '\201C';
    position: absolute;
    top: 8%;
    left: 8%;
    font-size: 20rem;
    font-family: 'Lato', sans-serif;
    color: rgba(34, 181, 115, 0.06);
    z-index: 0;
    pointer-events: none;
    animation: quoteMarkFloat 6s ease-in-out infinite;
    line-height: 1;
}

.q-text {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    padding: 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(34, 181, 115, 0.12);
    box-shadow: 0 20px 60px rgba(34, 181, 115, 0.1);
    transition: all 0.5s var(--transition-smooth);
}

.q-text:hover {
    box-shadow: 0 30px 80px rgba(34, 181, 115, 0.15);
    border-color: rgba(34, 181, 115, 0.25);
    transform: translateY(-4px);
}

#q-head {
    color: var(--primary-color);
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

#q-par {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* =========================================
   Testimonials Section — 3D Cards
   ========================================= */
.testimonials-section {
    background-color: var(--warm-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(34, 181, 115, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.section-title {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(50deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(50deg, var(--primary-color), var(--primary-light));
    border-radius: 3px;
}

/* Testimonials Header with Client Love Layout */
.testimonials-section .row.align-items-center {
    gap: 3rem;
    align-items: center !important;
    margin-bottom: 80px !important;
}

.testimonials-section .col-lg-6:first-child {
    display: flex;
    align-items: center;
}

.testimonials-section .col-lg-6:last-child {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

/* Slick Slider Container */
.slik-slider {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}

.padding-between-card {
    padding: 15px !important;
    height: 100%;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(240, 253, 249, 0.97) 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(34, 181, 115, 0.08);
    height: 100%;
    transition: all 0.5s var(--transition-smooth);
    border: 1.5px solid rgba(34, 181, 115, 0.08);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Animated left stripe */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    transition: height 0.5s var(--transition-smooth);
    border-radius: 0 2px 2px 0;
}

/* Quote mark decoration */
.testimonial-card::after {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 5rem;
    font-family: 'Lato', sans-serif;
    color: rgba(34, 181, 115, 0.06);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(34, 181, 115, 0.12);
    border-color: rgba(34, 181, 115, 0.2);
}

.testimonial-card:hover::before {
    height: 100%;
}

.testimonial-card:hover::after {
    color: rgba(34, 181, 115, 0.12);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-top: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.client-info h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.client-info small {
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* =========================================
   Footer (legacy classes from style.css)
   ========================================= */
.footer-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    color: #FFFFFF;
    padding-top: 5rem;
    padding-bottom: 3rem;
    font-size: 0.95rem;
    position: relative;
    border-top: 4px solid var(--primary-color);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-logo {
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(1.2) invert(1) drop-shadow(0 0 15px rgba(34, 181, 115, 0.4));
    opacity: 1;
}

.footer-heading {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    padding-left: 15px;
}

.footer-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 20px;
    width: 3px;
    background: linear-gradient(50deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.footer-links-list li {
    margin-bottom: 12px;
    transition: transform 0.2s;
}

.footer-links-list li:hover {
    transform: translateX(5px);
}

.footer-links-list a {
    color: #E8F5E9;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-links-list a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(50deg, var(--primary-color), var(--primary-light));
    transition: width 0.4s ease;
}

.footer-links-list a:hover::after {
    width: 100%;
}

.text-primary-color {
    color: var(--secondary-color) !important;
}

.social-icons a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background: linear-gradient(50deg, var(--primary-color), var(--primary-light));
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-glow);
    border-color: var(--white);
}

/* Enhanced Footer Text Visibility */
.footer-section .small {
    color: #FFFFFF !important;
    font-size: 0.95rem;
}

.footer-section p {
    color: #FFFFFF !important;
    font-weight: 400;
    line-height: 1.8;
}

.footer-section a {
    color: #FFFFFF !important;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light) !important;
}

/* =========================================
   Form Styles
   ========================================= */
.form-control,
.form-select {
    border: 1px solid rgba(34, 181, 115, 0.15);
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(34, 181, 115, 0.03);
    border-radius: var(--radius-sm);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(34, 181, 115, 0.12);
    transform: translateY(-1px);
}

/* =========================================
   Scrollbar
   ========================================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--accent-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(50deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(34, 181, 115, 0.4);
}

::placeholder {
    color: rgba(34, 181, 115, 0.5);
    font-style: italic;
}

/* Text Selection */
::selection {
    background: var(--primary-color);
    color: var(--white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
    text-shadow: none;
}

input::selection,
textarea::selection {
    background: var(--primary-light);
    color: var(--white);
}

/* Image hover — subtle, no zoom on all images */
img {
    transition: all 0.5s var(--transition-smooth);
}

/* Only apply hover to non-essential images */
.bg-decoration:hover,
.line-img:hover {
    filter: brightness(1.05);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1200px) {
    .climbHeading {
        font-size: 3.5rem;
    }

    .LBN-line {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 40px 40px;
        max-width: 90%;
    }

    .climbHeading {
        font-size: 3rem;
    }

    .climbPar {
        font-size: 1.1rem;
    }

    .image-grid {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 3rem;
    }

    .phone-mockup-wrapper,
    .client-love-wrapper {
        position: relative;
        grid-column: auto;
        grid-row: auto;
        width: 80%;
        max-width: 400px;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-section .row.align-items-center {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 60px !important;
    }

    .testimonials-section .col-lg-6:last-child {
        width: 100%;
    }

    .client-love-wrapper {
        max-width: 280px !important;
    }

    .testimonial-card {
        padding: 30px;
    }

    .padding-between-card {
        padding: 12px !important;
    }

    .LBN-line {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .metricsNum span {
        font-size: 3.5rem;
    }

    .grad-ark-bg {
        width: 40vw;
        min-width: 150px;
        opacity: 0.05;
    }

    .hero-content {
        padding: 40px;
        margin-top: 80px;
    }

    .metricsText:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        gap: 5px !important;
    }

    .hero-content {
        padding: 30px 20px;
        background: rgba(0, 0, 0, 0.45);
        border-radius: var(--radius-md);
    }

    .climbHeading {
        font-size: 2.5rem;
    }

    .climbPar {
        font-size: 1rem;
    }

    .nav-link {
        padding: 10px 0 !important;
        text-align: center;
    }

    .metrics-container {
        padding: 2rem;
    }

    .metricsNum span {
        font-size: 3.5rem;
    }

    .metric-label {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .secondary-text {
        border-left: none;
        border-top: 3px solid var(--primary-light);
        padding-left: 0;
        padding-top: 15px;
        margin-top: 20px;
    }

    .LBN-line {
        font-size: 2.2rem;
        text-align: center;
    }

    .text-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-section {
        padding-left: 0;
        align-items: center;
    }

    .hero-content {
        margin-top: 70px;
        text-align: center;
    }

    .grad-ark-bg {
        display: none;
    }

    .metrics-container {
        padding: 2rem;
    }

    .metricsText {
        margin-bottom: 2rem;
    }

    .metricsText:last-child {
        margin-bottom: 0;
    }

    .q-text {
        padding: 2rem;
    }

    #q-head {
        font-size: 1.8rem;
    }

    .custom-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .section-title::after {
        width: 60px;
    }

    .testimonials-section .row.align-items-center {
        margin-bottom: 50px !important;
    }

    .client-love-wrapper {
        max-width: 240px !important;
    }

    .client-love {
        padding: 15px !important;
        border-radius: var(--radius-md);
    }

    .testimonial-card {
        padding: 25px;
    }

    .padding-between-card {
        padding: 10px !important;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-particles .particle {
        display: none;
    }

    .hero-particles .particle:nth-child(1),
    .hero-particles .particle:nth-child(3),
    .hero-particles .particle:nth-child(5) {
        display: block;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        gap: 4px !important;
    }

    .navbar-brand img {
        height: 40px !important;
    }

    .climbHeading {
        font-size: 2rem;
    }

    .LBN-line {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-section .row.align-items-center {
        margin-bottom: 40px !important;
    }

    .client-love-wrapper {
        max-width: 200px !important;
    }

    .client-love {
        padding: 12px !important;
    }

    .testimonial-card {
        padding: 20px;
    }

    .padding-between-card {
        padding: 8px !important;
    }
}

/* =========================================
   Video Intro Overlay
   ========================================= */
#video-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* Optimize intro video for mobile to avoid cropping content */
@media (max-width: 768px) {
    #intro-video {
        object-fit: contain !important;
        background: transparent !important;
    }

    #video-intro {
        background-color: #f7f7f7 !important;
        /* Matches the video's background color exactly */
    }
}