:root {
    --primary-red: #d32f2f;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --accent: #e63946;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --light-gray: #c9bdbd; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }

/* Navbar */
header { background: var(--light-gray); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; max-width: 1200px; margin: auto; }
.logo { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; }
.logo span { color: var(--primary-red); }
.logo span:hover { cursor: all-scroll; color: rgb(240, 5, 5); }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { padding: 0 15px; }
.nav-links a { text-decoration: none; color: #333; font-weight: 800; }
.nav-links a:hover { color: var(--primary-red); }
.btn-nav { background: var(--primary-red); color: white !important; padding: 8px 20px; border-radius: 5px; }

/* Burger */
.burger { display: none; cursor: pointer; z-index: 1001; }
.burger div { width: 25px; height: 3px; background: #333; margin: 5px; transition: 0.3s; }

/* Hero Section with Animation */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(-45deg, #d32f2f, #8b1e1e, #1a1a1a, #2c3e50);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    z-index: 5;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 3.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    max-width: 850px;
}

.hero-content h1 { font-size: clamp(2rem, 8vw, 3.8rem); margin-bottom: 20px; }
.highlight { color: var(--accent); }
.cursor { color: var(--accent); animation: blink 0.8s infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* Services Grid */
.services-section { padding: 80px 5%; background: #f4f7f6; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { position: relative; height: 400px; border-radius: 15px; overflow: hidden;  box-shadow: 0 10px 25px rgba(0,0,0,0.1); cursor: pointer; }
.card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: 0.4s; }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.card-info { position: absolute; bottom: 0; padding: 25px; color: white; z-index: 2; }
.card-link { color: var(--accent); text-decoration: none; font-weight: bold; margin-top: 10px; display: inline-block; }

/* Footer */
footer { background: var(--dark-bg); color: white; padding: 60px 5% 20px; width: 100%; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1200px; margin: auto; }
.footer-links ul { list-style: none; }
.footer-links a { color: #ccc; text-decoration: none; }
.social-icons a { color: white; margin-right: 15px; font-size: 1.2rem; }

/* Modal */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 2000; padding: 20px; backdrop-filter: blur(5px); }
.modal-content { background: white; max-width: 600px; margin: 50px auto; padding: 30px; border-radius: 15px; position: relative; }
.close-modal { position: absolute; right: 20px; top: 10px; font-size: 2rem; cursor: pointer; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .burger { display: block; }
    .nav-links {
        position: fixed; right: 0; top: 0; height: 100vh; width: 70%;
        background: white; flex-direction: column; justify-content: center;
        transform: translateX(100%); transition: 0.5s; box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .nav-active { transform: translateX(0); }
    .nav-links li { margin: 15px 0; }
    .hero { height: 80vh; }
    .hero-content { padding: 2rem 1rem; width: 90%; }
    .footer-container { text-align: center; }
}

/* Burger Animation */
.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
/* --- Optimized Buttons --- */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px; /* Spacing between buttons */
    margin-top: 30px;
    flex-wrap: wrap; /* Allows them to wrap if they run out of space */
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    min-width: 180px; /* Ensures buttons look consistent */
    text-align: center;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* --- MOBILE BUTTON FIX --- */
@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }

    .btn-primary, .btn-secondary {
        width: 100%; /* Buttons take full width of their container */
        max-width: 300px; /* Prevents them from being too wide on tablets */
        margin: 5px 0;
        padding: 12px 20px; /* Slightly smaller padding for smaller screens */
    }
}
/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
    z-index: 3000;
    transition: transform 0.3s ease;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* TOOLTIP TEXT */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* PULSE ANIMATION */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-green 2s infinite;
}
/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #b30000; /* Red Carpet Primary */
    margin-bottom: 10px;
}

/* Layout Wrapper */
.contact-wrapper {
    display: flex;
    gap: 40px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Form Styling */
.contact-form {
    flex: 2;
    padding: 40px;
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    background-color: #b30000;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #8a0000;
}

/* Info Sidebar Styling */
.contact-info {
    flex: 1;
    background-color: #222;
    color: #fff;
    padding: 40px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.2rem;
    color: #d4af37; /* Gold Accent */
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.info-item p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-form, .contact-info {
        padding: 30px;
    }
}
/* Container creates the space for the map */
.map-responsive {
    overflow: hidden;
    padding-bottom: 400px; /* Set your desired height for desktop here */
    position: relative;
    height: 0;
    width: 100%; /* Force full width */
    border-radius: 8px; /* Matches your premium design */
    margin: 20px 0;
}

/* The iframe fills the container completely */
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Mobile Specific Adjustment */
@media (max-width: 768px) {
    .map-responsive {
        padding-bottom: 300px; /* Slightly shorter on mobile screens */
    }
}
/* Initial state: Hidden and moved down */
.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

/* Final state: Visible and in position */
.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: Slight hover zoom effect for that premium feel */
.service-card:hover .card-img {
    transform: scale(1.1);
}
.about-section {
            padding: 80px 10%;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .about-content {
            flex: 1;
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
        }

        /* Small accent line under heading */
        .about-content h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #007bff;
            margin-top: 10px;
        }

        .about-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #555;
        }

        .about-image {
            flex: 1;
            text-align: center;
        }

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

        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .cta-button:hover {
            background-color: #0056b3;
        }

        /* Responsive Design for Mobile */
        @media (max-width: 768px) {
            .about-section {
                flex-direction: column;
                text-align: center;
                padding: 50px 5%;
            }

            .about-content h2::after {
                margin: 10px auto;
            }
        }

.blog-hero {
    min-height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('image/blog-hero.jpg') center/cover no-repeat;
}

.blog-section {
    padding: 80px 10%;
    background: #f9f9f9;
}

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

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.85rem;
    color: #888;
}

.blog-content h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.blog-content p {
    font-size: 0.95rem;
    color: #555;
}

.blog-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-red);
    font-weight: 600;
}
.blog-link:hover {
    text-decoration: underline;
}
/* Responsive Design for Blog Section */
@media (max-width: 768px) {
    .blog-section {
        padding: 50px 5%;
    }
}
.slow-mo-container {
    position: relative;
    width: 100%;
    height: 60vh; /* Takes up 60% of the screen height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slow-mo-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ensures the video covers the area without stretching */
}

/* Semi-transparent dark overlay to make text pop */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darkens the video slightly */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay-text h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.overlay-text p {
    color: #f0f0f0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}


