:root {
    /* Premium Golden Enterprise Palette */
    --bg-main: #ffffff;
    --bg-slate: #fbf9f4; /* Very light warm slate/beige */
    --bg-darker: #f5f2eb;

    /* Brand Accents */
    --accent-navy: #0B2D5C; 
    --accent-gold: #D4AF37; 
    --accent-gold-dark: #b5952f;
    --accent-crimson: #C8102E; /* Kept for legacy */

    /* Text Colors for Light Theme */
    --text-primary: #0f172a;
    --text-muted: #334155;

    /* Elevated Borders & Soft Gold Shadows */
    --border-soft: rgba(212, 175, 55, 0.2);
    --shadow-sm: 0 4px 6px -1px rgba(212, 175, 55, 0.05);
    --shadow-md: 0 10px 20px -3px rgba(212, 175, 55, 0.1);
    --shadow-lg: 0 20px 40px -5px rgba(212, 175, 55, 0.15);
    --glow-gold: 0 0 25px rgba(212, 175, 55, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body.light-theme {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(11, 45, 92, 0.04) 0%, transparent 45%),
        url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23d4af37" fill-opacity="0.04"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

ul {
    list-style: none;
}

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

/* Typography & Utilities */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-navy);
}

.text-muted {
    color: var(--text-muted);
}

.text-lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #334155;
    font-weight: 400;
}

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

.text-white {
    color: #ffffff !important;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 4rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.w-100 {
    width: 100%;
}

.fw-600 {
    font-weight: 600;
}

.max-w-sub {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-navy), var(--accent-crimson));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 💫 Dynamic Premium Gradient Headlines */
.gradient-headline {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 40%, #facc15 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
    display: inline-block;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

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

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

.section-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent-crimson);
    margin-bottom: 1rem;
    display: inline-block;
    font-weight: 700;
}

/* Backgrounds & Cards */
.bg-slate {
    background-color: var(--bg-slate);
    background-image: linear-gradient(rgba(255, 255, 255, 0.96), rgba(251, 249, 244, 0.98)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=2668&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.bg-navy {
    background-color: var(--accent-navy);
}

.solid-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--glow-gold);
    border-color: var(--accent-gold);
}

/* Super Premium Soft Icons */
.icon-soft-premium {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 1rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.icon-soft-premium svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-gold-dark);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.feature-list li:hover .icon-soft-premium {
    transform: translateY(-3px) scale(1.05);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 1), 0 6px 15px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.feature-list li:hover .icon-soft-premium svg {
    stroke: var(--accent-navy);
}

/* White Glass Icons for Dark Navy Backgrounds */
.icon-glass-white {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-glass-white svg {
    width: 26px;
    height: 26px;
    stroke: #ffffff;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.info-list li:hover .icon-glass-white {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 25px rgba(200, 16, 46, 0.3);
}

.red-stroke {
    stroke: rgba(212, 175, 55, 0.85); /* Golden visual on original markup class */
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.service-card-clean:hover .red-stroke {
    stroke: var(--accent-navy);
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 5px;
    font-weight: bold;
}

.btn {
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn:hover .arrow {
    transform: translateX(6px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #fff;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg) translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #facc15, var(--accent-gold));
    transform: translateY(-3px);
    color: #fff;
}

.btn-primary:hover::after {
    transform: rotate(30deg) translateX(100%);
}

.btn-secondary {
    background: var(--bg-slate);
    color: var(--accent-navy);
    border: 1px solid var(--border-soft);
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: var(--accent-navy);
}

/* Navbar (Attractive Glowing Tab Bar) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.85); /* Light glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 40px rgba(11, 45, 92, 0.05);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 15px 50px rgba(11, 45, 92, 0.08), 0 0 30px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(212, 175, 55, 0.3);
}

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

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.logo-link:hover {
    transform: scale(1.03);
}

/* 2x Logo Size */
.nav-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links li a {
    position: relative;
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links li a:hover {
    color: var(--accent-gold-dark);
    background: rgba(212, 175, 55, 0.05);
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-nav {
    font-size: 1rem;
    padding: 1rem 2.4rem;
    background: linear-gradient(135deg, var(--accent-crimson), #900010);
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.35);
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-nav:hover {
    background: linear-gradient(135deg, #e01b35, var(--accent-crimson));
    color: #fff;
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.5);
    transform: translateY(-3px);
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent-navy);
    border-radius: 3px;
    transition: 0.3s;
}

/* 1. Hero Section */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    background: transparent;
    position: relative;
}

#network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: rgba(200, 16, 46, 0.1);
    color: var(--accent-crimson);
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-feature-img {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    object-fit: cover;
    height: 350px;
    border: 1px solid var(--border-soft);
    margin-top: 3rem;
    animation: floatImage 6s ease-in-out infinite;
    box-shadow: var(--shadow-lg), 0 15px 35px rgba(6, 182, 212, 0.15);
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* Typewriter Cursor */
.typewriter-cursor {
    display: inline-block;
    width: 4px;
    height: 0.9em;
    background-color: var(--accent-crimson);
    margin-left: 5px;
    vertical-align: baseline;
    animation: blinkCursor 0.8s step-end infinite;
}

@keyframes blinkCursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Trusted Partners Marquee */
.partner-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 7rem;
    align-items: center;
    animation: scrollMarquee 35s linear infinite;
}

.marquee-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.35;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    white-space: nowrap;
}

.marquee-brand:hover {
    opacity: 1;
    color: var(--accent-navy);
    transform: scale(1.08) translateY(-3px);
    text-shadow: 0 8px 15px rgba(11, 45, 92, 0.15), 0 0 25px rgba(200, 16, 46, 0.5);
}

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

    100% {
        transform: translateX(calc(-50% - 2.5rem));
    }
}

/* Global Section */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

/* 2. About */
.layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.about-features {
    padding: 3rem;
    display: flex;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feat-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, var(--accent-navy), var(--accent-gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feat-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* 3. Services Clean Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.span-full {
    grid-column: span 2;
}

.service-card-clean {
    display: flex;
    flex-direction: column;
}

.card-img-header {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-soft);
}

.card-img-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-clean:hover .card-img-header img {
    transform: scale(1.08);
}

.service-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.15));
    padding: 1rem;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: fit-content;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.service-card-clean:hover .service-icon {
    transform: scale(1.1) translateY(-5px);
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.9), 0 8px 20px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.2);
}

.service-content h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--accent-navy) 20%, #475569 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-content p {
    color: var(--text-muted);
    font-size: 1rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.mini-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-blue {
    background: rgba(11, 45, 92, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-navy);
    border: 1px solid rgba(11, 45, 92, 0.1);
}

/* 4. Counters */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.counter-card {
    padding: 3rem 1.5rem;
    border-radius: 16px;
}

.count,
.counter-card span {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
    letter-spacing: -2px;
}

.counter-card p {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 5. Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ind-card {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.ind-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ind-card p {
    font-size: 0.95rem;
}

/* Trust / Testimonials Modern */
.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(to right, #ffffff, #f1f5f9);
    border: 1px solid var(--border-soft);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--accent-crimson);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    font-family: serif;
}

/* Contact Section */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    padding: 4rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.contact-info::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--accent-crimson);
    filter: blur(80px);
    opacity: 0.3;
}

.list-bg-red {
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.info-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.info-list a {
    transition: opacity 0.3s;
}

.info-list a:hover {
    opacity: 0.8;
}

.contact-form {
    padding: 4rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.row-group {
    display: flex;
    gap: 1.5rem;
}

.col {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-slate);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-navy);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(11, 45, 92, 0.1);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-soft);
    padding: 5rem 0 2rem;
    background: var(--bg-darker);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: transform 0.3s, color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-soft);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulseWA 2s infinite;
}

@keyframes pulseWA {
    0% { transform: scale(0.95); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-wa:hover {
    animation: none;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* JS Trigger Classes */
.js-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* ========================================================================= */
/* MEDIA QUERIES (TABLET & MOBILE RESPONSIVENESS)                           */
/* ========================================================================= */

/* TABLET (Laptops & iPads: max-width 1024px) */
@media (max-width: 1024px) {
    .section {
        padding: 4rem 0;
    }

    .layout-split {
        gap: 2rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        gap: 2rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .card-img-header {
        height: 180px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* MOBILE (Phones: max-width 768px) */
@media (max-width: 768px) {
    .container {
        width: 92%;
    }

    .section {
        padding: 3rem 0;
    }

    /* Navbar Collapse */
    .nav-links {
        display: none;
        /* Add JS toggle logic if necessary, hidden by default */
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-logo {
        height: 50px;
    }

    /* Slightly smaller for mobile */
    .navbar {
        padding: 1rem 0;
    }

    /* Hero Adjustments */
    .hero {
        padding-top: 120px;
        min-height: unset;
        padding-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
        justify-content: center;
    }

    .hero-feature-img {
        height: 220px;
        margin-top: 2rem;
    }

    /* Stack Layouts */
    .layout-split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .span-full {
        grid-column: span 1;
    }

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

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

    .footer-brand {
        grid-column: span 1;
    }

    /* Inner Padding Shrink */
    .about-features,
    .contact-form,
    .contact-info {
        padding: 2rem;
    }

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

    .row-group {
        flex-direction: column;
        gap: 0;
    }

    h2.section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .floating-wa {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .floating-wa svg {
        width: 24px;
        height: 24px;
    }
}