/* ORE Academy - Index Page Styles */
/* Specific to index.html only */

/* --- INDUSTRIAL CTA BOX --- */
.admissions-prompt-section {
    padding: 80px 0;
    background: #fff; /* White background to make the blue box pop */
}

.industrial-cta-box {
    background-color: #40439c;
    padding: 60px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: left; /* Aligns with our asymmetric theme */
    border-left: 10px solid #c58b43; /* Added a heavy side-border for industrial feel */    
}

.cta-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(
        45deg,
        #c58b43,
        #c58b43 10px,
        #a87630 10px,
        #a87630 20px
    ); /* "Industrial Caution" Gold Stripe */
}

.status-badge {
    color: #ffffff;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.industrial-cta-box h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
    color: white;
    text-align: left;
}

.industrial-cta-box p {
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Gold Button for Dark Backgrounds */
.secondary-cta-gold {
    background-color: #c58b43;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 900;
    display: inline-block;
    transition: 0.3s;
    border: none;
}

.secondary-cta-gold:hover {
    background-color: white;
    color: #40439c;
    transform: translateX(10px); /* Mechanical movement effect */
}

.cta-bg-ghost {
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    h1{
        font-size: 2rem;
    }
    h2{
        font-size: 1.75rem;
    }

    .industrial-cta-box {
        padding: 40px 20px;
        text-align: center;
        border-left: none;
        border-bottom: 10px solid #c58b43;
    }
    .industrial-cta-box h2 { 
        font-size: 2rem;
        text-align: center;
    }

    .cta-content h2{
        text-align: center;
    }

    .secondary-cta{
        margin-left: 0;
        margin-top: 15px;
        display: block; /* Stack buttons on mobile */
    }

    .primary-cta {
        display: block;
    }

    .cta-bg-ghost{
        z-index: 0;
        display: none;
    }
}


/* --- 3. MAIN CONTENT SECTIONS --- */
/* Hero Section */
    .hero-section {
        position: relative;
    /* Account for header height to avoid scrolling on load */
        min-height: calc(100vh - 115px);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-color: #40439c; /* Fallback Academy Blue */
        padding: 60px 5%;
        text-align: center;
        color:#f9f9ff;
    /* Center the content vertically and horizontally */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow: hidden;
    }

    .hero-section h1 {
        font-size: clamp(3rem, 8vw, 5rem); /* Scales based on screen size */
        font-weight: 700; /* Extra Bold */
        line-height: 1.1; /* Tighter lines make it look 'fuller' */
        letter-spacing: -1px; /* Slightly closer letters for a modern look */
        color:#c58b43;
        max-width: 900px; /* Prevents text from stretching too wide on desktops */
        margin-bottom: 20px;
        text-transform: uppercase; /* Optional: adds more visual weight */
        text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    }

/* Highlighted word within H1 */
    .hero-section h1 span {
        color: #c58b43; /* Academy Gold */
    }

    .hero-text-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-text-content .subtitle {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
        font-weight: 400;
        color: #f9f9ff;
        max-width: 750px;
        margin: 0 auto 40px auto;
        line-height: 1.5;
        margin-bottom: 40px;
        opacity: 0.9;
    }

    /* HERO BUTTON */
    .hero-actions {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap; /* Wraps buttons on small screens */
    }

    .hero-actions .button {
        margin: 0;
        padding: 16px 40px;
        font-size: 1.2rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }

/* RESPONSIVE */
    @media (max-width: 768px) {
        .hero-section {
            padding: 40px 20px;
            min-height: 80vh; /* Shorter on mobile to show content below */
        }

        .hero-actions {
            flex-direction: column;
            width: 100%;
            max-width: 300px;
            /* Center everything*/
            margin: 0 auto; 
        }

        .hero-actions .button {
            width: 100%;
            text-align: center;
            /* Center the buttons */
            margin-bottom: 15px;
        }
    }


/* USP Section */


/* --- INDUSTRIAL USP SECTION --- */
    .usp-section {
        padding: 100px 0;
        background-color: #fcfcfc; /* Subtle off-white to make white cards pop */
        content-visibility: auto;
        contain-intrinsic-size: 1px 500px; /* Estimates the height of the section */
    }

    .usp-intro {
        text-align: left; /* Aligns with our asymmetric design */
        max-width: 700px;
        margin-bottom: 60px;
    }

    .usp-intro .tagline {
        color: #c58b43;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 10px;
    }

    .usp-intro h2 {
        color: #40439c;
        font-size: clamp(2rem, 5vw, 2.8rem);
        font-weight: 750;
        margin: 0;
        text-align: left;
        line-height: 1.2;
    }

/* GRID LAYOUT */
    .usp-grid {
        display: grid;
        /* auto-fit creates as many columns as will fit, min 300px wide */
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

/* USP CARDS */
    .usp-card {
        display: flex;
        align-items: flex-start;
        padding: 40px 30px;
        background: #fff;
        border: 1px solid #e0e0e0;
        /* Hard Shadow instead of soft blur */
        box-shadow: 12px 12px 0px rgba(64, 67, 156, 0.05);
        border-left: 6px solid #c58b43; /* Gold accent */
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        cursor: default;
    }

    .usp-card:hover {
        box-shadow: 10px 10px 0px #40439c;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
    }

    .usp-icon-box {
        font-size: 2rem;
        color: #40439c;
        margin-right: 20px;
        margin-top: 5px;
        flex-shrink: 0; /* Prevents icon from squishing */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .usp-content h3 {
        color: #40439c;
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0 0 12px 0;
        margin-bottom: 10px;
        text-align: left;
    }

    .usp-content p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: left;
        margin: 0;
    }

/* Mobile: Stack them nicely */
    @media (max-width: 768px) {
        .usp-section {
            padding: 60px 0;
        }
        .usp-grid {
            grid-template-columns: 1fr;
        }
        .usp-intro {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
        .usp-intro h2 { 
            text-align: center;
            margin-bottom: 10px;
        }
        .usp-card {
            padding: 30px;
            box-shadow: 8px 8px 0px rgba(64, 67, 156, 0.1); /* Slightly smaller shadow on mobile */
        }
    }

    @media (max-width: 480px) {
        .usp-card {
            flex-direction: column; /* Stack icon on top of text for narrow phones */
            text-align: center;
        }

        .usp-icon-box {
            margin-right: 0;
            margin-bottom: 20px;
            width: 100%;
        }

        .usp-content h3, .usp-content p {
            text-align: center;
        }
        .usp-intro h2 { 
            text-align: center;
            margin-bottom: 10px;
        }
    }


/* --- INDUSTRIAL COURSE CARDS --- */
    .courses-preview-industrial {
        padding: 100px 0;
        background-color: #fcfcfc;
        overflow: hidden;
    }

    .preview-header {
        margin-bottom: 50px;
        text-align: center;
        font-weight: 600;
    }

    .preview-header .hollow-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
        font-weight: 900;
        color: #a87630;
        line-height: 1;
        text-transform: uppercase;
    }

    .preview-header .solid-blue {
        color: #40439c;
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        font-weight: 800;
        margin-top: 5px;
        display: block;
    }

/* GRID LAYOUT */
    .industrial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 50px;
    }

/* 1. The Main Container */
    .spec-card {
        width: 100%;
        height: 480px; /* IMPORTANT: Must have a fixed height */
        perspective: 1000px; /* Gives the 3D depth */
        background: transparent;
        border: 1px solid #eee;
        position: relative;
        display: flex;
        flex-direction: column;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    /* 2. The Rotating Wrapper */
    .card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        transform-style: preserve-3d; /* Keeps children in 3D space */
    }

    .spec-img-box {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

    .spec-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* This is the magic property: it crops without stretching */
        transition: 0.8s ease;
        -webkit-transition: 0.8s ease;
        -moz-transition: 0.8s ease;
        -ms-transition: 0.8s ease;
        -o-transition: 0.8s ease;
    }

    .spec-tag {
        position: absolute;
        top: 20px;
        left: 0;
        background: #c58b43;
        color: white;
        padding: 8px 20px;
        font-size: 0.75rem;
        font-weight: 900;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        z-index: 10;
    }

    .spec-body {
        padding: 35px;
        text-align: left;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .spec-body h3 {
        color: #40439c;
        font-size: 1.5rem;
        margin: 0 0 15px 0;
        font-weight: 800;
        text-align: left;
    }

    .spec-body p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: left;
    }

    .spec-link {
        text-decoration: none;
        color: #c58b43;
        font-weight: 900;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        transition: 0.3s;
        margin-top: auto; /* Pushes link to bottom of card */
    }

/* --- HOVER EFFECTS --- */
    .spec-card:hover .card-inner {
        transform: rotateY(180deg);
    }

    .spec-card:hover {
        transform: translate(-10px, -10px);
        box-shadow: 20px 20px 0px #40439c; /* Hard Offset Shadow */
    }

    /* 4. Common Face Styling */
    .card-front, .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden; /* Safari */
        backface-visibility: hidden;
        background: #fff;
        border: 1px solid #eee;
        display: flex;
        flex-direction: column;
    }

    /* 5. Back Side Positioning */
    .card-back {
        transform: rotateY(180deg); /* Pre-rotated so it faces away */
        justify-content: center;
        background: #fff;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centers everything vertically */
        align-items: center;
        text-align: center;
    }

    .back-content {
        width: 100%;
    }

    .back-title {
        color: #40439c;
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 15px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .back-title.secondary {
        font-size: 0.9rem;
        margin-top: 20px;
    }

/* --- Style the List --- */
    .back-details {
        list-style: none;
        padding: 0;
        margin: 0 auto 20px;
        display: inline-block; /* Keeps the list items centered as a block */
        text-align: left;
    }

    .back-details li {
        font-size: 0.85rem;
        margin-bottom: 10px;
        color: #555;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .back-details i {
        color: #c58b43; /* Matches your accent color */
        width: 15px;
    }

    .details-list {
        list-style: none;
        padding: 0;
        display: inline-block;
        text-align: left;
    }

    .details-list li {
        font-size: 0.85rem;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #555;
    }

    .details-list i {
        color: #c58b43; /* Your gold accent */
        width: 18px;
    }

/* --- Subject "Pills" (Instead of a long paragraph) --- */
    .focus-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        margin-top: auto;
        margin-bottom: 20px;
    }

    .focus-tags span {
        background: #f0f1ff;
        color: #40439c;
        font-size: 0.7rem;
        padding: 4px 10px;
        border-radius: 50px; /* Rounded pill look */
        font-weight: 700;
    }

    .subject-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .subject-tags span {
        background: #f0f1ff;
        color: #40439c;
        font-size: 0.7rem;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 700;
    }

/* Force the footer to the bottom */
    .spec-footer {
        margin-top: auto; /* Forces the link to stick to the bottom */
        padding-top: 15px;
    }

    .card-back .spec-footer {
        margin-top: auto;
        width: 100%;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }

    .spec-card:hover .spec-img-box img {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
    }

    .spec-card:hover .spec-link::after {
        margin-left: 12px;
    }

/* --- RESPONSIVE FIXES --- */
    @media (max-width: 768px) {
        .industrial-grid {
            grid-template-columns: 1fr;
            padding: 0 15px;
            gap: 40px;
        }

        .spec-card:hover {
            transform: translate(-5px, -5px);
            box-shadow: 10px 10px 0px #40439c; /* Smaller shadow on mobile */
        }
        .spec-body h3 {
        color: #40439c;
        font-size: 1.5rem;
        margin: 0 0 15px 0;
        font-weight: 800;
        text-align: left;
    }
    }


/* Bottom CTA */
    .full-catalog-cta {
        margin-top: 60px;
        text-align: center;
    }

    .industrial-outline-btn {
        padding: 15px 40px;
        border: 2px solid #40439c;
        color: #40439c;
        text-decoration: none;
        font-weight: 900;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        transition: all 0.3s ease;
    }

    .industrial-outline-btn:hover {
        background: #40439c;
        color: white;
    }


/* --- INDUSTRIAL TESTIMONIALS --- */
    .testimonials-industrial {
        padding: 120px 0 180px 0;
        background-color: #40439c; /* Navy Base */
        color: white;
        position: relative;
        overflow: hidden;

        background-image: 
            linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
        background-size: 40px 40px; /* Creates a 30px grid */
    }

    /* Background Decoration - "VERIFIED" watermark */
    .testimonials-industrial::before {
        content: "VERIFIED";
        position: absolute;
        bottom: -20px;
        left: 20px;
        font-size: clamp(5rem, 15vw, 10rem);
        font-weight: 900;
        color: rgba(255, 255, 255, 0.03);
        pointer-events: none;
        z-index: 0;
    }

    .testimonial-header {
        margin-bottom: 60px;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .testimonial-header .outline-text {
        display: block;
        font-size: 4rem;
        font-weight: 900;
        color: #a87630;
        -webkit-text-stroke: 1px #ffffff;
        line-height: 1;
        text-transform: uppercase;
    }

    .testimonial-header .solid-blue {
        display: block;
        font-size: clamp(2.5rem, 8vw, 4.5rem);
        font-weight: 900;
        color: #fff;
        line-height: 0.8;
        text-transform: uppercase;
    }

    /* Viewport & Slider */
    .testimonial-viewport {
        max-width: 900px;
        margin: 0 auto;
        min-height: 300px;
        position: relative;
        overflow: hidden;
        z-index: 2;
    }

    .testimonial-slide {
        display: none;
        text-align: left;
        padding: 50px;
        border-left: 5px solid #c58b43;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(1px);
        animation: fadeIn 0.6s ease-out;
        -webkit-animation: fadeIn 0.6s ease;
    }

    .testimonial-slide.active {
        display: block;
    }

    .quote-icon {
        font-size: 3.5rem;
        color: #c58b43;
        margin-bottom: 25px;
        display: block;
    }

    .testimonial-slide p {
        font-size: clamp(1.1rem, 3vw, 1.6rem);
        font-style: italic;
        line-height: 1.6;
        margin-bottom: 30px;
        color: #f1f1f1;
        font-weight: 300;
    }

    .testimonial-meta {
        display: flex;
        flex-direction: column;
    }

    .artisan-name {
        font-weight: 900;
        font-size: 1.2rem;
        color: #c58b43;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .artisan-trade {
        font-family: 'Courier New', Courier, monospace;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.7);
        margin-top: 5px;
        letter-spacing: 1px;
    }

    /* Dots */
    .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 50px;
    }

    .dot {
        width: 30px;
        height: 6px;
        background: rgba(255,255,255,0.2);
        cursor: pointer;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }

    .dot.active {
        background: #c58b43;
        width: 60px;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateX(20px); }
        to { opacity: 1; transform: translateX(0); }
    }

/* RESPONSIVE */
/* --- MOBILE RESPONSIVENESS --- */
    @media (max-width: 768px) {
        .testimonials-industrial {
            padding: 80px 0;
        }

        .testimonial-slide {
            padding: 30px 20px;
            margin: 0 15px;
        }

        .testimonial-header .outline-text, 
        .testimonial-header .solid-blue {
            line-height: 1.1;
        }

        .dot {
            width: 20px;
        }
        
        .dot.active {
            width: 40px;
        }
    }


/* --- THE EXECUTIVE MODAL --- */
    .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 25, 0.95); /* Deeper navy tint */
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        padding: 15px;
        backdrop-filter: blur(5px); /* Modern touch */
    }

    .modal-window {
        display: flex;
        width: 100%;
        max-width: 900px;
        background: white;
        border: 1px solid #c58b43;
        /* Box shadow adjusted for mobile safety */
        box-shadow: 20px 20px 0px rgba(197, 139, 67, 0.2);
        animation: modalSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        max-height: 90vh; /* Prevents modal from being taller than screen */
        overflow-y: auto; /* Allows scrolling inside modal if content is long */
    }

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

/* Sidebar Styling */
    .modal-sidebar {
        background: #40439c;
        color: white;
        padding: 40px;
        width: 30%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-right: 4px solid #c58b43;
    }

    .modal-logo {
        width: 100%;
        filter: brightness(0) invert(1);
    }

/* Content Area */
    .modal-main {
        flex: 1;
        padding: 60px 40px;
        position: relative;
        background: #fff;
    }

    .modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 32px;
        color: #40439c;
        cursor: pointer;
    }

    .section-tag {
        display: block;
        color: #c58b43;
        font-weight: 900;
        letter-spacing: 2px;
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .modal-section { margin-bottom: 30px; }

    .subject-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .subject-grid span {
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
    }

    .modal-btn {
        display: block;
        width: 100%;
        padding: 18px;
        background: #40439c;
        color: white;
        text-align: center;
        text-decoration: none;
        font-weight: 900;
        margin-top: 20px;
        border: 1px solid transparent;
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
    }

    .modal-btn:hover {
        background: white;
        color: #40439c;
        border: 1px solid #40439c;
    }

    @media (max-width: 1280px) {
        .modal-window {
            max-width: 700px;
            box-shadow: 15px 15px 0px rgba(197, 139, 67, 0.2);
        }

        .sidebar-text{
            display: none;
        }

        .modal-overlay.active {
        display: flex !important;
        }
    }

    @media (max-width: 992px) {
        .modal-window {
            max-width: 700px;
            box-shadow: 15px 15px 0px rgba(197, 139, 67, 0.2);
        }

        .sidebar-text{
            display: none;
        }
    }

    @media (max-width: 768px) {
        .modal-window { 
            flex-direction: column; 
            box-shadow: 10px 10px 0px rgba(197, 139, 67, 0.2);
            max-height: 85vh;
        }
        .modal-sidebar { 
            width: 100%; 
            padding: 20px; 
            flex-direction: row; /* Align logo and text horizontally on mobile */
            align-items: center;
            border-right: none;
            border-bottom: 4px solid #c58b43;
        }

        .modal-logo {
            width: 120px; /* Smaller logo in header style */
            margin-bottom: 0;
        }

        .modal-main { 
            padding: 30px 20px; 
        }

        .modal-close {
            top: 10px;
            right: 15px;
            font-size: 28px;
            color: navy; /* White on mobile to stand out against navy sidebar */
            z-index: 11;

        }

        .subject-grid {
            grid-template-columns: 1fr; /* Stack subjects on small phones */
            gap: 8px;
        }

        .sidebar-text {
            text-align: right;
        }

        .sidebar-footer{
            display: none;
        }
    }

    @media (max-width: 480px) {
        .modal-window {
            width: 95%;
            margin: 0 auto;
        }

        .modal-sidebar {
            padding: 15px;
        }

        .modal-main h2 {
            font-size: 1.4rem;
        }

        .modal-btn {
            padding: 15px;
            font-size: 1rem;
        }

        .footer-logo-text {
            /* Center */
            text-align: center;
            margin:10px auto -10px auto;
        }

        .sidebar-text {
            display: none; /* Hide sidebar text on very small screens for simplicity */
        }

        .sidebar-footer{
            display: none;
        }
    }


    .stat-divider {
        background: #c58b43; /* Your gold/bronze accent color */
        padding: 30px 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        color: white;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        z-index: 5;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .stat-item i {
        font-size: 1.5rem;
    }

    .stat-item strong {
        display: block;
        font-size: 1.2rem;
    }

    @media (max-width: 768px) {
        .stat-divider {
            flex-direction: column; /* Stack the stats on top of each other */
            gap: 20px;
            text-align: center;
        }
        
        .stat-item {
            width: 100%;
            justify-content: center;
        }
    }

    /* Success Page Specifics */
    .success-actions {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .next-steps li {
        position: relative;
        padding-left: 35px;
        margin-bottom: 15px;
        list-style: none; /* Removes the default bullet */
    }

    /* Custom checkmark for the list */
    .next-steps li::before {
        content: "\f058"; 
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #c58b43; /* ORE Gold */
        font-size: 1.2rem;
    }

    

    .stats-ticker {
    background: #40439c; /* ORE Navy */
    color: #ffffff;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid #c58b43; /* ORE Yellow accent */
    font-family: 'Roboto', sans-serif;
    min-height: 45px; /* Ensures the ticker is tall enough for icons and text */
    }

    .ticker-content {
        display: inline-block;
        animation: scroll-stats 20s linear infinite;
    }

    .ticker-content span {
        font-weight: 900;
        font-size: 0.9rem;
        margin-right: 80px; /* Increased spacing for clarity */
        letter-spacing: 1.5px;
        display: inline-flex;
        align-items: center;
    }

    /* Style for the icons/logos */
    .ticker-content i {
        color: #c58b43; /* Makes the icons pop */
        margin-right: 12px;
        font-size: 1.1rem;
    }

    @keyframes scroll-stats {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Smooth stop when user interacts */
    .stats-ticker:hover .ticker-content {
        animation-play-state: paused;
    }




/* Mobile View (1 Column) - Index specific */
@media (max-width: 600px) {
    .usp-grid, .industrial-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 60px 20px;
        text-align: center;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}

