:root {
    --primary-color: #1a1a1a;
    --accent-color: #E31E24;
    /* Logo Red */
    --accent-secondary: #0C4da2;
    /* Logo Blue */
    --text-light: #ffffff;
    --text-dark: #222222;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-off-white: #f4f6f9;
    --bg-dark: #0a1128;
    /* Deep Navy */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --spacing-container: 1200px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(12, 77, 162, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #ffffff;
    /* Solid white to match logo bg */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    max-width: var(--spacing-container);
    margin: 0 auto;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    transition: var(--transition);
}

.nav-links a:not(.btn-contact)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, var(--accent-color), var(--accent-secondary));
    transition: var(--transition);
}

.nav-links a:not(.btn-contact):hover::after {
    width: 100%;
}

.btn-contact {
    padding: 10px 24px;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    transition: var(--transition);
    color: var(--accent-color);
}

.btn-contact:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: var(--text-light);
    border-color: transparent;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?q=80&w=2131&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--accent-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .highlight {
    font-style: italic;
    background: linear-gradient(135deg, #FFD700, #ff8a00);
    /* Gold highlight for contrast against Red/Blue */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-color);
    /* Signiture Red */
    color: var(--text-light);
    border: none;
    margin-right: 15px;
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(227, 30, 36, 0.6);
    background: #c91b1f;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    border-color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Marquee Section */
.marquee-section {
    background: linear-gradient(to right, var(--accent-secondary), #083b82);
    /* Blue Gradient */
    padding: 25px 0;
    overflow: hidden;
    color: var(--text-light);
    border-bottom: none;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-item i {
    font-size: 1.5rem;
    color: var(--text-light);
    /* White icons on red bg */
}

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

    100% {
        transform: translateX(-33.33%);
        /* Move 1/3 since we have 3 sets */
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

.service-card {
    background: var(--bg-light);
    padding: 40px;
    transition: var(--transition);
    border-top: none;
    box-shadow: var(--shadow-soft);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Works Section */
/* Works Section */
.works-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    overflow: hidden;
    /* Hide scrollbar for the marquee */
}

/* Works Marquee Container */
.works-marquee-container {
    width: 100%;
    overflow: hidden;
}

.works-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollGallery 40s linear infinite;
    padding: 20px 0;
    /* Space for hover effects */
}

.work-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    width: 350px;
    /* Fixed width for standard items */
    height: 300px;
    flex-shrink: 0;
    /* Prevent shrinking */
    transition: var(--transition);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.work-item:hover img {
    transform: scale(1.05);
}

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

    100% {
        transform: translateX(-50%);
        /* Move half the width (one full set of items) */
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.features-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-off-white);
    padding: 15px 20px;
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.feature-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.95)), url('https://images.unsplash.com/photo-1595853035070-59a39fe84de3?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
}

.contact-info.center-text {
    max-width: 1000px;
    /* Increased to fit all 3 cards in one row */
    width: 100%;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    font-size: 1.2rem;
}

.contact-details-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* Slightly reduced gap */
    flex-wrap: wrap;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: 8px;
    min-width: 250px;
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.detail-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.detail-card strong {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.detail-card p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: #000;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* simple hide for simplicity, in real app would be side menu */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        margin: 5px auto;
        background-color: var(--primary-color);
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-details-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .detail-card {
        width: 100%;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 40px;
    }

    .btn {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }
}

/* Sticky Contact Buttons */
.sticky-contact-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.sticky-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--accent-secondary);
    /* Using the brand blue */
}

/* Ensure links in contact details are styled nicely */
.detail-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-card a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}