html,
body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary-color: #0e3c3c;
    /* Dark Teal */
    --primary-dark: #072525;
    --secondary-color: #c5a059;
    /* Gold */
    --accent-color: #a3c1ad;
    /* Sage Green */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7f6;
    --bg-white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --section-padding: 100px 0;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    color: var(--text-light);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    filter: brightness(110%);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-accent:hover {
    background-color: #bfe0ca;
}

.btn-block {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 10px 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.announcement-bar a {
    text-decoration: underline;
    font-weight: 700;
}

/* Header */
header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo span {
    color: var(--secondary-color);
}

header nav ul {
    display: flex;
    gap: 30px;
}

header nav a {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.95rem;
}

header nav a:hover {
    color: var(--secondary-color);
}

/* Dropdown Styles */
header nav ul li {
    position: relative;
    padding: 15px 0;
}

header nav ul li i {
    font-size: 0.75rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: var(--primary-color);
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

header nav ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

header nav ul li:hover i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    padding: 80px 0 120px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-small {
    padding: 100px 0 80px;
    background-color: var(--primary-color);
    color: var(--text-light);
    position: relative;
}

.hero-small h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-small .lead {
    font-size: 1.25rem;
    max-width: 700px;
    opacity: 0.9;
}

/* Hero with Image Overlay */
.hero-with-image {
    position: relative;
    padding: 140px 0;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Default dark primary for fallback */
    background-color: var(--primary-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(14, 60, 60, 0.95) 0%, rgba(14, 60, 60, 0.7) 50%, rgba(14, 60, 60, 0.3) 100%);
    z-index: 1;
}

.hero-with-image .container {
    position: relative;
    z-index: 2;
}

.hero-with-image h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-with-image .lead {
    font-size: 1.3rem;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Sub-page Sections */
.section-light {
    background-color: var(--bg-white);
    padding: var(--section-padding);
}

.section-alt {
    background-color: var(--bg-light);
    padding: var(--section-padding);
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--section-padding);
}

.limit-width {
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
}

.process-list {
    counter-reset: process-counter;
    /* Initialize counter */
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.process-list li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.process-list li::before {
    counter-increment: process-counter;
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
}

.process-list h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Content Blocks */
.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-block ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-block ul li {
    margin-bottom: 10px;
}

/* Text Highlights */
.text-gold {
    color: var(--secondary-color);
}


.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.highlight {
    color: var(--secondary-color);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.trustpilot-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.trustpilot-link i {
    color: #00b67a;
    /* Trustpilot green */
}

/* Updated Hero Visual Sizing & Response */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Global Finance Visualization */
.global-finance {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.globe-container {
    position: relative;
    width: 350px;
    height: 350px;
    transform-style: preserve-3d;
    animation: globeFloat 6s ease-in-out infinite;
}

.globe-sphere {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
            rgba(197, 160, 89, 0.15) 0%,
            rgba(14, 60, 60, 0.3) 50%,
            rgba(7, 37, 37, 0.5) 100%);
    border: 2px solid rgba(197, 160, 89, 0.3);
    box-shadow:
        0 0 40px rgba(197, 160, 89, 0.2),
        inset 0 0 60px rgba(14, 60, 60, 0.4);
    animation: globeRotate 30s linear infinite;
}

.globe-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 70% 40%,
            rgba(197, 160, 89, 0.1) 0%,
            transparent 50%);
    animation: shimmer 4s ease-in-out infinite;
}

.globe-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.latitude,
.longitude {
    position: absolute;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.latitude {
    width: 100%;
    height: 50%;
    left: 0;
    border-radius: 50%;
    border-top: none;
}

.lat-1 {
    top: 20%;
    height: 60%;
    opacity: 0.6;
}

.lat-2 {
    top: 35%;
    height: 30%;
    opacity: 0.4;
}

.lat-3 {
    top: 50%;
    height: 0%;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.longitude {
    width: 50%;
    height: 100%;
    top: 0;
    left: 25%;
    border-radius: 50%;
    border-left: none;
    border-right: none;
}

.lon-1 {
    transform: rotateY(0deg);
}

.lon-2 {
    transform: rotateY(60deg);
    opacity: 0.5;
}

.lon-3 {
    transform: rotateY(120deg);
    opacity: 0.3;
}

/* Orbiting Data Points */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
}

.orbit-1 {
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
    animation: orbit1 12s linear infinite;
}

.orbit-2 {
    width: 320px;
    height: 320px;
    margin: -160px 0 0 -160px;
    animation: orbit2 15s linear infinite reverse;
}

.orbit-3 {
    width: 360px;
    height: 360px;
    margin: -180px 0 0 -180px;
    animation: orbit3 18s linear infinite;
}

.orbit-4 {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    animation: orbit4 20s linear infinite reverse;
}

.data-point {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1rem;
    box-shadow:
        0 0 20px rgba(197, 160, 89, 0.6),
        0 0 40px rgba(197, 160, 89, 0.3);
    animation: pointPulse 3s ease-in-out infinite;
}

.point-1 {
    animation-delay: 0s;
}

.point-2 {
    animation-delay: 0.75s;
}

.point-3 {
    animation-delay: 1.5s;
}

.point-4 {
    animation-delay: 2.25s;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.connect-line {
    stroke: var(--secondary-color);
    stroke-width: 1;
    opacity: 0.3;
    stroke-dasharray: 5, 5;
    animation: linePulse 3s ease-in-out infinite;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 1s;
}

.line-3 {
    animation-delay: 2s;
}

/* Animations */
@keyframes globeFloat {

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

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

@keyframes globeRotate {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes orbit1 {
    from {
        transform: rotateZ(0deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}

@keyframes orbit2 {
    from {
        transform: rotateZ(0deg) rotateY(30deg);
    }

    to {
        transform: rotateZ(360deg) rotateY(30deg);
    }
}

@keyframes orbit3 {
    from {
        transform: rotateZ(0deg) rotateX(20deg);
    }

    to {
        transform: rotateZ(360deg) rotateX(20deg);
    }
}

@keyframes orbit4 {
    from {
        transform: rotateZ(0deg) rotateY(-30deg);
    }

    to {
        transform: rotateZ(360deg) rotateY(-30deg);
    }
}

@keyframes pointPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(197, 160, 89, 0.6), 0 0 40px rgba(197, 160, 89, 0.3);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(197, 160, 89, 0.8), 0 0 60px rgba(197, 160, 89, 0.5);
    }
}

@keyframes linePulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .globe-container {
        width: 280px;
        height: 280px;
    }

    .orbit-1 {
        width: 220px;
        height: 220px;
        margin: -110px 0 0 -110px;
    }

    .orbit-2 {
        width: 250px;
        height: 250px;
        margin: -125px 0 0 -125px;
    }

    .orbit-3 {
        width: 280px;
        height: 280px;
        margin: -140px 0 0 -140px;
    }

    .orbit-4 {
        width: 240px;
        height: 240px;
        margin: -120px 0 0 -120px;
    }
}

@media (max-width: 768px) {
    .globe-container {
        width: 220px;
        height: 220px;
    }

    .data-point {
        width: 32px;
        height: 32px;
        margin-left: -16px;
        font-size: 0.85rem;
    }

    .orbit-1 {
        width: 180px;
        height: 180px;
        margin: -90px 0 0 -90px;
    }

    .orbit-2 {
        width: 200px;
        height: 200px;
        margin: -100px 0 0 -100px;
    }

    .orbit-3 {
        width: 220px;
        height: 220px;
        margin: -110px 0 0 -110px;
    }

    .orbit-4 {
        width: 190px;
        height: 190px;
        margin: -95px 0 0 -95px;
    }
}


@media (max-width: 992px) {
    .hero-visual {
        max-width: 400px;
        height: 400px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        max-width: 280px;
        height: 280px;
    }
}

























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

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }

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

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

    to {
        transform: rotate(360deg);
    }
}

/* Brief About */
.brief-about {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.brief-about .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.brief-about h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 20px;
}

.service-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    cursor: pointer;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(14, 60, 60, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.card-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .card-link {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

/* Theme specifics for cards */
.theme-light-green {
    background-color: #e8f3ee;
}

.theme-gold {
    background-color: #f7f3ea;
}

/* Trusted Partner / Stats */
.trusted-partner {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partner-text p.lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.partner-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.stat-card .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-card .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    color: var(--text-light);
}

.testimonial-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-content h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.testimonial-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.video-placeholder {
    width: 100%;
    height: 350px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 0 0 10px rgba(197, 160, 101, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.phone-large {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.help-list li {
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.help-list i {
    color: var(--accent-color);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #072525;
    color: #ccc;
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
    margin-bottom: 30px;
}

.logo-footer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    display: block;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.link-group h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .partner-grid,
    .testimonial-section .container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .partner-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .partner-stats {
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 40px;
        flex-direction: column;
    }

    /* Mobile Dropdown Adjustments */
    header nav ul li:hover .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: block;
        padding-left: 20px;
    }

    .dropdown-menu {
        display: none;
        background: transparent;
        border: none;
        transform: none;
        position: static;
    }
}

/* Net Zero CTA Section */
.cta-netzero {
    background: #0b1320;
    color: #ffffff;
    padding: 3rem 1.5rem;
}

.cta-netzero .container {
    max-width: 960px;
    margin: 0 auto;
}

.cta-netzero h2,
.cta-netzero h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.cta-netzero p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cta-netzero ul {
    margin: 0 0 1.5rem 1.25rem;
}

.cta-box {
    margin-top: 2rem;
    padding: 1.75rem;
    border-radius: 8px;
    background: #111a30;
}

.cta-netzero .btn.btn-primary {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    background: #18c29c;
    color: #0b1320;
    text-decoration: none;
    font-weight: 600;
}

.cta-netzero .btn.btn-primary:hover {
    background: #12a482;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Trust Badges Section */
.trust-badges {
    padding: 60px 0;
    background-color: var(--bg-white);
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.trust-badges .section-header {
    margin-bottom: 40px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.badge-item {
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    opacity: 0.7;
}

.badge-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.badge-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.badge-item p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    background-color: var(--bg-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    background-color: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

/* Enhanced Service Cards with 3D Effect */
.service-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(197, 160, 89, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.service-card:hover::before {
    opacity: 1;
}

/* Stat Counter Animation */
.stat-card .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-card .number[data-count] {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Button Micro-interactions */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Parallax Effect for Hero */
.hero {
    background-attachment: fixed;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Waitlist & Lead Capture Unified Theme */
.waitlist-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(14, 60, 60, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.waitlist-card {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 40px 100px rgba(14, 60, 60, 0.08);
    border: 1px solid rgba(14, 60, 60, 0.05);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-card h2 {
    color: var(--primary-color);
}

.waitlist-card p {
    color: #666;
}

.amount-display-box {
    margin: 40px 0;
    padding: 30px;
    background: rgba(14, 60, 60, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(14, 60, 60, 0.05);
}

.amount-display-box .label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.amount-value {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -2px;
}

.custom-slider-container {
    margin-bottom: 50px;
}

.custom-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e0e6ed;
    outline: none;
    cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 0 8px rgba(14, 60, 60, 0.1);
    transition: all 0.2s ease;
}

.custom-range::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 12px rgba(14, 60, 60, 0.15);
}

.lead-form-group {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.lead-form-group input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #edf2f7;
    border-radius: 50px;
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.lead-form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(14, 60, 60, 0.05);
}

.lead-form-group .btn {
    padding: 18px 40px;
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lead-form-group .btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}



.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-message {
    margin-top: 1.5rem;
    font-weight: 500;
    min-height: 1.5rem;
    color: var(--primary-color);
}

@media (max-width: 640px) {
    .lead-form-group {
        flex-direction: column;
    }

    .lead-form-group .btn {
        width: 100%;
    }
}

/* Blog Page Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.blog-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-footer {
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date {
    font-size: 0.85rem;
    color: #999;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: var(--secondary-color);
}


@media (max-width: 768px) {
    body {
        margin: 0;
        background-image: url("../IMG_0898.jpeg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
}