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

body { font-family: sans-serif; overflow-x: hidden; }

/* Header Container */
.Heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    width: 100%;
    background: #fff;
}

.title, .start, .contact-info-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.title img { max-height: 70px; }

/* Center Button */
.start { justify-content: center; }
.start h2 {
    color: rgb(255, 255, 255);
    background-color: rgb(255, 0, 0);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
}

/* Contact Info */
.contact-info-wrapper {
    justify-content: flex-end;
    gap: 25px;
}

.contactHead {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.phone, .email { font-weight: bold; font-size: 0.9rem; }
.contactHead a {
    text-decoration: none;
    color: rgb(255, 0, 0);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Navigation */
.mobile-menu-bar { display: none; }

.navigation-bar {
    background-color: rgb(31, 31, 31);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.menu {
    display: flex;
    list-style: none;
    gap: 15px;
    justify-content: center;
}

.menu li {
    background: rgb(255, 65, 65);
    border-radius: 50px;
    transition: 0.3s;
}

.menu li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 25px;
    display: block;
}

.menu li:hover { background: rgb(255, 0, 0); transform: translateY(-2px); }

/* --- SLIDESHOW STYLING --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 75vh; /* Covers 75% of screen height */
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* Animation: Name, Duration, Timing, Loop */
    animation: kenBurnsFade 12s linear infinite;
}

/* Darken images so text pops */
.slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); 
}

/* Staggered timing for 6 images (2s visible each) */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 2s; }
.slide:nth-child(3) { animation-delay: 4s; }
.slide:nth-child(4) { animation-delay: 6s; }
.slide:nth-child(5) { animation-delay: 8s; }
.slide:nth-child(6) { animation-delay: 10s; }

@keyframes kenBurnsFade {
    0% { opacity: 0; transform: scale(1.15); } /* Start zoomed in */
    5% { opacity: 1; }                          /* Fade in */
    16.6% { opacity: 1; }                       /* Stay visible */
    22% { opacity: 0; }                         /* Fade out */
    100% { opacity: 0; transform: scale(1); }   /* Zoom out complete */
}

/* Overlay Text Styling */
.hero-content {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.learn-more {
    background-color: rgb(255, 65, 65); /* Matches your logo red */
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px; /* Gives it a modern, slightly rounded look */
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.learn-more:hover {
    background-color: #ff0000;
    color: #fff;
    transform: scale(1.05); /* Slight pop effect on hover */
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .start, .contact-info-wrapper { display: none !important; }
    .title { justify-content: center; width: 100%; }
    .mobile-menu-bar { display: block; background-color: #000; text-align: center; padding: 12px 0; }
    #menu-toggle { background: transparent; color: white; border: none; font-size: 1.1rem; font-weight: bold; }
    .navigation-bar { display: none; }
    .navigation-bar.active { display: block; }
    .menu { flex-direction: column; align-items: center; gap: 12px; }
    .hero-content { text-align: center; left: 0; width: 100%; padding: 30px; }
}
.getstart {
    background-color: rgb(255, 65, 65); /* Matches your logo red */
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px; /* Gives it a modern, slightly rounded look */
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    border-radius: 33px;
}

.getstart:hover {
    background-color: #ff0000;
    color: #fff;
    transform: scale(1.05); /* Slight pop effect on hover */
}
.copyright{
    text-align: center;
    background-color: #000;
    color: #ffffff;
    text-decoration: none;
}
html, body {
    height: 100%; /* Required for the footer to know where the bottom is */
}

body { 
    font-family: sans-serif; 
    overflow-x: hidden;
    display: flex;
    flex-direction: column; /* Stacks header, main, and footer vertically */
}

/* This is the magic: it pushes the footer down */
main {
    flex: 1 0 auto;
}

/* Updated Footer Styling */
.site-footer {
    flex-shrink: 0;
    background-color: #000000bd;
    padding: 20px 10px;
    text-align: center;
}

.copyright {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Center the credits container */
.credits {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px; /* Adds a little breathing room below the copyright */
    width: 100%;
}

/* Size the logo correctly */
.credits img {
    width: 140px; /* Replaces your invalid 'size' property */
    height: auto;
    transition: opacity 0.3s ease; /* Makes the hover effect smooth */
}

/* Hover effect */
.credits a:hover img {
    opacity: 0.7; /* Dims slightly on hover so users know it's clickable */
}
.coversection {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #ffffff8a; /* Optional: light background to make the bubble pop */
}

.info-bubble {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 30px; /* This creates the bubble effect */
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.153); /* Adds depth */
    max-width: 1500px;
    width: 100%;
    text-align: center;
}

.info-bubble h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.info-bubble p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.map-container img {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* Matches the bubble aesthetic */
}

/* Mobile Specific Tweaks */
@media (max-width: 600px) {
    .info-bubble {
        padding: 20px;
        border-radius: 20px;
    }
    
    .info-bubble h1 {
        font-size: 1.5rem;
    }
    
    .info-bubble p {
        font-size: 1rem;
    }
}
.quote-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background-color: #ffffff; /* Soft blue-grey to differentiate from the map section */
}

.quote-bubble {
    background: #ffffff;
    border-radius: 35px;
    padding: 50px 30px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.138);
    border: 2px solid #e1e8ed; /* Subtle border for definition */
}

.quote-content h2 {
    font-size: 2.2rem;
    color: #502c2c;
    margin-bottom: 15px;
}

.quote-content p {
    font-size: 1.15rem;
    color: #7a5454;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* The Call to Action Button */
.quote-btn {
    display: inline-block;
    background-color: #ff0000; /* Change this to your brand's main color */
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.quote-btn:hover {
    background-color: #b30000;
    transform: translateY(-2px);
}

.or-divider {
    display: block;
    margin: 15px 0;
    color: #ffffff;
    font-style: italic;
}

.quote-link {
    color: #ff0000;
    text-decoration: underline;
    font-weight: 500;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .quote-bubble {
        padding: 35px 20px;
        border-radius: 25px;
    }
    
    .quote-content h2 {
        font-size: 1.8rem;
    }

    .quote-btn {
        width: 100%; /* Makes the button easy to tap on mobile */
        box-sizing: border-box;
    }
}
:root {
    --primary-color: #222;
    --accent-color: #ff0707; /* Modern Gold/Yellow */
    --text-color: #444;
    --bg-light: #f9f9f9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #fff;
    color: var(--text-color);
}

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

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

.section-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #777;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Service Card Styling */
.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--accent-color);
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.card-content p {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2rem;
    }
}
.about-section {
    padding: 80px 0;
    background-color: #fff;
    color: #333;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h2 {
    font-size: 2.2rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: #ff0000; /* The yellow/gold accent */
    margin: 20px auto;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: #000; /* Black to match your banners */
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff; /* Gold accent */
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustment for phones */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: center;
    }

    .stat-card {
        flex: 1;
    }
}
/* 1. Set the body to be a flex container that fills the screen height */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Takes up 100% of the viewport height */
    margin: 0;
}

/* 2. Tell the main section to grow and take up all available space */
.about-section {
    flex: 1; /* This pushes the footer down */
}

/* 3. Style the footer as usual */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.site-footer a {
    color: #ff0000;
    text-decoration: none;
    font-size: 0.8rem;
}
.contact-section {
    padding: 60px 0;
    flex: 1; /* Keeps footer at bottom */
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Form Styling */
.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.submit-btn {
    background: #000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #ff0707;
    color: #000;
}

/* Sidebar Styling */
.contact-sidebar {
    background: #000;
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block h3 {
    color: #ff0000;
    margin-top: 0;
    border-bottom: 1px solid #727272;
    padding-bottom: 10px;
}

.info-block p, .info-block a {
    color: #ffffff;
    text-decoration: none;
    line-height: 1.6;
}

.info-block a:hover {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Transformation Section */
.scroll-video-section {
    position: relative;
    height: 300vh; /* Length of the scroll animation */
    background-color: #000;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.video-overlay-text {
    position: absolute;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 20px;
}

.video-overlay-text h2 {
    color: white;
    font-size: clamp(2rem, 8vw, 5rem);
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    transition: opacity 0.3s ease;
}