@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --primary-dark: #010d26;
    --secondary-dark: #000000;
    --primary-blue: #0388a6;
    --primary-teal: #04bfbf;
    --accent-mint: #04d9c4;
    --light-gray: #f2f2f2;

    --gradient-blue: linear-gradient(135deg, #0388a6, #04bfbf);
    --gradient-mint: linear-gradient(135deg, #04bfbf, #04d9c4);
}

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

body {
    width: 100vw;
    overflow-x: hidden;
}

body,
section:not(.hero) {
    overflow-x: hidden;
    background: linear-gradient(135deg,
            var(--primary-dark) 0%,
            var(--secondary-dark) 25%,
            var(--secondary-dark) 50%,
            var(--secondary-dark) 100%);
    position: relative;
}

img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* preused clases */
.white {
    color: white;
    -webkit-text-fill-color: white;
}

.montserrat {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.intro {
    background: linear-gradient(135deg,
            var(--primary-dark) 0%,
            var(--secondary-dark) 25%,
            var(--secondary-dark) 50%,
            var(--secondary-dark) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-animation::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%,
            rgba(3, 136, 166, 0.3) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 20%,
            rgba(4, 191, 191, 0.4) 0%,
            transparent 50%),
        radial-gradient(circle at 40% 40%,
            rgba(4, 217, 196, 0.25) 0%,
            transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(-10px, -10px) rotate(0deg);
    }

    50% {
        transform: translate(10px, 10px) rotate(180deg);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1200px;
    background: rgba(1, 13, 38, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(4, 191, 191, 0.3);
    border-radius: 20px;
    padding: 15px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
nav a {
    word-break: keep-all;
    white-space: nowrap;
}

nav:hover {
    background: rgba(1, 13, 38, 0.95);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 20px 40px rgba(4, 217, 196, 0.2);
    border-color: rgba(4, 217, 196, 0.5);
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
}

.logo img {
    height: 30px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-mint));
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--accent-mint);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg,
            var(--primary-blue) 0%,
            var(--primary-teal) 100%);
    color: var(--light-gray);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(4, 191, 191, 0.4);
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(4, 217, 196, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-button:hover::before {
    width: 100px;
    height: 100px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(4, 191, 191, 0.6);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent-mint);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0000004d;
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-item {
    color: var(--light-gray);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    margin: 20px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-menu-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-menu-item:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-menu-item:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-menu-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
}

.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--accent-mint);
    animation: blink 1s infinite;
    margin-left: 5px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.gradient-text {
    background: linear-gradient(135deg,
            var(--primary-blue) 0%,
            var(--primary-teal) 50%,
            var(--accent-mint) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

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

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

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(242, 242, 242, 0.8);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.primary-cta {
    background: linear-gradient(135deg,
            var(--primary-blue) 0%,
            var(--primary-teal) 100%);
    color: var(--light-gray);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(4, 191, 191, 0.4);
}

.primary-cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(4, 217, 196, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.primary-cta:hover::before {
    width: 400px;
    height: 400px;
}

.primary-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(4, 191, 191, 0.6);
}

.secondary-cta {
    background: transparent;
    color: var(--light-gray);
    padding: 18px 40px;
    border: 2px solid rgba(4, 191, 191, 0.5);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.secondary-cta:hover {
    background: rgba(4, 217, 196, 0.1);
    border-color: var(--accent-mint);
    color: var(--accent-mint);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(4, 217, 196, 0.3);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    pointer-events: none;
}

.float-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,
            rgba(3, 136, 166, 0.4),
            rgba(4, 191, 191, 0.3));
    border-radius: 50%;
    animation: floatAnimation 6s ease-in-out infinite;
}

.float-2 {
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,
            rgba(4, 217, 196, 0.5),
            rgba(4, 191, 191, 0.4));
    border-radius: 50%;
    animation: floatAnimation 8s ease-in-out infinite reverse;
}

.float-3 {
    bottom: 20%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,
            rgba(4, 217, 196, 0.3),
            rgba(3, 136, 166, 0.3));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatAnimation 10s ease-in-out infinite;
}

@keyframes floatAnimation {

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

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

/* Responsive Design */
@media (max-width: 868px) {
    .nav-menu {
        display: none;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        max-width: 300px;
    }

    nav {
        padding: 12px 20px;
        width: 90%;
    }

    .logo {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    nav {
        padding-left: 10px;
        width: 94%;
    }

    .logo img {
        height: 24px;
    }

    .logo {
        font-size: 24px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    /* left: 50%; */
    transform: translateX(-50%);
    color: rgba(4, 217, 196, 0.8);
    font-size: 14px;
    text-decoration: none;
    animation: bounce 2s infinite;
}

.a-none {
    text-decoration: none;
    color: inherit;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* /// = SMARTER SECTION */
.smarter {
    position: relative;
    min-height: 90vh;
    padding: 7rem 0 7rem 4rem;
    overflow: hidden;
    overflow-x: hidden;
    background: linear-gradient(135deg,
            var(--primary-dark) 0%,
            var(--secondary-dark) 25%,
            var(--secondary-dark) 50%,
            var(--secondary-dark) 100%);
    max-width: 1900px;
    margin: 0 0 0 auto;
}

@media (min-width: 1024px) {
    .smarter {
        padding-top: 13rem;
        padding-bottom: 13rem;
    }
}

/* Floating background elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    background: var(--gradient-mint);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatElement 6s ease-in-out infinite;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 25%;
    animation-delay: 1s;
}

.bubble:nth-child(5) {
    width: 40px;
    height: 40px;
    top: 80%;
    right: 5%;
    animation-delay: 3s;
}

.geometric-shape {
    position: absolute;
    background: var(--gradient-blue);
    opacity: 0.05;
    animation: rotate 20s linear infinite;
}

.geometric-shape:nth-child(6) {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 10%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.geometric-shape:nth-child(7) {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 20%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation-direction: reverse;
}

@keyframes floatElement {

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

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

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

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

.content-wrapper {
    position: relative;
    z-index: 2;
    min-height: 120%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.section-header {
    margin-bottom: 3rem;
    max-width: 600px;
}

.tagline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: var(--gradient-mint);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(242, 242, 242, 0.8);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    margin-right: 0;
    padding-right: 0;
}

/* Navigation Buttons */
.swiper-navigation {
    position: absolute;
    top: -30px;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-mint);
    background: rgba(4, 217, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: var(--accent-mint);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(4, 217, 196, 0.5);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-mint);
    transition: all 0.3s ease;
}

.nav-btn:hover svg {
    fill: var(--primary-dark);
}

/* Swiper Styles */
.complaints-swiper {
    padding: 2rem 0;
    overflow: visible;
}

.swiper-slide {
    height: auto;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
}

.complaint-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 1rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(4, 217, 196, 0.2);
    transition: all 0.5s ease;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.complaint-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(4, 217, 196, 0.1),
            transparent);
    transition: left 0.8s ease;
}

.swiper-slide-active .complaint-card::before {
    left: 100%;
}

.swiper-slide-active .complaint-card {
    background: rgba(4, 217, 196, 0.1);
    border-color: var(--accent-mint);
    box-shadow: 0 20px 40px rgba(4, 217, 196, 0.2);
    transform: translateY(-10px);
}

.complaint-header {
    margin-bottom: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.user-details h4 {
    color: var(--accent-mint);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.user-details span {
    color: rgba(242, 242, 242, 0.6);
    font-size: 0.9rem;
}

.complaint-type {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(3, 136, 166, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-teal);
    font-weight: 500;
}

.complaint-text {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.complaint-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(4, 217, 196, 0.2);
}

.loss-amount {
    color: #ff4757;
    font-weight: 600;
    font-size: 1.1rem;
}

.complaint-date {
    color: rgba(242, 242, 242, 0.5);
    font-size: 0.9rem;
}

/* Pagination */
.swiper-pagination {
    bottom: -2rem !important;
    left: 4rem !important;
    width: auto !important;
}

.swiper-pagination-bullet {
    background: rgba(4, 217, 196, 0.3);
    opacity: 1;
    margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-mint);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .smarter {
        padding: 10rem 0 3rem 2rem;
    }

    .tagline {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .swiper-navigation {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .smarter {
        padding: 9rem 0 2rem 1rem;
    }

    .complaint-card {
        padding: 2rem;
        margin: 0.5rem;
        height: 350px;
    }

    .swiper-navigation {
        position: static;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .section-header {
        margin: 0 auto 2rem;
        text-align: center;
    }

    .tagline,
    .subtitle {
        text-align: center;
    }

    .swiper-pagination {
        left: 1rem !important;
    }
}

@media (max-width: 480px) {
    .complaint-card {
        padding: 1.5rem;
        height: 320px;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .complaint-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .smarter {
        padding: 7rem 2rem;
    }

    .complaint-card {
        min-height: 450px;
    }
}


/* //= HOW IT WORKS SECTION */

/* How It Works Section */
.how-it-works {
    min-height: 100vh;
    padding: 0 0 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--secondary-dark) !important;
    max-width: 1900px;
    margin: 0 auto;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, var(--mint-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--teal-glow) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-mint), var(--primary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #b0c4d1;
    max-width: 600px;
    margin: 0 auto;
}

.steps-container {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
}

.floating-particles {
    position: absolute;
    width: 130%;
    height: 130%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-mint);
    background-color: #f2f2f2;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatparticles 20s infinite linear;
}

@keyframes floatparticles {
    0% {
        transform: translateY(100vh) translateX(0px);
    }

    100% {
        transform: translateY(-100px) translateX(100px);
    }
}

.step {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-bottom: 8rem;
    align-items: center;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.step.animate {
    opacity: 1;
    transform: translateX(0);
}

.step:nth-child(even) {
    grid-template-columns: 2fr 1fr;
    transform: translateX(100px);
}

.step:nth-child(even).animate {
    transform: translateX(0);
}

.step:nth-child(even) .step-content {
    order: 2;
}

.step:nth-child(even) .step-visual {
    order: 1;
}

.step-content {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2rem;
    border: 1px solid rgba(4, 191, 191, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-teal),
            var(--accent-mint));
    transform: scaleX(0);
    transition: transform 1s ease;
}

.step.animate .step-content::before {
    transform: scaleX(1);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,
            var(--primary-teal),
            var(--accent-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(4, 191, 191, 0.3);
}

.step-title {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, white, var(--light-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.step-visual {
    position: relative;
    height: 600px;
    border-radius: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg,
            var(--primary-blue),
            var(--primary-teal));
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}

.step:hover .visual-icon {
    transform: scale(1.1) rotate(5deg);
}

.progress-line {
    position: absolute;
    right: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(4, 191, 191, 0.2);
}

.progress-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom,
            var(--primary-teal),
            var(--accent-mint));
    transition: height 2s ease;
}

.animate .progress-fill {
    height: 100%;
}

@media (max-width: 1500px) {
    .steps-container {
        max-width: 1200px;
    }

    .step-description {
        line-height: 1.5;
        font-size: clamp(.85rem, 1.2vw, 1rem);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .how-it-works {
        margin-left: auto;
        margin-right: auto;
    }

    .steps-container {
        max-width: 90%;
    }
}

@media (max-width: 968px) {
    .how-it-works {
        padding-right: 1rem;
    }

    .step {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-bottom: 5rem;
        text-align: center;
    }

    .step-content {
        order: 2 !important;
    }

    .step-visual {
        order: 1 !important;
        height: 600px;
    }

    .section-title {
        max-width: 90%;
        margin: 0 auto 4rem;
    }
}

@media (max-width: 640px) {
    .how-it-works {
        padding: 3rem 0.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        position: relative;
    }

    .step-number::after {
        content: "";
        position: absolute;
        top: -10px;
        left: -80%;
        width: 54px;
        height: 4px;
        transform: rotate3d(1, 1, 1, 63deg);
        background: linear-gradient(135deg, var(--primary-teal), var(--accent-mint));

        background: rgba(4, 191, 191, 0.3);
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .step {
        margin-bottom: 3rem;
    }

    .step-content {
        padding: 2rem;
    }

    .step-visual {
        height: 350px;
    }

    .visual-icon {
        width: 80px;
        height: 80px;
    }

    .progress-line {
        right: 100%;
    }
}

/* Hover effects */
.step-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(4, 191, 191, 0.2);
    border-color: rgba(4, 191, 191, 0.4);
}

/* Animation delays */
.step:nth-child(1) {
    transition-delay: 0.1s;
}

.step:nth-child(2) {
    transition-delay: 0.2s;
}

.step:nth-child(3) {
    transition-delay: 0.3s;
}

.step:nth-child(4) {
    transition-delay: 0.4s;
}

.bg-st-1 {
    background-image: url("../images/step-1.jpg") !important;
    background-position: center;
    background-size: cover;
}

.bg-st-2 {
    background-image: url("../images/step-2b.jpg") !important;
    background-position: center;
    background-size: cover;
}

.bg-st-3 {
    background-image: url("../images/step-3.jpg") !important;
    background-position: center;
    background-size: cover;
}

.bg-st-4 {
    background-image: url("../images/step-4.jpg") !important;
    background-position: center;
    background-size: cover;
}

/* //  INSUTIES WE SERVE SECTION */
.industries {
    position: relative;
    background: var(--secondary-dark) !important;
    padding-bottom: 9rem;
}

.industries-section {
    position: relative;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.globe-container {
    position: relative;
    width: 100%;
    height: 90vh;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#globe-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.industry-card {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0.2, 0.2, 0.4);
    box-shadow: 0 10px 30px rgba(4, 217, 196, 0.3);
    border: 2px solid rgba(4, 217, 196, 0.5);
    backdrop-filter: blur(10px);
    z-index: 5;
}

.industry-card:hover {
    transform: scale(1.15) translateZ(20px);
    box-shadow: 0 20px 60px rgba(4, 217, 196, 0.6);
    border-color: var(--accent-mint);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-label {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--secondary-dark);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    max-width: calc(100% - 16px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .industries-section {
        padding: 1rem;
        min-height: auto;
    }

    .globe-container {
        height: auto;
        padding: 2rem 0;
    }

    #globe-canvas {
        position: absolute;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 2rem;
    }

    .mobile-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .industry-card {
        position: relative;
        width: 100%;
        height: 200px;
        border-radius: 15px;
    }

    .industry-card:hover {
        transform: scale(1.05);
    }

    .industry-label {
        bottom: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .mobile-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .industry-card {
        height: 220px;
    }
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(4, 217, 196, 0.3);
    border-top: 3px solid var(--accent-mint);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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




/* JOIN US SECTION */

.volunteer-section {
    position: relative;
    height: 120vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(1, 13, 38, 0.7)),
        url("../images/volunteer.avif") center/cover fixed !important;
    background-attachment: fixed;
    text-align: center;
    color: white;
    padding: 3rem 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-container {
    max-width: 800px;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.emoji-icon {
    height: 40px;
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s infinite;
}

.main-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg,
            var(--accent-mint),
            var(--primary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(4, 217, 196, 0.3);
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.8;
    margin-bottom: 70px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.ju {
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.ju:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(4, 217, 196, 0.5);
    filter: brightness(1.1);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.floating-arrow {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 3rem;
    color: var(--accent-mint);
    opacity: 0.7;
    animation: floatArrow 3s ease-in-out infinite;
    transform: rotate(45deg);
}

.v-bottom {
    width: 100%;
    height: 20%;
    padding-bottom: 3rem;
    background-color: #00000052;
}

.stats-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-mint);
    display: block;
}

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

.impact-badges {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(4, 217, 196, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(4, 217, 196, 0.2);
    transform: translateY(-2px);
}

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

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

@keyframes bounce {

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

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes floatArrow {

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

    50% {
        transform: rotate(45deg) translateY(-15px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .volunteer-section {
        background-attachment: scroll;
        min-height: 100vh;
        padding: 8rem 0 0;
    }

    .cta-button.cta-button.ju {
        padding: 14px 28px;
        font-size: .8rem;
    }

    .content-container {
        margin-bottom: 8rem;
        padding: 0 20px;
    }

    .floating-arrow {
        display: none;
    }

    .v-bottom {
        padding-bottom: 15px;
    }

    .stats-container {
        gap: 10px;
        margin-top: 40px;
    }

    .stat-number {
        font-size: 1rem;
    }

    .impact-badges {
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        margin: 20px auto 0;
    }

    .badge {
        padding: 8px 13px;
        font-size: 0.6rem;
        word-wrap: none;
        white-space: nowrap;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .stats-container {
        gap: 20px;
    }
}

/* Parallax effect for desktop */
@media (min-width: 769px) {
    .volunteer-section {
        background-attachment: fixed;
    }
}




/* BECOME A VERIFIER */

/* Floating Icons Animation */
@keyframes floatl {

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

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

@keyframes pulsel {

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

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmerl {
    0% {
        transform: translateX(-100%);
    }

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

.floating-icon {
    position: absolute;
    font-size: 24px;
    color: var(--accent-mint);
    opacity: 0.6;
    animation: floatl 3s ease-in-out infinite;
    pointer-events: none;
}

.floating-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-icon:nth-child(3) {
    animation-delay: 1s;
}

.floating-icon:nth-child(4) {
    animation-delay: 1.5s;
}

/* Section 1: Become a Verifier */
.verifier-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f9f9f9 0%, #e8f8f5 100%);
    display: flex;
    align-items: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

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

.content-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.content-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.content-right {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.3s;
}

.content-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.verification-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-mint));
    background: url("../images/verify2.jpg") no-repeat center/cover;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(4, 191, 191, 0.2);
}

.verification-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmerl 3s infinite;
}

.verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulsel 2s infinite;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: #ffffff;
    position: relative;
}

.faq-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--light-gray);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(4, 217, 196, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(4, 217, 196, 0.15);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--secondary-dark);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    color: var(--light-text);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 24px 30px;
}

/* Background Decorations */
.bg-decoration {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.bg-question {
    top: 10%;
    left: 5%;
    font-size: 60px;
    color: var(--accent-mint);
    animation: floatl 4s ease-in-out infinite;
}

.bg-lightbulb {
    top: 20%;
    right: 10%;
    font-size: 50px;
    color: var(--primary-teal);
    animation: floatl 3s ease-in-out infinite 1s;
}

.bg-magnify {
    bottom: 30%;
    left: 8%;
    font-size: 40px;
    color: var(--primary-blue);
    animation: floatl 3.5s ease-in-out infinite 0.5s;
}


/* Responsive Design */
@media (max-width: 768px) {
    .verifier-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .content-right {
        order: -1;
    }

    .headline {
        font-size: 2.5rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .verification-image {
        height: 300px;
    }

    .verification-icon {
        font-size: 60px;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer {
        line-height: 1.5;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .verifier-section {
        padding: 40px 15px;
    }

    .headline {
        font-size: 2rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}




  /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            color: var(--light-gray);
            position: relative;
            overflow: hidden;           
             /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
             padding: 6rem 0 8rem;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(4, 191, 191, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(4, 217, 196, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-content {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUpf 0.8s ease-out 0.2s forwards;
        }
        .footer .logo{
            transform: translateX(-20px);
        }

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

        .footer-column h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--accent-mint);
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary-teal);
            border-radius: 1px;
        }

        /* Company Column */
        .company-column {
            max-width: 280px;
        }




        .company-description {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #ccc;
            margin-bottom: 2rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-icon:hover {
            background: var(--accent-mint);
            color: var(--primary-dark);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 20px rgba(4, 217, 196, 0.4);
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-mint);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-mint);
            transform: translateX(5px);
        }

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

        /* Sub-footer */
        .sub-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #999;
        }

        .sub-footer-links {
            display: flex;
            gap: 2rem;
        }

        .sub-footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .sub-footer-links a:hover {
            color: var(--accent-mint);
        }

        /* Trust Badge */
        .trust-badge {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: var(--accent-mint);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-weight: bold;
            font-size: 0.8rem;
            box-shadow: 0 4px 20px rgba(4, 217, 196, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .trust-badge:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(4, 217, 196, 0.5);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                padding: 3rem 1.5rem 2rem;
            }
            
        .footer .logo{
            max-width: 200px;
            text-align: center;
            transform: translateX(0);
            margin: 0 auto;
        }
        .footer .logo img {
            width: 30px;
        }

            .company-column {
                max-width: 100%;
                text-align: center;
            }

            .social-icons {
                justify-content: center;
            }

            .footer-column h3 {
                font-size: 1.2rem;
                text-align: center;
            }

            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-links {
                text-align: center;
            }

            .sub-footer {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                padding: 2rem 1.5rem;
            }

            .sub-footer-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }

            .trust-badge {
                bottom: 15px;
                right: 15px;
                width: 50px;
                height: 50px;
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .demo-content h1 {
                font-size: 2rem;
            }

            .demo-content p {
                font-size: 1rem;
            }

            .footer-content {
                padding: 2rem 1rem 1.5rem;
            }

            .sub-footer {
                padding: 1.5rem 1rem;
            }
        }
