:root {
    --primary-blue: #0000a8;
    --secondary-blue: #000085;
    --text-dark: #333333;
    --text-light: #ffffff;
    --accent-teal: #00b0ca;
    --bg-light: #f4f6f8;
    --bg-white: #ffffff;
    --bg-grey: #fcfcfc;
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-subtle: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.align-start {
    align-items: flex-start !important;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Navbar */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all var(--transition-fast);
}

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

.logo img {
    height: 60px;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
    transition: color var(--transition-fast);
}

.nav-links li a:hover {
    color: var(--primary-blue);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-blue);
    transition: width var(--transition-fast);
}

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

/* Futuristic Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    /* Large cinematic feel */
    min-height: 500px;
    overflow: hidden;
    background-color: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s ease-out;
    transform: scale(1.05);
    /* Slight zoom-in effect on active */
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 168, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
    /* Futuristic blue tint */
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-content {
    max-width: 800px;
    padding: 0 30px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out 0.4s;
    /* Delays text entry slightly after image slide */
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.6);
}

.slide-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-weight: 300;
}

.highlight-glow {
    color: #00d2ff;
    /* Cyberpunk cyan */
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.8), 0 0 20px rgba(0, 210, 255, 0.4);
    font-weight: 900;
}

.slide-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #00d2ff;
    color: #00d2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.slide-btn:hover {
    background: #00d2ff;
    color: #000;
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.6);
    transform: scale(1.05);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn:hover {
    background: rgba(0, 210, 255, 0.4);
    border-color: #00d2ff;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #00d2ff;
    transform: scale(1.3);
    box-shadow: 0 0 10px #00d2ff;
}

.services-transition {
    position: absolute;
    bottom: -1px;
    width: 100%;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, transparent, var(--primary-blue));
    padding-top: 40px;
}

/* Base Flex Layout */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.split-half {
    flex: 1;
    min-width: 320px;
}

/* Enquiry Section */
.enquiry-section {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 90px 0;
}

.enquiry-section h2,
.enquiry-section p {
    color: var(--text-light);
}

.enquiry-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.enquiry-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 450px;
    line-height: 1.8;
}

.enquiry-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all var(--transition-fast);
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--text-light);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.terms {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-align: center;
    margin-top: 20px;
}

.terms a {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.8);
}

.terms a:hover {
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-grey);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.separator {
    width: 60px;
    height: 2px;
    background-color: #ddd;
    border: none;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #222;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #546e7a;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 25px 0 45px;
    transition: all var(--transition-fast);
}

.whatsapp-btn:hover {
    background-color: #455a64;
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.address-block,
.hours-block {
    margin-bottom: 35px;
}

.address-block h4,
.hours-block h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.address-block p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.phone-number {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333 !important;
}

.hours-dropdown p {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 500;
}

.hours-dropdown span {
    font-weight: 600;
    color: #222;
}

.contact-map {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 500px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.contact-map:hover img {
    transform: scale(1.05);
}

/* Services Grid */
.services-section {
    padding: 40px 0 100px;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    height: 400px;
    background-color: #f9f9f9;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity var(--transition-fast);
}

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

.service-card:hover .service-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, a0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.service-overlay h3 {
    color: white;
    font-size: 2.2rem;
    text-align: center;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    padding: 20px;
    width: 100%;
    line-height: 1.2;
}

/* Brands Section */
.brands-section {
    background-color: var(--primary-blue);
    padding: 70px 0;
    color: white;
    overflow: hidden;
}

.brands-section h2 {
    color: white;
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 600;
}

.brands-marquee {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
}

.brands-track {
    display: inline-flex;
    gap: 50px;
    animation: marquee 30s linear infinite;
}

.brand {
    background-color: white;
    padding: 20px 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-fast);
}

.brand:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.brand-text.intel {
    color: #0071C5;
    font-family: monospace;
}

.brand-text.lenovo {
    color: #E2231A;
}

.brand-text.acer {
    color: #82C341;
    font-style: italic;
}

.brand-text.msi {
    color: #FF0000;
    font-weight: 900;
}

.brand-text.lg {
    color: #A50034;
}

.brand-text.fujitsu {
    color: #FF0000;
}

.brand-text.samsung {
    color: #1428A0;
    letter-spacing: 1px;
}

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

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

/* Floating Chat */
.floating-chat-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #3b2ddb;
    /* Adjusted closer to the image */
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(59, 45, 219, 0.4);
    cursor: pointer;
    z-index: 1001;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
    animation: float 4s ease-in-out infinite;
}

.floating-chat-btn:hover {
    transform: scale(1.1);
    background-color: #271aa0;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

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

/* Animations - Reveal on Scroll */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-left {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.appear {
    opacity: 1;
    transform: translate(0) scale(1);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links li a {
        font-size: 0.8rem;
    }

    .enquiry-section {
        padding: 60px 0;
    }

    .contact-section {
        padding: 60px 0;
    }

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

    .service-card {
        height: 350px;
    }

    .contact-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 20px;
    }

    .enquiry-content h2,
    .section-title {
        font-size: 2.2rem;
    }

    .enquiry-form-container h2 {
        font-size: 1.6rem;
    }

    .brands-track {
        animation-duration: 20s;
    }

    .split-half {
        min-width: 100%;
    }

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