/* -------------------------------------------------------------------------- */
/*                                Global Styles                               */
/* -------------------------------------------------------------------------- */
:root {
    /* Colors */
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #0071e3;
    /* Apple Blue */
    --accent-hover: #0077ed;
    --bg-color: #ffffff;
    --light-bg: #f5f5f7;
    --dark-bg: #111111;
    --text-color: #1d1d1f;
    --light-text: #86868b;
    --text-inverse: #ffffff;
    --border-color: #d2d2d7;

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing System */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 2rem;
    /* 32px */
    --spacing-lg: 4rem;
    /* 64px */
    --spacing-xl: 6rem;
    /* 96px */

    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;

    /* Animation */
    --transition-base: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img,
svg {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* -------------------------------------------------------------------------- */
/*                                 Typography                                 */
/* -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    line-height: 1.2;
}

h1 {
    font-size: 4.5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1.05rem;
    color: var(--text-color);
}

.section-title {
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Light text utilities for dark sections */
.text-inverse h2,
.text-inverse p,
.text-inverse h3,
.text-inverse .section-subtitle {
    color: var(--text-inverse);
}

.text-inverse p {
    opacity: 0.9;
}

/* -------------------------------------------------------------------------- */
/*                                   Buttons                                  */
/* -------------------------------------------------------------------------- */
.btn-primary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 99px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition-base);
    z-index: -1;
}

.btn-primary:hover {
    color: white;
}

.btn-primary:hover::before {
    width: 100%;
}

/* Hero & Section Buttons (White to Black) */
.btn-glow,
.btn-glass {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

.btn-glow::before,
.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: white;
    transition: var(--transition-base);
    z-index: -1;
}

.btn-glow:hover,
.btn-glass:hover {
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: white;
}

.btn-glow:hover::before,
.btn-glass:hover::before {
    width: 100%;
}

/* -------------------------------------------------------------------------- */
/*                                   Navbar                                   */
/* -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: var(--transition-base);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 200px;
    width: auto;
    border-radius: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--primary-color);
}

.tagline {
    font-size: 0.75rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* -------------------------------------------------------------------------- */
/*                                    Hero                                    */
/* -------------------------------------------------------------------------- */
.hero-full {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
    background-color: black;
    /* Fallback */
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    z-index: 2;
}

.hero-content-full {
    position: relative;
    z-index: 3;
    padding-top: var(--header-height);
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-full h1 {
    color: white;
    font-size: 4.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content-full p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* -------------------------------------------------------------------------- */
/*                                   Brands (Colorful)                        */
/* -------------------------------------------------------------------------- */
.brands-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
    /* Clean White */
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: var(--spacing-md) 0;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 40s linear infinite;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    /* REMOVED GRAYSCALE FOR COLORFUL ORIGINAL LOGOS */
    opacity: 1;
    transition: var(--transition-base);
}

.brand-item:hover {
    transform: scale(1.1);
    cursor: pointer;
}

/* Ensure SVGs render true color */
.brand-item svg {
    height: 50px;
    /* Slightly larger */
    width: auto;
    /* fill: currentColor; REMOVED to allow original colors */
}

/* Custom Text Logos (Fallback) */
.logo-samsung {
    color: #1428a0;
    font-family: sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.8rem;
}

.logo-motorola {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #5c6264;
}

.moto-logo {
    background: #5c6264;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.logo-oneplus {
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.logo-xiaomi {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-acer {
    font-family: sans-serif;
    font-weight: 900;
    color: #83B81A;
    letter-spacing: -1px;
    font-size: 2rem;
}

.logo-realme {
    font-weight: 800;
    color: #FFC915;
    letter-spacing: -1px;
    font-size: 2rem;
}

.logo-boat {
    font-weight: 800;
    color: #000;
    letter-spacing: -1px;
    font-size: 2rem;
}

.logo-dell {
    font-family: sans-serif;
    font-weight: 900;
    color: #007DB8;
    border: 2px solid #007DB8;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.logo-lenovo {
    background: #E2231A;
    color: white;
    padding: 4px 10px;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* -------------------------------------------------------------------------- */
/*                                  Services (Grey)                           */
/* -------------------------------------------------------------------------- */
.services-section {
    background-color: var(--light-bg);
    /* Grey background */
    padding: var(--spacing-xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 72px;
    height: 72px;
    background: var(--light-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    transition: var(--transition-base);
}

.service-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotate(10deg);
}

/* -------------------------------------------------------------------------- */
/*                               Why Us (Black/Dark)                          */
/* -------------------------------------------------------------------------- */
.why-us-section {
    background-color: var(--dark-bg);
    /* Black Background */
    color: white;
    padding: var(--spacing-xl) 0;
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content h2,
.why-us-content .feature-list li {
    color: white;
}

.why-us-content .feature-list i {
    color: #0cce6b;
    /* Bright Green */
}

/* -------------------------------------------------------------------------- */
/*                               Mission (White)                              */
/* -------------------------------------------------------------------------- */
.mission-vision-section {
    background-color: white;
    padding: var(--spacing-xl) 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mv-card {
    text-align: center;
}

.mv-image {
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    border-radius: 32px;
}

/* -------------------------------------------------------------------------- */
/*                                   Footer (Grey)                            */
/* -------------------------------------------------------------------------- */
.footer {
    background-color: #f0f0f2;
    /* Light Grey */
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-top: 1px solid #e1e1e1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: var(--spacing-lg);
}

.footer-map iframe {
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    height: 300px;
}

.copyright {
    border-top: 1px solid #d1d1d1;
    padding-top: 30px;
    color: var(--light-text);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin-left: 40px;
}

.footer-links1 {
    padding-right: 20px;
}

/* -------------------------------------------------------------------------- */
/*                                 Responsive                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }

    .hero-content-full h1 {
        font-size: 3rem;
    }

    .hero-content-full p {
        font-size: 1.2rem;
    }

    /* Mobile Navigation */
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        /* Ensure flex layout is active */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
        /* Slide in */
    }

    .nav-links a {
        font-size: 1.4rem;
        margin: 15px 0;
        color: var(--primary-color);
        width: 100%;
        text-align: center;
    }

    .why-us-container,
    .mv-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
        text-align: left;
        /* Keep icons aligned */
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns a {
        width: 100%;
        text-align: center;
    }

    .nav-container {
        padding: 0 20px;
    }

    .brand-item {
        min-width: 100px;
        height: 60px;
    }

    .brand-item svg {
        height: 35px;
    }

    .service-card {
        padding: 40px 25px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-map iframe {
        height: 250px;
    }
}

/* --- 14. FLOATING WHATSAPP --- */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.floating-whatsapp img {
    width: 54px;
    height: 54px;
}

.floating-whatsapp:hover {
    transform: scale(1.07);
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
        margin-bottom: 1.2rem;
    }

    .footer-brand-text {
        align-items: center;
    }

    .footer-col h4 {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
    }

    .footer-links1 {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .copyright p {
        margin-left: 0;
    }

    .footer-links1 {
        padding-right: 0;
    }
}





.footer-links1 span a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -3px;

    width: 0%;

    height: 3px;

    border-radius: 4px;

    background: linear-gradient(90deg, #5390f3 0%, #951CC4 100%);

    transition: width .28s ease;

}



.footer-links1 span a:hover {

    filter: brightness(0.85);

}



.footer-links1 span a:hover::after {
    width: 100%;
}

.footer-links1 {

    padding-right: 80px;

}



.footer-links1 span a {

    background: linear-gradient(90deg, #69a2ff 0%, #951CC4 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;



    position: relative;

    font-weight: 800;

    font-size: 14px;

    text-decoration: none;

    transition: opacity .2s ease, filter .2s ease;

}