* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

:root {
    --color-cyan: #06b6d4;
    --color-purple: #a855f7;
    --color-pink: #ec4899;
    --color-blue: #3b82f6;
    --color-green: #10b981;
    --color-orange: #f97316;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: hidden;
    width: 100%;
}

/* LIGHT BACKGROUND (Vanta Clouds) */
body {
    background: radial-gradient(circle at 50% -20%, #050b28, #000213);
    color: #e2e8f0;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    position: relative;
}



header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    /* background-color: #22d3ee !important;
    align-items: center;
    background: linear-gradient(180deg, rgba(120, 220, 255, 0.25), rgba(0, 80, 130, 0.35));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    /* border-bottom: 2px solid #5be0ff; */
    /* Intense Triple-Layered Cyan Glow */
    /* box-shadow:
        0 0 8px #5be0ff,
        0 0 20px #5be0ff,
        0 0 40px rgba(91, 224, 255, 0.6); */
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 20;
}

.logo-icon {
    height: 85px;
    /* Increased size */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.4));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

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

header.scrolled {
    background: linear-gradient(180deg, rgba(5, 11, 40, 0.95), rgba(1, 4, 18, 0.98));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    align-items: center;
    position: relative;
    /* background: rgba(255, 255, 255, 0.03); */
    padding: 6px;
    border-radius: 50px;
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
}

.nav-indicator {
    position: absolute;
    top: 7px;
    height: calc(100% - 14px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
}

nav a {
    color: #fff;
    padding: 10px 22px;
    text-decoration: none;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    transition: 0.3s;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 500;
}

nav a.active {
    opacity: 1;
    color: #fff;
}

nav a i {
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.7);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

/* Attractive Gradient Icons for Active/Hover */
nav a.active i,
nav a:hover i {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple), var(--color-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    opacity: 1 !important;
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.4));
}

/* mobile menu */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.15);
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s, transform 0.3s;
    z-index: 20;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.5);
}

@media(max-width:768px) {
    nav {
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        width: auto;
        background: linear-gradient(180deg, rgba(5, 11, 40, 0.98), rgba(1, 4, 18, 0.98));
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 25px 20px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
        /* Visibility state */
        display: flex;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-15px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 2000;
        margin-top: 10px;
    }

    nav.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    nav a {
        margin: 5px 0;
        padding: 12px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        width: 100%;
        text-align: left;
        transition: all 0.3s ease;
        opacity: 0.8;
        color: #fff;
        border-radius: 12px;
    }

    nav a.active {
        opacity: 1;
        color: var(--color-cyan);
        background: rgba(6, 182, 212, 0.1);
        padding-left: 20px;
        border-left: none;
    }

    nav a:last-child {
        border-bottom: none;
    }

    nav a:hover {
        color: var(--color-cyan);
        opacity: 1;
        background: rgba(6, 182, 212, 0.05);
    }

    .menu-toggle {
        display: flex;
    }
}

#about,
#contact {
    position: relative;
    overflow: hidden;
}

nav a:hover {
    opacity: 1
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    /* overflow: hidden; Removed to prevent clipping of long content */
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    z-index: 2;
    width: 100%;
}

#home {
    padding-top: 100px;
    padding-bottom: 120px;
}

.hero-flex,
.section-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    min-height: 70vh;
    flex-wrap: wrap;
    width: 100%;
}

.section-flex-reverse {
    flex-direction: row-reverse;
}

.hero-content {
    flex: 1.2;
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
}

.section-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 10%, var(--color-cyan) 40%, var(--color-purple) 70%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    transform: none;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.section-content h2.revealed,
.section-content h3.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 30%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    transform: none;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.1s;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.section-content {
    flex: 1;
    min-width: 280px; /* Reduced to fit mobile screens better */
    width: 100%;
    z-index: 2;
    text-align: center;
}

.hero-visual,
.section-visual {
    flex: 0.8;
    height: 400px;
    /* Increased from 300px to better fit the globe */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .section-flex {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
        padding-top: 40px;
    }

    .section-visual {
        min-height: 300px;
        width: 100%;
    }
}

.hero-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple), var(--color-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    color: #cbd5e1;
    opacity: 0.9;
    margin-top: 20px;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 700px;
    margin-left: 0;
}

.cta-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple), var(--color-pink));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5), 0 0 15px rgba(236, 72, 153, 0.3);
}

.btn-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-cyan);
    transform: translateY(-2px);
}

#services {
    padding-bottom: 200px;
}

.services,
.portfolio,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {

    .services,
    .portfolio,
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 18px;
    backdrop-filter: blur(16px);
    color: #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
    opacity: 0;
    transition: 0.4s;
}

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

.card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.1);
}

/* service image styling */
.service-img-container {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    animation: float 4s ease-in-out infinite;
}

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

/* cinematic matrix canvas */
#matrix {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.25;
    filter: blur(1px);
    pointer-events: none;
}

/* ═══ GLOBE/PARTICLE CANVAS ═══ */
#globe-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s ease;
}



/* 📱 WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 20;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6), 0 0 20px rgba(6, 182, 212, 0.4);
}

/* Bug #16 Fix: Smaller WhatsApp button on mobile to avoid overlapping content */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 48px;
        height: 48px;
        bottom: 18px;
        right: 16px;
        font-size: 22px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    }
}

/* ═══ FOOTER STYLES ═══ */
.footer {
    background: #0b0e14;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
}

.footer-gradient-line {
    height: 4px;
    background: linear-gradient(to right, var(--color-cyan), var(--color-purple), var(--color-pink));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 4rem 0;
    text-align: left;
}

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

@media (max-width: 1024px) {
    .footer-column-wide {
        grid-column: span 1;
    }
}

.footer-logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple), var(--color-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-text {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
    color: var(--color-cyan);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

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

.footer-links a:hover {
    color: var(--color-cyan);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-heart {
    color: #ef4444;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 4px;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-cyan);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ═══ CONTACT SECTION STYLES ═══ */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(168, 85, 247, 0.05), rgba(236, 72, 153, 0.05));
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    color: var(--color-cyan);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 10%, var(--color-cyan) 40%, var(--color-purple) 70%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0rem;
    opacity: 1;
    transform: none;
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.section-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-info-text {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.contact-info-icon {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple), var(--color-pink));
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 20px;
    color: white;
}

.contact-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.contact-info-card a,
.contact-info-card p {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    word-break: break-all;
    overflow-wrap: break-word;
}

.contact-social h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

.contact-social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    color: var(--color-cyan);
}

/* ═══ SUB-SECTION SLIDER STYLES ═══ */
.sub-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.sub-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 0;
    /* Full width slides usually */
}

.sub-slide {
    flex: 0 0 100%;
    width: 100%;
}

/* Hero Floating Image */
.floating-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(6, 182, 212, 0.3));
}

@keyframes float {

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

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

/* Redesigned Slider Controls */
.sub-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the controls */
    gap: 25px;
    margin-top: 40px;
}

.sub-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.sub-nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-cyan);
}

.sub-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sub-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.sub-dot.active {
    width: 24px;
    /* Pill shape */
    border-radius: 4px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-purple), var(--color-pink));
}

/* Contact Section Background Adjustment */
#contact {
    position: relative;
    overflow: hidden;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-purple), var(--color-pink));
    color: white;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

/* ═══ FOOTER STYLES ═══ */
.site-footer {
    background: linear-gradient(180deg, #03071a 0%, #000213 100%);
    border-top: 1px solid rgba(6, 182, 212, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-purple), var(--color-pink), transparent);
}

.footer-inner {
    padding: 60px 20px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 50px;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.fsoc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.fsoc-icon:hover {
    background: rgba(6, 182, 212, 0.15);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
}

.footer-links-col h4.footer-col-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-col h4.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-purple));
    border-radius: 2px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links-col ul li a i {
    font-size: 10px;
    color: var(--color-cyan);
    opacity: 0.7;
    transition: 0.3s;
}

.footer-links-col ul li a:hover {
    color: var(--color-cyan);
    gap: 12px;
}

.footer-links-col ul li a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-list li i {
    color: var(--color-cyan);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-list li a:hover {
    color: var(--color-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.85rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-credit i {
    margin: 0 3px;
    vertical-align: middle;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* 📱 Responsive Logic — Consolidated at end for priority */

@media (max-width: 1200px) {

    .services,
    .portfolio,
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 991px) {
    section {
        min-height: auto;
        padding: 60px 20px;
    }

    .hero-flex,
    .section-flex {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
    }

    .hero-visual,
    .section-visual {
        min-height: 200px;
        height: auto;
        order: 2;
        margin-top: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .services {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }

    h2 {
        font-size: 1.8rem; /* Adjusted for consistency */
        overflow-wrap: break-word;
    }

    h3 {
        font-size: 1.4rem; /* Adjusted for better mobile view */
        overflow-wrap: break-word;
    }
}

@media (max-width: 600px) {
    section {
        padding: 50px 15px;
    }

    .container {
        padding: 0 10px;
    }

    h2 {
        font-size: 1.5rem; /* Further reduced for small mobile */
        margin-bottom: 15px;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .service-img-container {
        height: 200px;
    }

    .services {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 10%, var(--color-cyan) 40%, var(--color-purple) 70%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0rem;
    opacity: 1;
    transform: none;
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.floating-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(6, 182, 212, 0.3));
}

@media (max-width: 480px) {
    .contact-form-card {
        padding: 2rem 1.25rem !important;
    }

    .hero-content h1 {
        font-size: 2.6rem !important;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.15rem;
        margin-top: 15px;
    }

    .stat-card {
        padding: 15px !important;
    }
}

@media (max-width: 768px) {
    header {
        padding-top: 20px;   /* ⬅️ adds space above logo */
        padding-bottom: 10px;
    }

    .logo-icon {
        height: 60px; /* slightly smaller for mobile */
    }
}