/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: #0F0D0E;
    color: white;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 6%;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: 1e1e1e;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.navbar,
.content {
    z-index: 10;
}

/* OVERLAY STYLES */
.overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}



.overlay.bottom {
    background: linear-gradient(0deg,
            rgba(30, 30, 30, 1) 0%,
            rgba(30, 30, 30, 0.7) 30%,
            transparent 100%);
}

/* =========================================
   NAVBAR & STICKY STATE
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 40px;
    transition: padding 0.4s ease;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border-radius: 50px;
    padding: 0;
    /* Default padding is handled by the wrapper */
    transition: all 0.4s ease;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hide action buttons by default */
.nav-actions {
    display: flex;
    gap: 10px;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* ----------------------------------
   STICKY STATE (Triggered by JS)
---------------------------------- */
.navbar.sticky {
    padding-top: 20px;
}

.navbar.sticky .nav-inner {
    background: #ffffff;
    padding: 12px 30px;
    box-shadow: 0 10px 40px rgba(0 0 0/10%);
}

.navbar.sticky nav a {
    color: #1e1e1e;
    /* Turns links black */
}

.navbar.sticky nav a:hover {
    color: #f25625;
    /* Orange hover effect */
}

/* Reveals the buttons */
.navbar.sticky .nav-actions {
    max-width: 300px;
    opacity: 1;
}

/* STICKY NAVBAR BUTTON STYLES */
.nav-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn.outline {
    border: 1px solid #1e1e1e;
    color: #1e1e1e;
}

.nav-btn.outline:hover {
    background: #1e1e1e;
    color: #ffffff;
}

.nav-btn.solid {
    background: #2a2a2a;
    color: #ffffff;
}

.nav-btn.solid:hover {
    background: #f25625;
}

/* =========================================
   LOGO CROSSFADE LOGIC
========================================= */
.nav-logo {
    position: relative;
    display: block;
    width: 180px;
    transition: width 0.4s ease;
}

.logo {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* ----------------------------------
   STICKY LOGO STATE
---------------------------------- */
.navbar.sticky .nav-logo {
    width: 140px;
}

.navbar.sticky .logo-light {
    opacity: 0;
}

.navbar.sticky .logo-dark {
    opacity: 1;
}

/* CONTENT */
.content {
    position: absolute;
    bottom: 12%;
    width: 100%;
    z-index: 3;
}

.content .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* HEADING */
.content h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.1;
}

.bold {
    font-weight: 700;
}

/* TEXT ROTATE - FINAL FIX */
.text-rotate {
    display: inline-grid;
    height: 1.2em;
    overflow: hidden;
    vertical-align: bottom;
}

.text-rotate span {
    grid-area: 1 / 1;
    color: #f8d3be;
    opacity: 0;
    transform: translateY(100%);
    white-space: nowrap;
}

/* ACTIVE STATES USING KEYFRAMES */
.text-rotate span:nth-child(1) {
    animation: rotate1 6s infinite;
}

.text-rotate span:nth-child(2) {
    animation: rotate2 6s infinite;
}

.text-rotate span:nth-child(3) {
    animation: rotate3 6s infinite;
}

/* SEAMLESS LOOP TIMELINES */
@keyframes rotate1 {

    0%,
    25% {
        opacity: 1;
        transform: translateY(0);
    }

    33%,
    91% {
        opacity: 0;
        transform: translateY(-100%);
    }

    92% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes rotate2 {

    0%,
    25% {
        opacity: 0;
        transform: translateY(100%);
    }

    33%,
    58% {
        opacity: 1;
        transform: translateY(0);
    }

    66%,
    99% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

@keyframes rotate3 {

    0%,
    58% {
        opacity: 0;
        transform: translateY(100%);
    }

    66%,
    92% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

/* TEXT */
.content p {
    font-size: clamp(16px, 1.2vw, 22px);
    opacity: 0.9;
    max-width: 800px;
}

/* BUTTONS */
.buttons {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.3s ease,
        color 0.3s ease;
}


/* PRIMARY BUTTON */
.btn.primary {
    background: #f8d3be;
    color: black;
}

/* HOVER EFFECT */
.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* CLICK EFFECT */
.btn:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* SECONDARY BUTTON */
.btn.secondary {
    border: 1px solid #f8d3be;
    color: #f8d3be;
}

/* SOFT GLOW EFFECT */
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.25), transparent 70%);
    transition: opacity 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
}

/* BUTTON STYLES */
.primary {
    background: #f8d3be;
    color: black;
}

.secondary {
    border: 1px solid #f8d3be;
    color: #f8d3be;
}

/* ABOUT */
.about-bg {
    flex: 1;
    min-height: 400px;
}

.about {
    padding: 120px 0;
    background: #1e1e1e;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 500px;
}

/* Solid Orange Circle */
.circle {
    position: absolute;
    width: 800px;
    height: 800px;
    background: #f25625;
    border-radius: 50%;
    left: -500px;
    bottom: -300px;
}

/* Thin Outline Circle */
.circle-outline {
    position: absolute;
    width: 1400px;
    height: 1400px;
    border: 1px solid #f25625;
    border-radius: 50%;
    left: -750px;
    bottom: -600px;
    opacity: 0.5;
}

/* LEFT SIDE (background area) */
.about-bg {
    flex: 1;
}

.about-content {
    flex: 0 1 600px;
    max-width: 100%;
    margin-left: auto;
    z-index: 2;
}

.about-content h2 {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: #9184ff;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

.about-content p strong {
    color: #ffffff;
    font-weight: 700;
}

/* STATS CONTAINER */
.stats {
    margin-top: 40px;
    display: inline-flex;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
}

/* STAT ITEM */
.stat {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s;
}

.stat.show {
    opacity: 1;
    transform: translateY(0);
}

.stat h3 {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat p {
    font-size: 16px;
    color: #cccccc;
    font-weight: 400;
}

.circle {
    position: absolute;
    width: 800px;
    height: 800px;
    background: #f25625;
    border-radius: 50%;
    left: -400px;
    bottom: -400px;
    filter: none !important;
    z-index: 1;
}

.circle-outline {
    position: absolute;
    width: 1500px;
    height: 1500px;
    border: 1px solid #f25625;
    border-radius: 50%;
    left: -750px;
    bottom: -750px;
    opacity: 0.3;
    z-index: 1;
}

.about-label {
    position: absolute;
    left: 6%;
    bottom: 80px;
    color: #1e1e1e;
    z-index: 5;
    line-height: 1.1;
}

.about-label .fw-light {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    letter-spacing: 1px;
}

.about-label .fw-bold {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
}

/* =========================================
   FEATURES / WHY CHOOSE US SECTION
========================================= */
.features {
    padding: 120px 0;
    background: #ffffff;
    color: #1e1e1e;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-header h2 span {
    color: #f25625;
}

.section-header p {
    font-size: clamp(16px, 1.5vw, 18px);
    color: #666666;
    font-weight: 400;
}

/* GRID LAYOUT */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* INDIVIDUAL CARDS */
.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Slight hover effect for interactivity */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ICON STYLING */
.feature-card svg {
    width: 28px;
    height: 28px;
    color: #f25625;
    margin-bottom: 20px;
}

/* CARD TYPOGRAPHY */
.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e1e1e;
    letter-spacing: -0.3px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.3;
    color: #666666;
}

.feature-card p strong {
    color: #1e1e1e;
    font-weight: 700;
}

/* RESPONSIVE DESIGN (For smaller screens) */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   OUR SOLUTIONS SECTION
========================================= */
.solutions {
    padding: 120px 0;
    background: #1e1e1e;
    /* Dark background */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND CIRCLES */
.solutions-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.s-circle {
    position: absolute;
    border: 1px solid #f25625;
    border-radius: 50%;
    opacity: 0.4;
}

.s-circle-1 {
    width: 800px;
    height: 800px;
    right: -100px;
    top: -300px;
}

.s-circle-2 {
    width: 600px;
    height: 600px;
    right: 150px;
    top: -150px;
}

/* HEADER */
.solutions-header {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.solutions-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

.solutions-header h2 span {
    color: #f25625;
}

.solutions-header p {
    font-size: clamp(14px, 1.2vw, 16px);
    color: #cccccc;
    font-weight: 300;
}

/* CARDS CONTAINER */
.solutions-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #151515;
}

/* INDIVIDUAL CARDS */
.solution-card {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
}

/* LEFT CARD (Dark) */
.solution-card.dark {
    background: transparent;
}

/* RIGHT CARD (Orange) */
.solution-card.orange {
    background: #f25625;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* TYPOGRAPHY INSIDE CARDS */
.solution-card h3 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.solution-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    min-height: 80px;
}

/* FEATURE LIST (Bullets) */
.feature-list {
    list-style: none;
    margin-bottom: auto;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.feature-list svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.9;
}

/* CALL TO ACTION LINKS */
.solution-link {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 6px;
    margin-top: 40px;
    align-self: flex-start;
    transition: opacity 0.3s ease;
}

.solution-link:hover {
    opacity: 0.7;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .solutions-wrapper {
        flex-direction: column;
    }

    .solution-card.orange {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* =========================================
   FAQ SECTION
========================================= */
.faq {
    padding: 120px 0;
    background: #ffffff;
    color: #1e1e1e;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.faq-header h2 span {
    color: #f25625;
    /* Orange highlight */
}

.faq-header p {
    font-size: clamp(16px, 1.5vw, 18px);
    color: #666666;
}

/* FAQ CONTAINER */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
}

/* INDIVIDUAL ITEMS */
.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

/* QUESTION BUTTON */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #1e1e1e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

/* PLUS/MINUS ICON */
.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #666666;
    transition: 0.3s ease;
}

.faq-icon::before {
    width: 10px;
    height: 1.5px;
}

.faq-icon::after {
    width: 1.5px;
    height: 10px;
}

.faq-item.active .faq-icon {
    border-color: #1e1e1e;
}

.faq-item.active .faq-icon::before {
    background: #1e1e1e;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    background: #1e1e1e;
    opacity: 0;
}

/* ANSWER WRAPPER (Animation magic happens here) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.answer-content {
    padding: 0 30px 30px 30px;
    border-top: 1px solid #f0f0f0;
    margin-top: 5px;
    padding-top: 20px;
}

.answer-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

/* =========================================
   FOOTER SECTION
========================================= */
.footer {
    position: relative;
    background: #1a1a1a;
    color: #ffffff;
    padding-top: 80px;
    overflow: hidden;
}

/* KEEPS CONTENT ABOVE WATERMARK */
.relative-z {
    position: relative;
    z-index: 2;
}

/* GIANT BACKGROUND WATERMARK */
.footer-watermark {
    position: absolute;
    bottom: -60px;
    right: -20px;
    font-size: clamp(100px, 15vw, 220px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    letter-spacing: -2px;
}

.footer-top {
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.footer-desc {
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
}

.contact-block {
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-col {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: #f25625;
    color: #ffffff;
}

/* FOOTER BOTTOM (COPYRIGHT) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

/* RESPONSIVE DESIGN FOR MOBILE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .social-col {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .footer-watermark {
        font-size: 100px;
        bottom: 10%;
    }
}

/* =========================================
   FOOTER LOGO STYLES
========================================= */

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 36px;
    /* Adjust this to make your normal logo bigger/smaller */
    width: auto;
    display: block;
}

/* =========================================
   HAMBURGER BUTTON
========================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
    transform-origin: center;
}

/* Dark hamburger when navbar is sticky */
.navbar.sticky .hamburger span {
    background: #1e1e1e;
}

/* X state when menu is open */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   MOBILE MENU PANEL
========================================= */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #0F0D0E;
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 100px 30px 50px;

    /* Hidden state */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

/* NAV LINKS */
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.mobile-link {
    font-size: clamp(28px, 8vw, 40px);
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
    padding: 8px 0;
}

.mobile-link:hover {
    opacity: 1;
    color: #f25625;
}

/* CTA BUTTONS */
.mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 320px;
}

.mobile-actions .btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */
@media (max-width: 768px) {

    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
    }

    .nav-right {
        display: none;
    }

    /* Smaller logo on mobile */
    .nav-logo {
        width: 110px;
    }

    /* Keep logo small even in sticky state on mobile */
    .navbar.sticky .nav-logo {
        width: 100px;
    }

    /* Navbar padding adjustments */
    .navbar {
        padding-top: 20px;
    }

    .navbar.sticky {
        padding-top: 14px;
    }

    /* Hero content */
    .content {
        bottom: 8%;
    }

    .content h1 {
        font-size: clamp(30px, 7vw, 44px);
    }

    .buttons {
        flex-direction: column;
        gap: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* About section */
    .about-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-bg {
        display: none;
    }

    .about-content {
        flex: unset;
        width: 100%;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;
        row-gap: 30px;
    }

    /* Solutions */
    .solution-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
    }

    .solution-card {
        padding: 30px 20px;
    }

    .mobile-link {
        font-size: 28px;
    }
}

/* =========================================
   WHATSAPP FLOAT BUTTON
========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

/* Pulse ring animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.4;
    animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}