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

:root {
    --white: #ffffff;
    --green: #98ff2c;
    --maxw: 1200px;
    --bg-2: #0F0F12;
    --surface: #16161B;
    --surface-2: #1C1C23;
    --line: rgba(255, 255, 255, .08);
    --line-strong: rgba(255, 255, 255, .14);
    --accent: #A3E635;
    --accent-bright: #C2F94E;
    --accent-ink: #0A0A0B;
    --violet: #7C3AED;
    --violet-soft: #8B5CF6;
    --text: #F5F5F6;
    --muted: #9CA3AF;
    --muted-2: #6B7280;
    --radius: 18px;
    --radius-lg: 26px;
    --maxw: 1200px;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

body,
html {
    width: 100%;
    background: #111111;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #111111;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

#preloader::before {
    content: '';
    position: absolute;
    top: 60%;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(152, 255, 44, 0.12) 0%, rgba(17, 17, 17, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* Right Side Glowing Soft Purple Spot */
#preloader::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.15) 0%, rgba(17, 17, 17, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* --- Center Preloader Content Wrapper --- */
.preloader-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

/* Logo Sizing Rules & Smooth Breathe Keyframe Setup */
.preloader-logo {
    width: 90px;
    height: 90px;
    opacity: 0;
    transform: scale(0.8);
    animation: logoBreathe 2s ease-in-out infinite alternate;
    animation-delay: 0.3s;
    /* Initial entry fade animation k baad loop shuru hoga */
}

@keyframes logoBreathe {
    0% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 10px rgba(152, 255, 44, 0));
    }

    100% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(152, 255, 44, 0.35));
    }
}

/* --- 1 to 100% Clean Minimal Percentage Typography --- */
.loader-counter {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
    font-variant-numeric: tabular-nums;
    /* Prevents text shaking during calculation number shifts */
    opacity: 0;
    transform: translateY(10px);
}

/* Percentage Sign Styling Rule */
.loader-counter span {
    font-size: 14px;
    font-weight: 400;
    color: #98ff2c;
    margin-left: 2px;
}

.loader-progress-track {
    width: 140px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #98ff2c;
}


html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* Fixed Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 1000;
    background: rgba(17, 17, 17, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, height 0.4s ease;
}

/* Scrolled Active Dynamic Class injected via Javascript scroll trigger hooks */
.navbar.scrolled-active {
    height: 75px;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Left Branding Container */
.logo-container {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Center Navigation Links Anchor System */
.nav-menu-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* Important structural anchor for seamless hover targets */
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    height: 100%;
    align-items: center;
}

.nav-links>li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    /* Lock constraints context boundary hooks */
}

.nav-links>li>a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.75;
    transition: opacity 0.3s ease, color 0.3s ease;
    padding: 10px 0;
}

.nav-links>li:hover>a {
    opacity: 1;
    color: #98ff2c;
}

/* Right CTA Block Element */
.nav-cta-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-cta {
    background-color: #98ff2c;
    color: #111111;
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.04);
    background-color: #a6ff42;
}

/* ==========================================================================
   Premium Full-Width Desktop Mega Menu Styling Architecture
   ========================================================================== */
.has-mega-menu {
    position: static !important;
    /* Forces child absolute alignment mapping grid to full viewport width */
}

.mega-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 50px 8%;

    /* Hidden by default with modern hardware animations */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
    z-index: -1;
}

/* Hover Reveal Rule Trigger link channels */
.has-mega-menu:hover .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 4-Column Grid Alignment Parameters matching categorization indices */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Pillar Service Title Styling */
.mega-menu-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: #98ff2c;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.mega-menu-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Interactive micro services lines design link hooks */
.mega-menu-column ul a {
    color: #cccccc;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 300;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}

.mega-menu-column ul a:hover {
    color: #ffffff;
    padding-left: 4px;
    /* Premium micro-indent visual response effect */
}

/* Hamburger Styles Setup for Desktop overrides */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* ==========================================================================
   Media Queries for Mobile Devices & Mega Menu Adaptability
   ========================================================================== */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 30px;
    }

    .nav-links {
        gap: 25px;
    }

    .mega-menu-panel {
        padding: 40px 4%;
    }

    .mega-menu-grid {
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .hamburger-toggle {
        display: flex;
    }

    .logo-container,
    .nav-cta-right {
        flex: none;
    }

    /* Mobile Dropdown Container Structure */
    .nav-menu-center {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        overflow-y: auto;
        /* Scroll functionality inside menu panel on small viewports */
        background-color: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0;
        border-bottom: 0 solid rgba(255, 255, 255, 0.05);
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu-center.show-menu {
        height: calc(100vh - 80px);
        /* Extends clean layout sizing tracks */
        padding: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        height: auto;
    }

    .nav-links>li {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: auto;
    }

    .nav-links>li>a {
        font-size: 20px;
        font-weight: 600;
        width: 100%;
    }

    /* Desktop CTA hidden on side channels and packed under menu tree list items */
    .nav-cta-right {
        display: none;
    }

    .nav-menu-center .nav-cta-right {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .nav-menu-center .btn-cta {
        width: 100%;
        text-align: center;
    }

    /* --- Mobile Mega Menu Collapsed Accordion Transformation Rules --- */
    .mega-menu-panel {
        position: relative;
        top: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        border-bottom: none;

        /* Accordion collapsed setup settings */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Custom responsive hook class active triggers managed by click selectors */
    .has-mega-menu.mobile-open .mega-menu-panel {
        max-height: 2000px;
        /* Expands bounds clean to hold text array lists */
        margin-top: 15px;
        padding-left: 15px;
        border-left: 1px solid rgba(152, 255, 44, 0.2);
    }

    /* Reset vertical grid tracks from 4 columns to 1 flat stack axis list layer on phones */
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mega-menu-column h4 {
        font-size: 14px;
        color: #ffffff;
        border: none;
        padding-bottom: 0;
    }

    .mega-menu-column ul a {
        font-size: 14px;
        color: #aaaaaa;
    }

    /* Hamburger animation morph transitions */
    .hamburger-toggle.open-icon .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #98ff2c;
    }

    .hamburger-toggle.open-icon .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-toggle.open-icon .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #98ff2c;
    }
}

.logo-container .got-logo {
    width: 190px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.logo-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: #98ff2c;
}

/* Center Nav links area container rule */
.nav-menu-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.75;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: #98ff2c;
}

/* Right Base Action Column Block */
.nav-cta-right {
    flex: 1;
    /* Takes equal space on right to perfectly balance and center link nodes */
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-cta {
    background-color: #98ff2c;
    color: #111111;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.04);
    background-color: #a6ff42;
}

/* --- Bootstrap Styled Hamburger Toggle Button --- */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* ==========================================================================
   Banner Layout Strategy 
   ========================================================================= */
.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #111111;
    overflow: hidden;
}

/* Layer Alignment System */
.banner-bg,
.logo-center,
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bg {
    pointer-events: none;
    z-index: 1;
}

.logo-center {
    z-index: 2;
    pointer-events: auto;
}

.clouds {
    pointer-events: none;
    z-index: 3;
}

.banner-bg img,
.clouds img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Darkening color tint applied on background mountain nodes */
.banner-bg .mount-bg,
.banner-bg .mount-mg {
    filter: brightness(0.5) contrast(1.1);
}

/* Content Copy Layer Layout */
.logo-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.logo-center h1 {
    font-size: 76px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 10px;
}

.logo-center h1 span {
    color: #98ff2c;
}

.logo-center .subtitle {
    font-size: 16px;
    font-weight: 400;
    max-width: 650px;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.logo-center .rating-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.logo-center .stars {
    color: #98ff2c;
    font-size: 22px;
    letter-spacing: 2px;
}

.logo-center .rating-text {
    font-size: 15px;
    opacity: 0.7;
}

/* ==========================================================================
   Gradient Blending Mask (Forces edges to smoothly dissolve)
   ========================================================================= */
.gradient-dark {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background: linear-gradient(to top, #111111 15%, rgba(17, 17, 17, 0) 100%);
    z-index: 4;
    pointer-events: none;
}

/* Interactive Navigation Trigger Arrow */
.arrow-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
}

.arrow-indicator svg {
    width: 30px;
    height: 30px;
    fill: #98ff2c;
    opacity: 0.7;
}

/* Standard Bottom Web Content Sections */
.content-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #111111;
    z-index: 5;
    padding: 120px 50px;
    text-align: center;
}

.content-section h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 40px;
}

/* ==========================================================================
           What Makes Us Better Section Layout 
           ========================================================================== */
.features-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #111111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 4%;
    overflow: hidden;
}

.gotmaxx-features .feat .title {
    font-size: 72px;
}

.gotmaxx-features .feat p {
    font-size: 32px;
}

/* Ambient Purple Glow in Bottom Right Corner */
.features-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.25) 0%, rgba(17, 17, 17, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Inner container to hold alignment structures safely */
.features-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    text-align: center;
}

/* Header / Typography Layout Blocks */
.features-header h2 {
    font-size: 66px;
    font-weight: 300;
    /* Thinner weight for "What Makes Us" */
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.features-header h2 span {
    font-weight: 700;
    /* Thick bold weight for "Better?" */
    color: #98ff2c;
}

.features-header .description {
    font-size: 16px;
    font-weight: 300;
    color: #cccccc;
    max-width: 620px;
    margin: 0 auto 64px auto;
    line-height: 1.6;
    opacity: 0.8;
}

/* Responsive Adaptive Grid System */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

/* Feature Card Elements */
.feature-card {
    background: linear-gradient(135deg, #181818 0%, #141414 100%);
    border: 1px solid #222222;
    border-radius: 20px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 250px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #333333;
}

/* SVG Vector Icon Styling Container */
.icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrap svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    max-width: 200px;
}

/* ==========================================================================
           Our Expertise Section Main Container
           ========================================================================== */
.expertise-section {
    position: relative;
    width: 100%;
    background-color: #111111;
    padding: 120px 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Ambient Green-to-Purple Lateral Gradient Glow Overlay */
.expertise-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -250px;
    width: 600px;
    height: 80%;
    background: linear-gradient(to bottom,
            rgba(152, 255, 44, 0.08) 0%,
            rgba(106, 27, 154, 0.06) 100%);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.expertise-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1140px;
}

/* Section Global Heading */
.expertise-main-title {
    font-size: 54px;
    font-weight: 400;
    text-align: center;
    letter-spacing: -1px;
    margin-bottom: 90px;
    color: #ffffff;
}

/* ==========================================================================
           Alternating Rows Grid System
           ========================================================================== */
.expertise-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 110px;
    width: 100%;
}

/* Alternate direction logic for row 2 (Image on right side) */
.expertise-row.row-reverse {
    flex-direction: row-reverse;
}

.expertise-row:last-child {
    margin-bottom: 0;
}

/* Visual Media Media Content Wrapper */
.expertise-media {
    flex: 1;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    /* Crisp minimal edge matching pdf layouts */
    overflow: hidden;
    background-color: #1a1a1a;
}

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

/* Content Text Column Wrapper */
.expertise-content {
    flex: 1;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tiny Brand Watermark Graphic Component */
.watermark-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.watermark-icon svg {
    width: 100%;
    height: 100%;
}

/* Text Element Typography Classes */
.expertise-content h3 {
    font-size: 38px;
    font-weight: 700;
    color: #98ff2c;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.expertise-content p {
    font-size: 16px;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.6;
    opacity: 0.9;
}

/* Services */
.how-it-works {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0px;
    height: 5000px;
    justify-content: flex-start;
    overflow: visible;
    position: relative;
    width: 100%;
    z-index: 2;
}

.how-it-works .horizontal-scroll {
    align-items: center;
    background-color: var(--horizontal-scroll-bg);
    display: flex;
    gap: 250px;
    height: 100vh;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    position: sticky;
    top: 0;
    width: 100%;
    will-change: transform;
    z-index: 1;
}

.horizontal-container {
    align-items: center;
    background: linear-gradient(90deg, var(--horizontal-scroll-bg) 0%, var(--horizontal-part-gradient));
    display: flex;
    gap: 0px;
    height: 100vh;
    justify-content: flex-start;
    overflow: visible;
    padding: 0;
    position: relative;
    width: min-content;
    z-index: 1;
}

.spacer {
    flex: none;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 400px;
    /* display: none; */
}

.hz-inner-container {
    flex: none;
    height: 100vh;
    overflow: visible;
    position: relative;
    width: 1440px;
}

.image-hiw-1 {
    height: 100vh;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
}

.image-hiw-1 .con-img {
    aspect-ratio: 1.634 / 1;
    flex: none;
    height: 100vh;
    left: -277px;
    overflow: visible;
    position: absolute;
    top: 0;
}

.image-hiw-1 .con-img img {
    transform: perspective(1200px) translateX(-265px);
    height: 100%;
}

.hz-inner-container .screen-hiw {
    align-items: center;
    bottom: 48px;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 16px;
    height: min-content;
    justify-content: flex-start;
    overflow: visible;
    padding: 0;
    position: absolute;
    right: 80px;
    width: 290px;
}

.screen-recording-1 {
    /* aspect-ratio: 0.490 / 1; */
    /* background-color: var(--white); */
    border-radius: 32px;
    box-shadow: var(--screen-box-shadow);
    flex: none;
    height: 591px;
    /* overflow: hidden; */
    position: relative;
    width: 290px;
    display: none;
    will-change: transform;
}

.screen-recording-1 .sr--container,
.screen-recording-1 .sr--container img {
    height: 100%;
}

/* .sr--container {
    inset: -28px 0 0;
    position: absolute;
  } */
.ss-disclaimer {
    flex: none;
    height: auto;
    position: relative;
    width: auto;
    z-index: 1;
}

.ss-disclaimer p {
    font-size: 20px;
    line-height: 24px;
    color: rgba(0, 0, 0.32);
}

.hz-inner-container .copy {
    align-items: flex-start;
    top: 48px;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    height: min-content;
    justify-content: flex-start;
    left: 380px;
    overflow: visible;
    padding: 0;
    position: absolute;
    width: min-content;
}

.main-text {
    align-items: flex-start;
    align-self: stretch;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: 370px;
    justify-content: flex-start;
    overflow: visible;
    padding: 0;
    position: relative;
    width: auto;
    text-align: left;
    top: 100px;
}

.main-text .big-text {
    flex: none;
    /* height: 210px; */
    mix-blend-mode: screen;
    position: relative;
    /* white-space: pre; */
    width: 600px;
    z-index: 1;
}

.main-text h1 {
    font-size: 70px;
    width: 100%;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0em;
    line-height: 100%;
    color: var(--primary-color)
}

.text-desc {
    flex: none;
    height: auto;
    position: relative;
    width: 300px;
    word-break: break-word;
    word-wrap: break-word;
}

.text-desc p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.5em;
}

.framer-81g2H {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    height: min-content;
    overflow: visible;
    padding: 0;
    position: relative;
    text-decoration: none;
    width: min-content;
    width: 100%;
    justify-content: flex-end;
    transition: all ease 0.5s;
}

.framer-81g2H button {
    background-color: var(--btn-rgb);
    border-radius: 40px;
    box-shadow: var(--btn-box-shadow) 0px 16px 24px 0px;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0px;
    height: 32px;
    justify-content: center;
    overflow: visible;
    padding: 32px;
    position: relative;
    width: 30px;
    border: none;
    transition: all ease 0.5s;
}

.framer-160s5au {
    fill: rgb(251, 202, 168);
    color: rgb(251, 202, 168);
    transform: none;
    transform-origin: 50% 50% 0px;
    opacity: 1;
    flex: none;
    height: 32px;
    position: relative;
    width: 30px;
}

.framer-160s5au .svgContainer svg {
    width: 35px;
    fill: rgb(251, 202, 168);
}

.framer-1mzgtie {
    flex: none;
    height: auto;
    display: inline-block;
}

.framer-1mzgtie p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 24px;
    color: var(--white);
    margin: 0;
}

/* .framer-81g2H:hover button {
    background-color: var(--hover-brown);
} */

.btn-animation {
    z-index: 1;
    position: relative;
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-left: 10px;
    box-shadow: none;
    text-decoration: none;
    font-weight: 600;
    color: var(--white);
}

.bg-dark .btn-animation i {
    background: var(--white);
}

.btn-animation i {
    display: inline-block;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    background: var(--white);
    color: var(--white);
    border-radius: 50%;
    transform: scale(0);
    margin-right: 10px;
    transition: all 0.35s ease-in-out;

}

.btn-animation span {
    transition: all 0.35s ease-in-out;
    left: -50px;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-animation::after {
    position: absolute;
    left: -13px;
    top: 0;
    content: "";
    height: 60px;
    width: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.35s ease-in-out;
    transform: scale(1);
    z-index: -1;
}

.btn-animation:hover i {
    transform: scale(1);
    color: #0a0a0a;
}

.btn-animation:hover span {
    left: 0;
}

.btn-animation:hover::after {
    transform: scale(0);
}

/* ==========================================================================
           Marquee Section Wrapper
           ========================================================================== */

/* Marquee section */
.marqueesection {
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0px;
    min-height: 100vh;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 2;
    background: var(--btn-rgb);
}

.marqueesection h2 {
    color: var(--white);
    font-size: 7vw;
    font-weight: 900;
    display: inline-block;
}

.marqueesection .ph-crosshair {
    color: var(--crosshair);
    font-size: 62px;
}

.moving-area {
    white-space: nowrap;
    overflow-x: auto;
}

.moving-area::-webkit-scrollbar {
    display: none;
}

.moving-container {
    white-space: nowrap;
    display: inline-block;
    animation: move 80s linear infinite;
}

.gotmaxx-icon {
    width: 72px;
    height: 72px;
    margin: 0 3vw;
}

.moving-area2 .moving-container {
    animation: move 60s linear infinite;
}

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

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

.bottom-copy {
    /* max-width: unset; */
    align-items: center;
    display: flex;
    gap: 0px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding: 56px 56px 0;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.bottom-copy h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.4em;
    color: var(--white);
    text-align: center;
}


/* ==========================================================================
   Luxury Testimonials - Adaptive Architecture Base Styles
   ========================================================================== */
.testimonials-section {
    position: relative;
    width: 100%;
    background-color: #111111;
    padding: 130px 0;
    overflow: hidden;
}

.testimonial-desktop-marquee-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.18) 0%, rgba(17, 17, 17, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

/* Symmetric Side Overlays (Left & Right Deep Blur Masks) */
.testimonial-desktop-marquee-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, #111111 20%, rgba(17, 17, 17, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

.testimonial-desktop-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(to left, #111111 20%, rgba(17, 17, 17, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

.testimonial-slider-wrapper-mask-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, #111111 20%, rgba(17, 17, 17, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

.testimonial-slider-wrapper-mask-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(to left, #111111 20%, rgba(17, 17, 17, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

.testimonials-header-title {
    text-align: center;
    font-size: 54px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 60px;
}

/* Base Card Object Styles (Equal Heights Framework) */
.testimonial-card {
    background-color: #161616;
    border: 1px solid #222222;
    border-radius: 24px;
    padding: 40px;
    width: 680px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    transition: border-color 0.3s, background-color 0.3s;
}

.testimonial-card:hover {
    border-color: #2b2b2b;
    background-color: #181818;
}

.testimonial-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    width: 100%;
}

.client-profile-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #281b3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-avatar svg {
    width: 24px;
    height: 24px;
}

.client-info h4 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.client-info p {
    font-size: 22px;
    font-weight: 500;
    color: #98ff2c
}

.rating-stars {
    color: #98ff2c;
    font-size: 30px;
    letter-spacing: 2px;
}

.testimonial-body-text {
    font-size: 22px;
    font-weight: 300;
    color: #cccccc;
    line-height: 1.7;
    opacity: 0.95;
    flex-grow: 1;
}

/* ==========================================================================
   ENGINE A: PURE DESKTOP MARQUEE CONTROLS (Widescreens Only)
   ========================================================================== */
@media (min-width: 851px) {
    .testimonial-mobile-slick-wrapper {
        display: none !important;
        /* Completely blocks slick overhead code on desktop */
    }

    .testimonial-desktop-marquee-wrapper {
        width: 100%;
        overflow: hidden;
        display: block;
    }

    .testimonial-marquee-track {
        display: flex;
        gap: 35px;
        width: max-content;
        /* Custom pure infinite CSS loop marquee animation */
        animation: desktopMarqueeRun 28s linear infinite;
    }

    .testimonial-desktop-marquee-wrapper:hover .testimonial-marquee-track {
        /* Buttery smooth marquee pause on hover */
        animation-play-state: paused;
    }

    .testimonial-desktop-marquee-wrapper .testimonial-card {
        width: 600px;
        min-height: 290px;
        flex-shrink: 0;
    }

    @keyframes desktopMarqueeRun {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 17.5px));
        }

        /* Infinite offset matching math gaps */
    }
}

/* ==========================================================================
   ENGINE B: MOBILE SLICK SLIDER CONTROLS (Tablets & Mobile Phones)
   ========================================================================== */
@media (max-width: 850px) {
    .testimonials-header-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .testimonial-desktop-marquee-wrapper {
        display: none !important;
        /* Kills bulky desktop layouts loops on phones */
    }

    .testimonial-mobile-slick-wrapper {
        display: block;
        width: 100%;
        padding: 0 20px;
    }

    .mobile-slick-slide {
        padding: 10px;
        outline: none;
    }

    .testimonial-mobile-slick-wrapper .testimonial-card {
        width: 100%;
        min-height: 260px;
    }

    /* Slick Mobile Dot Custom Styles */
    .testimonial-mobile-slick-wrapper .slick-dots {
        position: relative;
        margin-top: 35px;
        display: flex !important;
        justify-content: center;
        gap: 10px;
        list-style: none;
        padding: 0;
    }

    .testimonial-mobile-slick-wrapper .slick-dots li button {
        width: 24px;
        height: 4px;
        padding: 0;
        background-color: #262626 !important;
        border-radius: 2px;
        border: none;
        font-size: 0;
        cursor: pointer;
        transition: background-color 0.4s ease;
    }

    .testimonial-mobile-slick-wrapper .slick-dots li.slick-active button {
        background-color: #98ff2c !important;
        /* Accent green glow tracker dots */
    }
}

/* ==========================================================================
           Contact Us Section Layout
           ========================================================================== */
.contact-section {
    position: relative;
    width: 100%;
    background-color: #111111;
    padding: 140px 8%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

/* --- Left Column: Typography Heading Stack --- */
.contact-heading-box {
    flex: 1;
    max-width: 500px;
}

.contact-heading-box h2 {
    font-size: 72px;
    font-weight: 600;
    /* Thinner weight for "Ready to Take Your Brand to the" */
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
}

.contact-heading-box h2 span {
    font-weight: 800;
    /* Extra bold highlight for "Next Level?" */
    color: #98ff2c;
    display: block;
    margin-top: 10px;
}

/* --- Right Column: Minimalist Form System --- */
.contact-form-box {
    flex: 1.2;
    width: 100%;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 2-Column Row Block for inputs */
.form-row {
    display: flex;
    gap: 40px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Full width rows like Message field */
.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.2px;
}

/* Required Star Indicator Color */
.form-group label span.required-star {
    color: #ff4a4a;
    font-weight: 700;
    margin-left: 2px;
}

/* Premium Input Underline Field Layout */
.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333333;
    /* Soft underlying element border line */
    padding: 10px 0 16px 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.4s ease;
}

/* Dynamic interaction focus state */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #98ff2c;
    /* Highlights green on selection */
}

.form-group textarea {
    resize: none;
    height: 50px;
    /* Aligns with input field presentation sizes */
}

/* Custom Placeholder Coloring Styles */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #444444;
    opacity: 1;
}

.main-footer {
    position: relative;
    width: 100%;
    background-color: #f4f4f4;
    /* Clean premium light theme canvas background */
    padding: 100px 6% 40px 6%;
    color: #1e1e1e;
    /* Dark elegant charcoal for typography readability */
    border-top: 1px solid #e2e2e2;
}

.footer-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* --- Top Row: Branding vs Catchy Headline --- */
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
}

/* Left Side: Brand Branding Details */
.footer-brand-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0px;
    text-decoration: none;
}

.footer-logo-icon {
    width: 52px;
    height: 52px;
}

.footer-logo-text {
    color: #1e1e1e;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -0.5px;
}

.footer-logo-text span {
    color: #76cc1e;
    /* Vibrant forest tone highlight optimized for crisp light canvas views */
}

/* Quick Urgent Call UI Component Wrap */
.footer-call-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-phone-link {
    font-size: 32px;
    font-weight: 800;
    color: #1e1e1e;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

/* Country Code Accent Highlights */
.footer-phone-link span {
    color: #76cc1e;
}

.footer-phone-link:hover {
    color: #76cc1e;
}

.footer-call-sub {
    font-size: 14px;
    font-weight: 400;
    color: #777777;
}

/* Right Side: Major Headline Block */
.footer-headline-column {
    flex: 1.3;
    max-width: 620px;
}

.footer-headline-column h3 {
    font-size: 48px;
    font-weight: 400;
    /* Clean thin structure matching original designs */
    line-height: 1.2;
    letter-spacing: -1px;
    color: #1e1e1e;
}

.footer-headline-column h3 span {
    font-weight: 800;
    color: #76cc1e;
}

.footer-middle-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 100%;
    max-width: 620px;
}

.links-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.links-column h4 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: #1e1e1e;
    letter-spacing: 1px;
}

.links-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-column p,
.links-column ul a {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-column ul a:hover {
    color: #76cc1e;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e2e2;
    padding-top: 40px;
    width: 100%;
}

.copyright-text {
    font-size: 13px;
    color: #888888;
    font-weight: 400;
}

.footer-utility-nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-utility-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-utility-nav a:hover {
    color: #1e1e1e;
}

.features-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Strict resets taaki upar ya niche wale pinned layout borders space break na karein */
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

.features-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.features-header {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    will-change: transform, opacity;
}

.features-header h2 {
    font-size: 54px;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.2;
}

.features-header h2 span {
    font-weight: 800;
    color: #98ff2c;
}

.gotmaxx-features {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feat {
    position: absolute;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;

    /* Initial State */
    opacity: 0;
    transform: translateY(120px);
    will-change: transform, opacity;
}

.feat .title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.feat p {
    font-size: 18px;
    font-weight: 300;
    color: #cccccc;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-container {
        padding: 0 30px;
    }

    .features-header h2 {
        font-size: 38px;
    }

    .feat .title {
        font-size: 26px;
    }

    .feat p {
        font-size: 15px;
        max-width: 90%;
    }
}

#reveal-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0b0b0b;
    z-index: 999;
    pointer-events: none;
    transform: translateY(0);
}

.blogs-section {
    position: relative;
    width: 100%;
    background-color: #111111;
    padding: 130px 0;
    overflow: hidden;
}

.blogs-container {
    width: 100%;
    position: relative;
}

.blogs-header {
    text-align: center;
    padding: 0 6%;
    margin-bottom: 55px;
}

.blogs-header h2 {
    font-size: 54px;
    font-weight: 300;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 16px;
}

.blogs-header h2 span {
    font-weight: 800;
    color: #98ff2c;
}

.blogs-header .subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #aaaaaa;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Container setup */
.blog-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 5%;
}

/* Side Masks fading cards cleanly into black background canvas */
.blog-mask-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 8%;
    height: 100%;
    background: linear-gradient(to right, #111111 20%, rgba(17, 17, 17, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

.blog-mask-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 8%;
    height: 100%;
    background: linear-gradient(to left, #111111 20%, rgba(17, 17, 17, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

/* Slick Slide Wrapper Shell Item padding fixing gaps */
.blog-slide-item {
    padding: 15px;
    /* Creates identical horizontal card gutter space gaps */
    outline: none;
}

/* Luxury Blog Card Styles */
.blog-card {
    background-color: #161616;
    border: 1px solid #222222;
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    /* Sits fluid inside slick track layout width fields */
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: #2b2b2b;
}

.blog-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.06);
}

.blog-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(10px);
    color: #98ff2c;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 30px;
}

.blog-meta-row {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    font-weight: 500;
}

.blog-meta-row .read-time {
    color: #888888;
    position: relative;
}

.blog-meta-row .read-time::before {
    content: '•';
    margin-right: 12px;
    color: #444444;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 56px;
    transition: color 0.3s;
}

.blog-card:hover .blog-title {
    color: #98ff2c;
}

.blog-excerpt {
    font-size: 14px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
}

.blog-read-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-read-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-read-btn {
    color: #98ff2c;
}

.blog-card:hover .blog-read-btn svg {
    transform: translateX(5px);
}

/* Customizing Slick Dots to look premium like the Gotmaxx UI */
.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 40px;
    display: flex !important;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.slick-dots li button {
    width: 24px;
    height: 4px;
    padding: 0;
    background-color: #262626 !important;
    border-radius: 2px;
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.slick-dots li.slick-active button {
    background-color: #98ff2c !important;
    /* Glow active highlight dot line */
}

/* About us */
.about-page-wrapper {
    padding-top: 100px;
}

/* ==========================================================================
   Hero Header Section
   ========================================================================== */
.about-hero {
    position: relative;
    padding: 120px 8% 60px 8%;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(152, 255, 44, 0.04) 0%, rgba(17, 17, 17, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
}

.tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #98ff2c;
    margin-bottom: 20px;
    display: inline-block;
}

.about-hero h1 {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 35px auto;
}

.about-hero h1 span {
    font-weight: 800;
    color: #98ff2c;
}

.about-hero .hero-lead {
    font-size: 20px;
    font-weight: 300;
    color: #cccccc;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   NEW MODULE: CINEMATIC FULL-WIDTH HERO IMAGE
   ========================================================================== */
.about-hero-banner {
    width: 100%;
    padding: 0 8% 60px 8%;
    max-width: 1440px;
    margin: 0 auto;
}

.banner-inner-frame {
    width: 100%;
    height: 520px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.banner-inner-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.85);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.banner-inner-frame:hover img {
    transform: scale(1.03);
}

/* Ambient bottom lighting accent */
.banner-inner-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.5), transparent);
    pointer-events: none;
}

/* ==========================================================================
   Split Layout Rows (Who We Are & What We Do)
   ========================================================================== */
.about-split-section {
    padding: 120px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #111111;
}

.split-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    /* Centered alignment transforms cards view nicely */
}

/* Sub-image asset frames inside rows text blocks */
.split-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Pure luxury square structure geometric layout */
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.split-left h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.split-left h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #98ff2c;
    border-radius: 2px;
}

.split-right p {
    font-size: 16px;
    font-weight: 300;
    color: #aaaaaa;
    margin-bottom: 24px;
}

.split-right p strong {
    color: #ffffff;
    font-weight: 500;
}

/* ==========================================================================
   Our Approach (Luxury Modular Cards Grid)
   ========================================================================== */
.approach-section {
    padding: 120px 8%;
    background-color: #141414;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header-center {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 16px;
    color: #888888;
    font-weight: 300;
}

.approach-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.approach-card {
    background-color: #111111;
    border: 1px solid #222222;
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s;
}

.approach-card:hover {
    transform: translateY(-8px);
    border-color: #333333;
}

.approach-card .card-num {
    font-size: 14px;
    font-weight: 600;
    color: #98ff2c;
    margin-bottom: 25px;
    display: block;
    opacity: 0.7;
}

.approach-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.approach-card p {
    font-size: 14px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.6;
}

/* ==========================================================================
   Why Choose Us & Vision/Mission Stacks
   ========================================================================== */
.vision-mission-section {
    padding: 120px 8%;
    background: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dual-stack-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.why-choose-box h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.why-choose-box p {
    font-size: 16px;
    font-weight: 300;
    color: #aaaaaa;
    margin-bottom: 20px;
}

.vm-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    position: relative;
}

.vm-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #98ff2c;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.vm-card p {
    font-size: 15px;
    font-weight: 300;
    color: #cccccc;
    line-height: 1.6;
}

/* ==========================================================================
   Epic Editorial Outro Statement Block
   ========================================================================== */
.about-outro-statement {
    padding: 140px 8%;
    background-color: #0b0b0b;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.about-outro-statement::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.03) 0%, rgba(11, 11, 11, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
}

.outro-container {
    max-width: 950px;
    margin: 0 auto;
}

.outro-container p {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -1px;
    color: #ffffff;
}

.outro-container p span {
    color: #98ff2c;
}

/* ==========================================================================
   Media Queries for Perfect Cross-Device Responsiveness
   ========================================================================== */
@media (max-width: 1100px) {
    .about-hero h1 {
        font-size: 48px;
    }

    .banner-inner-frame {
        height: 400px;
    }

    .split-grid,
    .dual-stack-grid {
        gap: 50px;
    }

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

    .outro-container p {
        font-size: 26px;
    }
}

@media (max-width: 850px) {
    .about-hero {
        padding: 80px 6% 40px 6%;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero .hero-lead {
        font-size: 17px;
    }

    .about-hero-banner {
        padding: 0 6% 40px 6%;
    }

    .banner-inner-frame {
        height: 300px;
        border-radius: 20px;
    }

    .split-grid,
    .dual-stack-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-image-container {
        aspect-ratio: 16 / 9;
        /* Drop squares to cinematic wide on small screens */
    }

    .about-split-section,
    .approach-section,
    .vision-mission-section,
    .about-outro-statement {
        padding: 80px 6%;
    }

    .split-left h2,
    .section-header-center h2,
    .why-choose-box h2 {
        font-size: 32px;
    }
}

@media (max-width: 550px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 30px;
    }

    .outro-container p {
        font-size: 20px;
        line-height: 1.6;
    }
}

/* ---------- Technology We Master ---------- */
.tech {
    background: radial-gradient(60% 70% at 86% 12%, rgba(124, 58, 237, .13), transparent 60%), var(--bg)
}

.tech-panel {
    display: grid;
    grid-template-columns: 248px 1fr;
    gap: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
    margin-top: 56px
}

.tech-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-right: 1px solid var(--line);
    padding-right: 22px
}

.ttab {
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: color .25s, background .25s;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.ttab:hover {
    color: var(--text);
    background: var(--surface-2)
}

.ttab.active {
    background: rgba(163, 230, 53, .12);
    color: var(--accent)
}

.ttab .c {
    font-size: 12px;
    color: var(--muted-2);
    font-weight: 600
}

.ttab.active .c {
    color: var(--accent)
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-content: start
}

.tchip {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    transition: transform .3s var(--ease), border-color .3s;
    animation: techIn .45s var(--ease) both
}

.tchip:hover {
    border-color: var(--accent);
    transform: translateY(-3px)
}

.tchip .mono {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(163, 230, 53, .1);
    color: var(--accent);
    font-size: 12.5px;
    font-weight: 700;
    flex: none;
    letter-spacing: .5px;
    transition: background .3s, color .3s
}

.tchip:hover .mono {
    background: var(--accent);
    color: var(--accent-ink)
}

.tchip.hide {
    display: none
}

@keyframes techIn {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.legal-page-wrapper {
    padding-top: 100px;
}

.legal-header {
    position: relative;
    padding: 100px 8% 40px 8%;
    text-align: center;
}

.legal-header::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 30%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(152, 255, 44, 0.03) 0%, rgba(17, 17, 17, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
}

.legal-header h1 {
    font-size: 54px;
    font-weight: 300;
    letter-spacing: -1.5px;
    margin-bottom: 10px;
}

.legal-header h1 span {
    font-weight: 800;
    color: #98ff2c;
}

.legal-content-container {
    max-width: 1200px;
    margin: 0 auto 120px auto;
    padding: 0 24px;
}

.last-updated {
    font-size: 13px;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    display: block;
    font-weight: 500;
    text-align: center;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 45px 0 20px 0;
    letter-spacing: -0.5px;
}

.legal-content p {
    font-size: 15px;
    font-weight: 300;
    color: #aaaaaa;
    margin-bottom: 25px;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 10px;
}

.legal-content ul li {
    font-size: 15px;
    font-weight: 300;
    color: #aaaaaa;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.legal-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #98ff2c;
    font-size: 18px;
    top: -2px;
}

.legal-content a {
    color: #98ff2c;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.legal-content a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 38px;
    }

    .legal-content h2 {
        font-size: 20px;
        margin: 35px 0 15px 0;
    }

    .legal-content p,
    .legal-content ul li {
        font-size: 14px;
    }
}

.social-icons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666666;
    /* Base soft luxury gray */
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Icon Shell Round Frame */
.icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    /* Soft blending layer */
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #888888;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.icon-box svg {
    width: 16px;
    height: 16px;
}

/* --- DYNAMIC BRAND HOVER STATES --- */

/* 1. Instagram: Premium Purple-Pink-Orange Radial Mesh Gradient */
.instagram-link:hover {
    color: #ffffff;
}

/* 2. LinkedIn: Official Corporate Blue (#0077B5) */
.linkedin-link:hover {
    color: #ffffff;
}


/* 3. Facebook: Official Classic Blue (#1877F2) */
.facebook-link:hover {
    color: #ffffff;
}

.listing-page-wrapper {
    padding-top: 100px;
    /* Space compensation for your fixed navbar */
}

/* ==========================================================================
   1. Core Grid Framework Structure
   ========================================================================== */
.listing-layout-grid {
    max-width: 1300px;
    margin: 60px auto 120px auto;
    /* padding: 0 4%; */
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    /* Asymmetric balance layout ratio scales */
    gap: 50px;
    align-items: flex-start;
}

/* ==========================================================================
   2. Main Stream Articles Feed Architecture 
   ========================================================================== */
.blog-articles-feed {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.listing-feed-card {
    background-color: #161616;
    border: 1px solid #222222;
    border-radius: 24px;
    padding: 24px;
    transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.listing-feed-card:hover {
    border-color: #2b2b2b;
    transform: translateY(-4px);
}

.feed-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feed-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.listing-feed-card:hover .feed-img-box img {
    transform: scale(1.03);
}

.feed-category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #98ff2c;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 30px;
}

.feed-meta-row {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    font-weight: 500;
}

.feed-meta-row span strong {
    color: #888888;
}

.feed-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.listing-feed-card:hover .feed-title {
    color: #98ff2c;
}

.feed-excerpt {
    font-size: 15px;
    font-weight: 300;
    color: #aaaaaa;
    margin-bottom: 24px;
}

.feed-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.feed-read-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.listing-feed-card:hover .feed-read-link {
    color: #98ff2c;
}

.listing-feed-card:hover .feed-read-link svg {
    transform: translateX(5px);
}

/* Infinite loader spinner anchor target point */
.infinite-scroll-trigger-node {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    color: #555555;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   3. Premium Minimalist Sidebar Utility Widgets
   ========================================================================== */
.journal-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 120px;
    /* Sidebar locked in focus viewport scroll positions */
}

/* Search Shell UI */
.sidebar-widget-card {
    background-color: #161616;
    border: 1px solid #222222;
    border-radius: 20px;
    padding: 24px;
}

.sidebar-widget-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sidebar-search-field-box {
    position: relative;
    width: 100%;
}

.sidebar-search-field-box input {
    width: 100%;
    background-color: #111111;
    border: 1px solid #2b2b2b;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease;
}

.sidebar-search-field-box input:focus {
    border-color: #98ff2c;
}

/* --- Dynamic Tab Navigation Structure --- */
.sidebar-tabs-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #111111;
    border: 1px solid #222222;
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.s-tab-btn {
    background: transparent;
    border: none;
    color: #777777;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
}

.s-tab-btn:hover {
    color: #ffffff;
}

.s-tab-btn.active-s-tab {
    background-color: #1c1c1c;
    color: #98ff2c;
}

/* Tabs Content Area List items hooks */
.sidebar-pane-content {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.sidebar-pane-content.active-pane {
    display: flex;
}

.sidebar-list-item-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 12px;
}

.sidebar-list-item-link:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-list-item-link h4 {
    font-size: 14px;
    font-weight: 500;
    color: #dddddd;
    line-height: 1.4;
    transition: color 0.25s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-list-item-link:hover h4 {
    color: #98ff2c;
}

.sidebar-list-item-link span {
    font-size: 11px;
    color: #555555;
    font-weight: 500;
}

/* ==========================================================================
   4. Cross Device Responsive Framework Adjustments
   ========================================================================== */
@media (max-width: 1024px) {
    .listing-layout-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .journal-sidebar-stack {
        position: static;
    }
}

@media (max-width: 768px) {
    .feed-title {
        font-size: 20px;
    }

    .feed-meta-row {
        gap: 12px;
        font-size: 11px;
    }
}

.detail-page-wrapper {
    padding-top: 100px;
    /* Space compensation for your fixed navbar */
}

/* ==========================================================================
           1. Core Grid Framework Structure (Identical to Listing Page Grid)
           ========================================================================== */
.detail-layout-grid {
    max-width: 1300px;
    margin: 60px auto 120px auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    /* Exact matching scale loops */
    gap: 50px;
    align-items: flex-start;
}

/* ==========================================================================
           2. Premium Editorial Article Workspace Styles
           ========================================================================== */
.editorial-article-container {
    background-color: #161616;
    border: 1px solid #222222;
    border-radius: 24px;
    padding: 40px;
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.art-category-tag {
    color: #98ff2c;
    background: rgba(152, 255, 44, 0.08);
    padding: 4px 14px;
    border-radius: 30px;
    border: 1px solid rgba(152, 255, 44, 0.15);
}

.art-date-tag {
    color: #666666;
}

.article-main-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 35px;
}

.article-hero-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 40px;
}

.article-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Editorial Body Content Styles */
.rich-text-body-content {
    font-size: 16px;
    font-weight: 300;
    color: #cccccc;
}

.rich-text-body-content p {
    margin-bottom: 25px;
}

.rich-text-body-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 40px 0 15px 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Soft green geometric indicators before secondary headings */
.rich-text-body-content h3::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #98ff2c;
    border-radius: 50%;
    display: inline-block;
}

.rich-text-body-content blockquote {
    border-left: 2px solid #98ff2c;
    padding: 10px 0 10px 24px;
    margin: 35px 0;
    font-style: italic;
    font-size: 18px;
    color: #ffffff;
    background: linear-gradient(to right, rgba(152, 255, 44, 0.01), transparent);
}

/* ==========================================================================
           3. Premium Minimalist Sidebar Utility Widgets (Symmetrical Copy)
           ========================================================================== */
.journal-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 120px;
    /* Locked in viewport focus during scrolls */
}

.sidebar-widget-card {
    background-color: #161616;
    border: 1px solid #222222;
    border-radius: 20px;
    padding: 24px;
}

.sidebar-widget-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sidebar-search-field-box {
    position: relative;
    width: 100%;
}

.sidebar-search-field-box input {
    width: 100%;
    background-color: #111111;
    border: 1px solid #2b2b2b;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease;
}

.sidebar-search-field-box input:focus {
    border-color: #98ff2c;
}

.sidebar-tabs-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #111111;
    border: 1px solid #222222;
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.s-tab-btn {
    background: transparent;
    border: none;
    color: #777777;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
}

.s-tab-btn:hover {
    color: #ffffff;
}

.s-tab-btn.active-s-tab {
    background-color: #1c1c1c;
    color: #98ff2c;
}

.sidebar-pane-content {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.sidebar-pane-content.active-pane {
    display: flex;
}

.sidebar-list-item-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 12px;
}

.sidebar-list-item-link:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-list-item-link h4 {
    font-size: 14px;
    font-weight: 500;
    color: #dddddd;
    line-height: 1.4;
    transition: color 0.25s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-list-item-link:hover h4 {
    color: #98ff2c;
}

.sidebar-list-item-link span {
    font-size: 11px;
    color: #555555;
    font-weight: 500;
}

/* ==========================================================================
           4. Cross Device Responsive Framework Adjustments
           ========================================================================== */
@media (max-width: 1024px) {
    .detail-layout-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .journal-sidebar-stack {
        position: static;
    }
}

@media (max-width: 768px) {
    .editorial-article-container {
        padding: 24px;
        border-radius: 16px;
    }

    .article-main-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .rich-text-body-content h3 {
        font-size: 18px;
    }
}

.contact-page-wrapper {
    padding-top: 100px;
    /* Spacing compensation for your fixed navbar navigation bar */
}

/* ==========================================================================
   1. Top Info Core Deck Cards Framework 
   ========================================================================== */
.info-cards-deck {
    max-width: 1240px;
    margin: 60px auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-info-card {
    background-color: #161616;
    border: 1px solid #222222;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: border-color 0.3s, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-info-card:hover {
    border-color: #333333;
    transform: translateY(-4px);
}

/* Dynamic SVG Micro Brand Accent Icons */
.card-icon-sphere {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #98ff2c;
    /* Brand Accent color initialization */
    transition: background-color 0.3s, color 0.3s;
}

.contact-info-card:hover .card-icon-sphere {
    background-color: #98ff2c;
    color: #111111;
}

.card-icon-sphere svg {
    width: 22px;
    height: 22px;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    font-weight: 300;
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.25s;
}

.contact-info-card a:hover {
    color: #98ff2c;
}

/* ==========================================================================
   2. Lower Interactive Mapping Split Canvas Blocks
   ========================================================================== */
.interactive-split-canvas {
    max-width: 1240px;
    margin: 0 auto 120px auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* Symmetrical viewport split lines */
    gap: 40px;
}

/* Embedded Dynamic Google Maps Framework Shell */
.embedded-map-shell {
    width: 100%;
    height: 540px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #222222;
    background-color: #161616;
}

.embedded-map-shell iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.92) contrast(1.1);
    /* Luxurious matching dark map filter styles */
}

/* Pure Lead Form Wrapper Blocks */
.luxury-lead-form-panel {
    background-color: #161616;
    border: 1px solid #222222;
    border-radius: 24px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-heading-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.form-heading-block p {
    font-size: 14.5px;
    font-weight: 300;
    color: #888888;
    margin-bottom: 35px;
}

/* Form Grid Components Inputs Mesh fields */
.inputs-fields-mesh-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.input-wrapper-node {
    position: relative;
    width: 100%;
}

.input-wrapper-node input,
.input-wrapper-node textarea {
    width: 100%;
    background-color: #111111;
    border: 1px solid #2b2b2b;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Focus Neon lines updates triggers */
.input-wrapper-node input:focus,
.input-wrapper-node textarea:focus {
    border-color: #98ff2c;
    box-shadow: 0 0 0 1px rgba(152, 255, 44, 0.15);
}

/* Full width textarea bounding parameters link rows */
.full-width-row-node {
    grid-column: span 2;
}

.input-wrapper-node textarea {
    resize: none;
    height: 120px;
}

/* Core High Performance Submit Call-To-Action Button */
.submit-action-btn {
    background-color: #98ff2c;
    color: #111111;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    align-self: flex-start;
    transition: transform 0.3s, background-color 0.3s;
}

.submit-action-btn:hover {
    transform: scale(1.03);
    background-color: #a6ff42;
}

/* ==========================================================================
   3. Cross-Device Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
    .info-cards-deck {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .interactive-split-canvas {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .embedded-map-shell {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .luxury-lead-form-panel {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .form-heading-block h2 {
        font-size: 26px;
    }

    .inputs-fields-mesh-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .full-width-row-node {
        grid-column: span 1;
    }

    .submit-action-btn {
        width: 100%;
        text-align: center;
    }
}