/* -------------------------------------
   VARIABLES & DESIGN SYSTEM
-------------------------------------- */
:root {
    /* Colors - Rich Premium Dark Theme */
    --bg-dark: #0a0f1c; /* Deep Space Blue */
    --bg-card: rgba(18, 26, 47, 0.7); /* Deep Glass Card */
    --bg-card-hover: rgba(26, 36, 61, 0.9);

    --text-main: #f8fafc; /* Crisp white text */
    --text-muted: #94a3b8; /* Elegant slate grey text */

    --accent-yellow: #f59e0b; /* Rich amber/gold */
    --accent-yellow-glow: rgba(245, 158, 11, 0.4);
    --accent-white: #ffffff;


    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Transforms */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------
   RESET & BASE STYLES
-------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Helpers */
.text-accent {
    color: var(--accent-yellow);
    background: linear-gradient(135deg, #fef08a 0%, #f59e0b 50%, #b45309 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* -------------------------------------
   BACKGROUND ANIMATIONS
-------------------------------------- */
.blob-cont {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.yellow-blob,
.white-blob {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 15s infinite alternate ease-in-out;
}

.yellow-blob {
    width: 600px;
    height: 600px;
    background: var(--accent-yellow);
    top: -150px;
    right: -100px;
    opacity: 0.25;
}

.white-blob {
    width: 500px;
    height: 500px;
    background: #4f46e5;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
    opacity: 0.2;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-50px, 50px) scale(1.1);
    }

    100% {
        transform: translate(50px, -50px) scale(0.9);
    }
}

/* -------------------------------------
   NAVIGATION
-------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}


/* Nav Logo Image */
.nav-logo-img {
    height: 50px;
    width: auto;
    max-width: 170px;
    display: block;
    object-fit: contain;
}

/* Nav links color black karo white bg ke liye */
.nav-links a {
    color: black;
}

.navbar.scrolled {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-sea {
    color: var(--text-main);
}

.logo-group {
    color: var(--accent-yellow);
    margin-left: 0.3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
    color: #0a0f1c !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--accent-yellow-glow);
}

.nav-links a:hover::after {
    width: 100%;
}

/* -------------------------------------
   HERO SECTION
-------------------------------------- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem; /* Reduced from 5rem to avoid text overlap */
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    z-index: 2; /* Ensure it stays above background elements */
    position: relative;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--accent-yellow);
    color: #000;
    box-shadow: 0 0 20px var(--accent-yellow-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
    transform: translateY(-5px) scale(1.03);
}

.btn-primary:hover::after {
    left: 120%;
    transition: all 0.7s ease;
}

/* Initial Load Animations (Hero) */
.fade-up-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--transition-smooth) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.5s;
}

.delay-4 {
    animation-delay: 0.7s;
}

.delay-5 {
    animation-delay: 1.2s;
}

/* Scroll indicator delay */

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 2px;
    animation: scrollWheel 2s infinite ease;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

/* -------------------------------------
   BUSINESSES SECTION
-------------------------------------- */
.businesses-section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-transform: capitalize;
}

.line-divider {
    width: 60px;
    height: 4px;
    background: var(--accent-yellow);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-yellow-glow);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr; /* Changed to 1 column for sequence layout */
    gap: 4rem; /* Increased gap for better spacing between full-width cards */
}

/* Synergy Blocks between Enterprise Cards */
.synergy-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
}

.synergy-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-yellow), transparent);
    margin: 1rem 0;
}

.synergy-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-yellow);
    box-shadow: 0 0 20px var(--accent-yellow-glow);
    animation: pulseGlow 3s infinite alternate;
}

.synergy-block p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    font-weight: 500;
    max-width: 500px;
    line-height: 1.6;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(245, 158, 11, 0.1); transform: scale(1); }
    100% { box-shadow: 0 0 30px rgba(245, 158, 11, 0.5); transform: scale(1.05); }
}

/* Beautiful Interactive Card with Background Images */
.business-card {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push content to bottom */
    transition: var(--transition-smooth);
    z-index: 1;
    min-height: 550px; /* Increased to prevent drastic horizontal image cropping */
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.business-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    transition: all 0.8s ease;
    z-index: 3;
    pointer-events: none;
}

.business-card:hover::after {
    left: 150%;
    transition: all 0.8s ease;
}

/* Background Images for Specific Cards */
.bg-accounting {
    background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?q=80&w=800&auto=format&fit=crop');
}

.bg-virtual {
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=800&auto=format&fit=crop');
}

.bg-consulting {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=800&auto=format&fit=crop');
}

.bg-itservices {
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=800&auto=format&fit=crop');
}

/* Overlay for Readability */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
    z-index: -1;
    transition: var(--transition-smooth);
}

.business-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.4) 100%);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px;
    height: 0px;
    background: var(--accent-yellow);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.business-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(250, 204, 21, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(250, 204, 21, 0.3);
}

.business-card:hover .card-glow {
    width: 250px;
    height: 250px;
    opacity: 0.25;
}

.card-content-wrap {
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    transform: translateY(20px); /* Slightly hidden until hover */
}

.business-card:hover .card-content-wrap {
    transform: translateY(0);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.card-text {
    color: rgba(255, 255, 255, 0.85); /* Slightly brighter than text-muted for readability on images */
    margin-bottom: 2rem;
    opacity: 0; /* Hidden by default */
    max-height: 0;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.business-card:hover .card-text {
    opacity: 1;
    max-height: 100px; /* Reveal text */
}

.card-link {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-yellow);
    transition: var(--transition-fast);
}

.card-link i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.business-card:hover .card-link i {
    transform: translateX(5px);
}

/* -------------------------------------
   HERO SLIDER (SWIPER)
-------------------------------------- */
.hero-slider {
    height: 100vh;
    width: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-yellow);
    opacity: 1;
    box-shadow: 0 0 10px var(--accent-yellow-glow);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-yellow);
    transition: var(--transition-fast);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #fff;
    transform: scale(1.1);
}

/* -------------------------------------
   TRUSTED PARTNERS MARQUEE
-------------------------------------- */
.pt-10 {
    padding-top: 5rem;
}

.pb-5 {
    padding-bottom: 2.5rem;
}

.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.02) 0%, rgba(245, 158, 11, 0.1) 50%, rgba(245, 158, 11, 0.02) 100%);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: inset 0 0 30px rgba(245, 158, 11, 0.05); /* Glow highlight */
}

.marquee-content {
    display: flex;
    width: calc(250px * 16);
    /* Logo width * total logos */
    animation: scroll 40s linear infinite;
}

.partner-logo {
    width: 250px;
    font-size: 2rem;
    color: var(--text-main); /* Brighter for highlight */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0.85; /* Brighter */
    transition: var(--transition-fast);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.partner-logo span {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--accent-yellow);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6)); /* Updated count to 6 unique items */
    }

    /* Scroll half the width (first set) */
}

/* -------------------------------------
   WHY CHOOSE US SECTION (NEW)
-------------------------------------- */
.why-choose-us {
    padding: 6rem 0;
    background: var(--bg-dark); /* Keeps the light root variable */
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-box {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-yellow);
    transition: var(--transition-smooth);
}

.feature-box:hover .feature-icon-wrapper {
    background: var(--accent-yellow);
    color: #000;
    transform: rotateY(180deg);
}

.feature-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-muted);
}

/* -------------------------------------
   ANIMATED STATS SECTION
-------------------------------------- */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(18, 26, 47, 0.5) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--accent-yellow-glow);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--text-main); /* Dark text for light mode stats */
}

.stat-text {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* -------------------------------------
   TESTIMONIALS SECTION
-------------------------------------- */
.testimonials-section {
    padding: 8rem 0;
    background: radial-gradient(circle at center, rgba(18, 26, 47, 0.9) 0%, var(--bg-dark) 80%); /* Highlight center behind slider */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-slider {
    padding: 2rem 1rem 4rem !important;
    /* Space for pagination */
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    border-color: rgba(250, 204, 21, 0.2);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-yellow);
    opacity: 0.2;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.test-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-yellow);
    box-shadow: 0 0 10px var(--accent-yellow-glow);
}

.author-info h4 {
    font-family: var(--font-heading);
    color: var(--accent-yellow);
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.swiper-pagination-test {
    text-align: center;
    margin-top: 2rem;
}

.swiper-pagination-test .swiper-pagination-bullet {
    background: var(--text-muted);
}

.swiper-pagination-test .swiper-pagination-bullet-active {
    background: var(--accent-yellow);
}

/* -------------------------------------
   FOOTER
-------------------------------------- */
.footer {
    background: #0f172a; /* Slate 900 for dark footer contrast */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 5rem 0 2rem;
    color: #f8fafc; /* Force light text on dark footer */
}

.footer .logo-sea {
    color: #f8fafc;
}

.footer p, .footer ul a {
    color: #94a3b8; /* Slate 400 */
}

.footer h4 {
    color: #f8fafc;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer ul a {
    color: var(--text-muted);
}

.footer ul a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--accent-yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.social-links a:hover {
    background: var(--accent-yellow);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--accent-yellow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* -------------------------------------
   SCROLL REVEAL ANIMATIONS
-------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}




/* =============================================
   RESPONSIVE DESIGN — FULL DEVICE SUPPORT
   Replace the existing responsive section
   in style.css with this entire block
   ============================================= */

/* ------------------------------------------
   LARGE TABLETS & SMALL LAPTOPS (max 1100px)
------------------------------------------ */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* ------------------------------------------
   TABLETS (max 992px)
------------------------------------------ */
@media (max-width: 992px) {
    /* Hero */
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Businesses */
    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-card {
        min-height: 420px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    /* Section titles */
    .section-title {
        font-size: 2.8rem;
    }
}

/* ------------------------------------------
   LARGE PHONES / SMALL TABLETS (max 768px)
------------------------------------------ */
@media (max-width: 768px) {
    /* Global */
    .container {
        padding: 0 1.25rem;
    }

    /* Navbar */
    .navbar {
        padding: 1rem 0;
    }

    .nav-links {
        display: none; /* Keep hidden — add hamburger if needed */
    }

    .logo {
        font-size: 1.4rem;
    }

    /* Hero Slider */
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
        padding: 0 0.5rem;
    }

    .btn {
        padding: 0.85rem 1.6rem;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        display: none; /* Hide on mobile to avoid clutter */
    }

    /* Section Headers */
    .section-title {
        font-size: 2.2rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    /* Businesses */
    .businesses-section {
        padding: 5rem 0;
    }

    .business-card {
        min-height: 360px;
        padding: 2rem 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    /* Always show card text on mobile (no hover) */
    .card-text {
        opacity: 1;
        max-height: 200px;
    }

    .card-content-wrap {
        transform: translateY(0);
    }

    /* Synergy blocks */
    .synergy-block p {
        font-size: 1rem;
    }

    /* Features */
    .why-choose-us {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-box {
        padding: 2rem 1.5rem;
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
        margin: 0;
    }

    .feature-box h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    /* Stats */
    .stats-section {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-text {
        font-size: 0.8rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 5rem 0;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .test-text {
        font-size: 1rem;
    }

    /* Partners */
    .partner-logo {
        width: 180px;
        font-size: 1.5rem;
    }

    .partner-logo span {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 3.5rem 0 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

/* ------------------------------------------
   SMALL PHONES (max 480px)
------------------------------------------ */
@media (max-width: 480px) {
    /* Hero */
    .hero-title {
        font-size: 1.85rem;
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    /* Section */
    .section-title {
        font-size: 1.9rem;
    }

    /* Business cards */
    .business-card {
        min-height: 300px;
        border-radius: 14px;
    }

    /* Stats — keep 2 columns but smaller */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Features — single column stacked */
    .feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon-wrapper {
        margin: 0 auto;
    }

    /* Synergy connector lines shorter on tiny screens */
    .synergy-line {
        height: 40px;
    }

    .synergy-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    /* Testimonial */
    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }

    /* Footer */
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* ------------------------------------------
   VERY SMALL PHONES (max 360px)
------------------------------------------ */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stats-grid {
        gap: 0.5rem;
    }
}






/* -------------------------------------
   FLOATING CONTACT BUTTONS
-------------------------------------- */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* WhatsApp - Green */
.float-btn.whatsapp {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.float-btn.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Phone - Dark Blue */
.float-btn.phone {
    background: #1a3a5c;
    box-shadow: 0 4px 15px rgba(26, 58, 92, 0.4);
}

.float-btn.phone:hover {
    box-shadow: 0 8px 25px rgba(26, 58, 92, 0.6);
}

/* Email - Orange/Amber */
.float-btn.email {
    background: #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.float-btn.email:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .floating-buttons {
        right: 14px;
        bottom: 25px;
        gap: 10px;
    }

    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }
}