/* --- VARIABLES --- */
:root {
    --primary-red: #AF032A;
    --text-dark: #333333;
    --font-heading: 'Mukta Mahee', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --nav-height: 90px; 
    --top-bar-height: 40px; 
}

/* --- GLOBAL --- */
body { font-family: var(--font-body); margin: 0; padding: 0; overflow-x: hidden; }
h1, h2, h3, .nav-link, .btn-slant { font-family: var(--font-heading); }

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--primary-red);
    min-height: var(--top-bar-height);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative; 
    z-index: 1002; 
    padding: 5px 0; 
}

/* --- CONTACT INFO --- */
.contact-info {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    gap: 25px; 
    width: 100%;
}
.contact-info span { display: inline-flex; align-items: center; white-space: nowrap; }
.contact-info i { margin-right: 8px; }

/* --- HEADER WRAPPER --- */
.header-wrapper {
    position: absolute; 
    top: var(--top-bar-height); 
    left: 0;
    width: 100%;
    z-index: 1000; 
    
}

/* --- NAVBAR --- */
.navbar {
    min-height: var(--nav-height); 
    background: white; 
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    border-radius: 5px; 
    margin-top: 10px; 
    padding-left: 20px;
    padding-right: 0 !important; 
}

.nav-logo {
    
    width: 160px; 
    max-height: 150px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease; 
    margin-left: 15px;

}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-logo {
        width: 100px; 
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        width: 100px; 
        max-height: 90px;
    }
}

.nav-link {
    color: #000 !important;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 10px !important;
    text-transform: capitalize;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--primary-red) !important; }

/* --- SLANTED BUTTON (Desktop) --- */
.btn-slant {
    background-color: var(--primary-red);
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    height: 100%; 
    min-height: 80px; 
    padding: 0 40px 0 60px; 
    display: flex; 
    align-items: center;
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0% 100%);
    margin-right: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: background-color 0.3s;
}
.btn-slant:hover { background-color: #000000; }

/* Desktop Dropdown Hover Logic */
/* @media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu { display: block; margin-top: 0;}
    .dropend:hover > .dropdown-menu { display: block; position: absolute; top: 0; left: 100%; margin-top: -1px;}
} */


.dropdown-item:hover { color: #a91b4b; background-color: transparent; }

/* --- STICKY HEADER --- */
@keyframes slideDown {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
/* Desktop Dropdown Hover Logic */
@media (min-width: 992px) {
    /* 1. Main Dropdown Alignment */
    .nav-item.dropdown {
        position: relative; 
    }

    /* 1. Main Dropd
    own Alignment */
.nav-item.dropdown > .dropdown-menu {
    position: absolute;
    top: 100%; 
    left: 0;
    margin-top: 23px;
    border-top: none; 
    border-radius: 0 0 5px 5px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}

/* --- THE FIX: Invisible Bridge --- */
.nav-item.dropdown > .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -23px; 
    left: 0;
    width: 100%;
    height: 23px; 
    background: transparent; 
}

.nav-item.dropdown:hover > .dropdown-menu { 
    display: block; 
}

/* 2. Nested Dropdown (Dropend) Alignment */
.dropend {
    position: relative;
}

.dropend:hover > .dropdown-menu { 
    display: block; 
    position: absolute; 
    top: 0; 
    left: 100%; 
    margin-top: -1px;
}

/* Optional: Add a bridge for the nested dropend if it also has a gap */
.dropend > .dropdown-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px; 
    width: 10px;
    height: 100%;
    background: transparent;
}
}
.menu-sticky.sticky {
    position: fixed !important;
    top: 0; left: 0; width: 100% !important; 
    height: 80px !important; min-height: 80px; 
    background-color: #ffffff !important; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2000; 
    margin-top: 0 !important;
    border-radius: 0 0 5px 5px !important; 
    animation: slideDown 0.4s ease-in-out forwards;
    padding-right: 0 !important;
}

.menu-sticky.sticky .btn-slant {
    height: 80px; min-height: 80px;
    border-top-right-radius: 0; 
    border-bottom-right-radius: 5px; 
}
.menu-sticky.sticky .container-fluid { padding-right: 0; }

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    height: 95vh; 
    min-height: 600px;
    background: #000;
    overflow: hidden;
}
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease-in-out; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; animation: fastZoom 20s linear forwards; }
@keyframes fastZoom { from { transform: scale(1); } to { transform: scale(1.35); } }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }

.hero-content {
    position: relative; z-index: 5; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    padding-top: 140px; 
}
.hero-title {
    font-size: 3.5rem; font-weight: 700; line-height: 1.2; color: white;
    opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out 0.5s;
}
.hero-subtitle {
    font-size: 1.3rem; font-weight: 500; color: white; margin-top: 20px;
    opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out 0.8s;
}
.hero-slide.active .hero-title, .hero-slide.active .hero-subtitle { opacity: 1; transform: translateY(0); }

/* --- BACK TO TOP --- */
.back-to-top {
    display: inline-flex; align-items: center; justify-content: center;
    position: fixed; bottom: 40px; right: 30px; z-index: 99; 
    background-color: #fff; color: #000; 
    border: none; border-radius: 50%; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
    height: 40px; width: 40px; font-size: 16px; cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s;
    display: none; 
}
.back-to-top:hover { transform: translateY(-5px); background-color: #f0f0f0; }

@media (max-width: 991px) {
    .dropdown-toggle::after {
        pointer-events: none;
    }
}

@media (max-width: 991px) {
    .dropdown-toggle::after {
        pointer-events: none;
    }
}

@media (max-width: 991px) {
    /* --- 1. TOP BAR STACKING --- */
    .top-bar {
        height: auto;
        padding: 8px 15px;
    }

    .contact-info {
        justify-content: center; 
        flex-direction: column; 
        gap: 5px; 
        text-align: center;
    }

    .header-wrapper {
        position: relative; 
        top: 0;
    }

    /* --- 2. NAVBAR (LOCKED HEIGHT - NO SHRINKING) --- */
    .navbar, 
    .menu-sticky.sticky .navbar {
        margin-top: 0;
        border-radius: 0;
        padding: 0 20px !important; 
        min-height: 92px !important; 
        height: 92px !important; 
        align-items: center; 
        display: flex;
        transition: none !important; 
    }

    /* --- 3. HAMBURGER BUTTON --- */
    .navbar-toggler {
        border: none;
        outline: none;
        padding: 10px;
        transition: transform 0.3s ease;
        position: relative;
        z-index: 10001; 
        align-self: center; 
    }
    
    .navbar-toggler[aria-expanded="true"] {
        transform: rotate(90deg);
    }

    .navbar-toggler-icon {
        width: 2em;
        height: 2em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(165, 28, 48, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
    }

    /* --- 4. MOBILE MENU DROPDOWN (FULL SCREEN) --- */
    .navbar-collapse,
    .menu-sticky.sticky .navbar-collapse {
        background-color: #ffffff; 
        position: fixed; 
        top: 92px !important; 
        left: 0;
        width: 100vw; 
        height: calc(100vh - 92px) !important; 
        max-height: none; 
        overflow-y: auto; 
        padding: 20px 0 80px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
        border-top: 1px solid #eee;
        z-index: 9999; 
        transition: none !important; 
    }

    /* --- 5. STICKY CONTAINER OVERRIDE --- */
    .menu-sticky.sticky {
        height: 92px !important; 
        min-height: 92px !important; 
        padding: 0 !important; 
    }

    /* --- 6. NESTED MENU STYLING --- */
    .dropend .dropdown-menu {
        position: static !important;
        float: none;
        display: none; 
        /* CHANGED: Removed left alignments for centering */
        margin-left: 0 !important; 
        margin-top: 5px;
        background-color: transparent;
        border: none;
        border-left: none !important; 
        padding-left: 0 !important; 
        box-shadow: none;
        width: 100%;
        text-align: center !important;
    }

    /* Show menu when JS adds 'show' class */
    .dropdown-menu.show {
        display: block !important;
    }

    /* Rotate arrow when open */
    .nested-toggle.show::after {
        transform: rotate(90deg);
    }

    /* --- 7. GENERAL CONTENT STYLING --- */
    /* CHANGED: Text align center instead of left */
    .navbar-nav { padding: 0 20px; text-align: center !important; }

    .nav-link {
        padding: 18px 0 !important;
        border-bottom: 1px solid #f5f5f5;
        color: #333 !important;
        font-size: 18px; 
        font-weight: 600;
        display: block; 
        /* ADDED: Center main links */
        text-align: center !important; 
    }

    .dropdown-menu {
        position: static !important;
        float: none;
        width: auto !important;
        margin-top: 0;
        background-color: #f9f9f9; 
        border: none;
        box-shadow: none;
      
        padding: 15px 0; 
        display: none; 
        gap: 10px;
        /* ADDED: Force center alignment */
        text-align: center !important; 
    }

    /* ADDED: Ensures individual sub-items are perfectly centered */
    .dropdown-item {
        text-align: center !important;
        padding: 10px 0 !important;
        white-space: normal; /* Prevents long text from breaking layout */
    }

    .dropdown-menu .col-12, 
    .dropdown-menu .col-md-3, 
    .dropdown-menu .col-lg-3 {
        width: 100%; padding: 0; margin-bottom: 20px;
    }

    .btn-slant { display: none !important; }

    .hero-slider { height: 70vh; min-height: 400px; }
    .hero-content {
        padding-top: 0; 
        align-items: center; text-align: center;
        padding-left: 15px; padding-right: 15px;
    }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .slider-dots { width: 100%; left: 0; text-align: center; bottom: 20px; }
}

/* =========================================
   7. HERO SLIDER SECTION
   ========================================= */
.hero-slider {
    position: relative;
    height: 95vh; 
    min-height: 600px; 
    background: #000;
    overflow: hidden;
}

.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease-in-out; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; animation: fastZoom 20s linear forwards; }
@keyframes fastZoom { from { transform: scale(1); } to { transform: scale(1.35); } }

.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Extra padding top creates space for the floating nav */
    padding-top: 140px; 
}

.hero-title {
    font-size: 3.5rem; font-weight: 700; line-height: 1.2; color: white;
    opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out 0.5s;
}
.hero-subtitle {
    font-size: 1.3rem; font-weight: 500; color: white; margin-top: 20px;
    opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out 0.8s;
}
.hero-slide.active .hero-title, .hero-slide.active .hero-subtitle { opacity: 1; transform: translateY(0); }

/* Slider Dots */
.slider-dots { position: absolute; bottom: 30px; left: 10%; z-index: 10; }
.dot { display: inline-block; width: 10px; height: 10px; margin: 0 5px; background: transparent; border: 2px solid white; border-radius: 50%; cursor: pointer; transition: all 0.3s; }
.dot.active { background: white; transform: scale(1.2); }

/* =========================================
   8. BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    position: fixed; 
    bottom: 40px; 
    right: 30px; 
    z-index: 99; 
    background-color: #fff; 
    color: #000; 
    border: none; 
    border-radius: 50%; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
    height: 40px; 
    width: 40px;   
    font-size: 16px; 
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s;
    display: none; /* Hidden by default, JS toggles it */
}
.back-to-top:hover { transform: translateY(-5px); background-color: #f0f0f0; }

/* =========================================
   9. RESPONSIVE MEDIA QUERIES (The Fixes)
   ========================================= */

/* --- TABLETS & MOBILES (Below 992px) --- */
@media (max-width: 991px) {
    
    /* Top Bar: Visible but Stacked */
    .top-bar {
        font-size: 12px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        height: auto;
        padding: 8px;
    }

    /* Navbar: Standard Mobile Position */
    .header-wrapper {
        position: relative; /* No longer absolute overlap on mobile */
        top: 0;
    }

    

    .navbar-toggler {
        border: none;
        outline: none;
    }


    /* Remove slanted button on mobile */
    .btn-slant { display: none !important; }

    /* Sticky Mobile Fix */
    .menu-sticky.sticky {
        height: 70px !important;
        min-height: 70px;
    }
    .menu-sticky.sticky .navbar-collapse {
        top: 70px; /* Align dropdown with sticky height */
    }

    /* Hero adjustments */
    .hero-slider {
        height: 70vh; /* Shorter on mobile */
        min-height: 400px;
    }
    .hero-content {
        padding-top: 0; /* Centered naturally since nav isn't absolute */
        align-items: center;
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    
    .slider-dots {
        width: 100%;
        left: 0;
        text-align: center;
        bottom: 20px;
    }
}

/* --- SMALL MOBILES (Below 480px) --- */
@media (max-width: 480px) {
    .top-bar { display: flex; } /* Keep visible if desired, or set to 'none' */
    .nav-logo { max-height: 45px; }
    .hero-title { font-size: 1.75rem; }
}
/* --- UTILITIES --- */

.ls-2 { 
    letter-spacing: 2px; 
}
/* Section Container */
        .who-we-are-section {
            padding: 60px 30px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        /* Header Styles */
        .section-subtitle {
            font-size: 0.9rem;
            color: #888;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-weight: 600;
            margin-top: 20px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 40px;
        }

        /* --- Expandable Image Gallery --- */
        .image-gallery {
            display: flex;
          
            height: 350px; 
            width: 100%;
            
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .gallery-item {
           
            flex: 1;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            
            transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.2); 
            transition: background 0.6s ease;
        }

        .image-gallery:hover .gallery-item:not(:hover)::after {
             background: rgba(0,0,0,0.5);
        }
        .gallery-item:hover {
            flex: 4; 
        }
        
        .gallery-item:hover::after {
            background: rgba(0,0,0,0);
        }

       
        .img-1 { background-image: url('../images/silver-nails-scaled.jpg'); }
       
        .img-2 { background-image: url('../images/about-back1.jpg'); }
       
        .img-3 { background-image: url('../images/nozzles-ratchets-scaled.jpg'); }
       
        .img-4 { background-image: url('../images/new-chrome-screw-nut-different-sizes-white.jpg'); }


        /* Text Content Styles */
        .text-content {
            max-width: 1200px;
            margin: 0 auto;
            color: #0d0d0d;
            font-size: 1.05rem;
        }

        .text-content p {
            margin-bottom: 20px;
        }

        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.75rem;
                margin-bottom: 30px;
            }

            
            .image-gallery {
                flex-direction: column;
                height: auto; 
                border-radius: 0; 
            }

            .gallery-item {
                height: 200px; 
                width: 100%;
                flex: none;
            }
            
            .gallery-item:hover {
                flex: none;
            }
            
            .image-gallery:hover .gallery-item:not(:hover)::after {
                 background: rgba(0,0,0,0.2);
            }
            
            .gallery-item:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; }
            .gallery-item:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }

            .text-content {
                font-size: 1rem;
                padding: 0 10px;
            }
        }



/* --- FEATURES CARD SECTION --- */
.feature-card {
    background-color: var(--primary-red); /* Default: Red */
    color: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 100%;
    
    /* Smooth Transition for background & shadow */
    transition: all 0.3s ease-in-out; 
    
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(175, 3, 42, 0.15);
}

/* --- CARD CONTENT TRANSITIONS --- */
.card-icon, .card-title, .card-text {
    transition: color 0.3s ease-in-out;
}

/* Default Colors */
.card-icon { font-size: 2.5rem; margin-bottom: 1.5rem; color: white; }
.card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: white; }
.card-text { font-size: 0.9rem; line-height: 1.6; color: rgba(255, 255, 255, 0.9); }

/* --- CORNER CUTOUT --- */
.corner-cutout {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 40px;
    height: 40px;
    
   
    background-color: #fcfcfc; 
    
    border-top-left-radius: 20px;
    z-index: 2;
    transition: background-color 0.3s ease-in-out;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  
}

/* Section Styling */
.calle-features-section {
  padding: 60px 0;
  background-color: #e7e5e5df;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
  text-align: center;
}

.section-description {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 50px;
  max-width: 1200px;
  text-align:left;
}

/* Grid Layout for Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card Styling */
.feature-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden; /* Hides the expanding red circle */
  transition: transform 0.3s ease;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
}

/* Ensure content stays on top of the red background */
.card-content {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.card-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: #111;
  transition: color 0.3s ease;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
  transition: color 0.3s ease;
}

.card-text {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin: 0;
  transition: color 0.3s ease;
}

/* --- Red Corner Animation --- */
.red-corner {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background-color: #a80d2e; /* The red color from the image */
  border-radius: 50%;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth expansion */
}

/* On hover, expand the red circle to fill the card */
.feature-card:not(.static-red):hover .red-corner {
  width: 250%;
  height: 250%;
  bottom: -75%;
  right: -75%;
}

/* Change text and icon color to white on hover */
.feature-card:not(.static-red):hover .card-content,
.feature-card:not(.static-red):hover .card-icon,
.feature-card:not(.static-red):hover .card-title,
.feature-card:not(.static-red):hover .card-text {
  color: #fff;
}

/* --- Static Red Card (The last one) --- */
.feature-card.static-red {
  background-color: #a80d2e;
}

.feature-card.static-red .card-content,
.feature-card.static-red .card-icon,
.feature-card.static-red .card-title,
.feature-card.static-red .card-text {
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  .features-grid {
    grid-template-columns: 1fr; /* Stack cards on smaller screens */
  }
  .feature-card {
      padding: 30px 25px;
  }
}
/* ==================== CTA SECTION ==================== */
.cta-section {
    background-color: #ecf0f3;
    /* IMPORTANT: Large bottom padding allows the footer to overlap without covering content */
    padding: 40px 0 100px 0; 
}

.text-dark-gray { color: #0b0b0b; font-size: 0.95rem; font-weight: 600; }

.cta-heading {
    color: var(--primary-red);
    font-size: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 800;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
   
}

.btn-cta {
    background-color: var(--primary-red);
    color: white;
    border: none;
    letter-spacing: 1px;
    font-weight: 800;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
    height: 50px;
}
.btn-cta:hover {
    background-color: #a90226;
    color: white;
    transform: translateY(-3px);
}

/* --- GEOMETRIC FOOTER (Deep Cut / Steeper Sides) --- */

.geometric-footer {
    position: relative;
    
    margin-top: -250px; 
    z-index: 10;
}

.footer-content {
    background-color: #000000;
    

    padding: 290px 0 60px 0; 
   
   
    -webkit-clip-path: polygon(
        0% 0%, 
        30% 250px, 
        70% 250px, 
        100% 0%, 
        100% 100%, 
        0% 100%
    );
    clip-path: polygon(
        0% 0%, 
        30% 250px, 
        70% 250px, 
        100% 0%, 
        100% 100%, 
        0% 100%
    );
}

/* --- RESPONSIVE ADJUSTMENT --- */
@media (max-width: 991px) {
    /* Mobile doesn't need such a huge cut */
    .geometric-footer { margin-top: -100px; }
    
    .footer-content {
        padding-top: 140px;
        -webkit-clip-path: polygon(
            0% 0%, 
            20% 100px, 
            80% 100px, 
            100% 0%, 
            100% 100%, 
            0% 100%
        );
        clip-path: polygon(
            0% 0%, 
            20% 100px, 
            80% 100px, 
            100% 0%, 
            100% 100%, 
            0% 100%
        );
    }
}
/* --- FOOTER ELEMENTS --- */
.fs-09 { font-size: 0.95rem; }

.hover-red:hover { color: var(--primary-red) !important; }

/* Logo Box */
.footer-logo-box {
    background: white;
    padding: 20px 40px;
    border-radius: 4px;
    display: inline-block;
    max-width: 300px;
}

/* Social Squares */
.social-sq {
    display: inline-flex; align-items: center; justify-content: center;
    width: 35px; height: 35px;
    background-color: var(--primary-red); color: white;
    text-decoration: none; border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
    
}
.social-sq:hover {
    background-color: white; color: var(--primary-red);
    transform: translateY(-3px);
}

/* --- COPYRIGHT BAR --- */
.copyright-bar {
    background-color: #000000; 
    border-top: 1px solid #1a1a1a;
    
    /* Layout */
    width: 100%; 
    box-sizing: border-box; 
    
    /* Flexbox Centering */
    display: flex;            
    justify-content: center;  
    align-items: center;       
    flex-wrap: wrap;           
    
    /* Visuals */
    padding: 20px 15px;        
    color: #ffffff;
    gap: 10px;                 
}


.copyright-bar p {
    margin: 0;
    text-align: center;
}

.hover-text-red:hover { 
    color: var(--primary-red); 
    cursor: pointer; 
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .copyright-bar {
        padding: 15px 10px;
        font-size: 14px; 
        flex-direction: column; 
        text-align: center;    
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    
    .geometric-footer { margin-top: -80px; }
    
    .footer-content {
        padding-top: 120px;
        -webkit-clip-path: polygon(
            0% 0%, 
            10% 80px, 
            90% 80px, 
            100% 0%, 
            100% 100%, 
            0% 100%
        );
        clip-path: polygon(
            0% 0%, 
            10% 80px, 
            90% 80px, 
            100% 0%, 
            100% 100%, 
            0% 100%
        );
    }
    
    .cta-section { padding-bottom: 150px; }
    .footer-logo-box { margin: 30px 0; }
    
}


