/* CSS Variables */
:root {
    --primary-bg: #11050F;
    --secondary-bg: #1C0A19;
    --accent-color: #8C1C3D; /* Deep Maroon/Red from Subscribe button */
    --accent-hover: #b3244e;
    --text-primary: #FFFFFF;
    --text-muted: #A09CA3;
    --card-bg: #220C1F;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

/* Global Styles */
body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

/* Utilities */
.text-muted {
    color: var(--text-muted) !important;
}

.bg-darker {
    background-color: var(--secondary-bg);
}

.tracking-wide {
    letter-spacing: 2px;
}

.opacity-75 {
    opacity: 0.75;
}

/* Navbar */
.navbar {
    background-color: var(--primary-bg);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(17, 5, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 400;
    font-size: 1.05rem;
    margin: 0 12px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-muted) !important;
}

.btn-subscribe {
    background-color: var(--accent-color);
    color: #FFFFFF;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: var(--accent-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh; /* Increased from 60vh */
    min-height: 600px;
    margin-top: 90px;
    overflow: hidden;
}

.z-index-2 {
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 2px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 5, 15, 0.2);
}

/* Trust Section */
.brand-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
    color: #554C54;
    font-size: 2rem;
    margin: 0;
}

/* Stats Section */
.stat-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    color: var(--accent-color);
}

.stat-title {
    font-size: 1.25rem;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Services Section */
.section-heading {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.about-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-read-more {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    border-radius: 30px;
    padding: 10px 25px;
}

.btn-read-more:hover {
    background-color: var(--text-primary);
    color: var(--primary-bg);
}

.service-box {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.service-box:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.service-box:hover .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Projects Section */
.project-img-wrapper {
    height: 400px;
}

.project-img-wrapper img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-img-wrapper:hover img {
    transform: scale(1.05);
}

.project-item {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-item:hover {
    background-color: var(--accent-color);
    transform: translateX(10px);
}

.project-item:hover .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* CTA Section */
.cta-heading {
    font-size: 3rem;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--card-bg);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .hero-section {
        height: 60vh;
    }
}


/* Footer Styles */
.footer-section {
    background-color: var(--secondary-bg);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-logo-text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 300px;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: inline-block;
}

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

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 4px;
}

.newsletter-box {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
}

.newsletter-input {
    background-color: var(--primary-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 30px;
    width: 100%;
    margin-bottom: 15px;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(140, 28, 61, 0.2);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(140, 28, 61, 0.3);
}

.footer-bottom {
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

@media (max-width: 991px) {
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-heading {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

