/* Reset and Base Styles */
:root {
    font-size: 16px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    opacity: 1;
    visibility: visible;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    padding: 1.25rem 3rem;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
}

.logo {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1.25rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: #FFD700;
}

/* Add burger menu styles after the existing nav styles */
.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

/* Add the animation keyframes before the media queries */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1582139329536-e7284fece509') center/cover; */
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url(/images/Image\ 14.jpg) center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    animation: gradientBG 15s ease infinite;
    perspective: 1000px;
    z-index: 1;
}

.hero-content {
    /* border: 1px solid red; */
    max-width: 50rem;
    padding: 1.25rem;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    animation: slideUp 1s ease forwards;
    opacity: 1;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
    animation: slideUp 1s ease 0.3s forwards;
    opacity: 1;
}

.hero-content .cta-button {
    animation: slideUp 1s ease 0.6s forwards;
    opacity: 1;
}

/* Common Styles */
.cta-button{
    display: inline-block;
    padding: 0.75rem 1.875rem;
    background-color: #FFD700;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: background-color 0.3s;
}
.cta-button p{
    color: rgb(8, 8, 8);
}

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

section {
    padding: 5rem 3rem;
    box-sizing: border-box;
    width: 100%;
}

h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.25rem;
}

/* Services Section */
.services {
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 1.875rem;
    max-width: 75rem;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 1.875rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1.25rem;
    transition: transform 0.5s ease;
}

.service-card:hover i {
    transform: rotateY(360deg);
}

/* About Section */
.about {
    background-color: #000;
    color: white;
}

.about-content {
    max-width: 75rem;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

.about-img {
    max-width: 30rem;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem auto;
    display: block;
}

.about-img-title {
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: 1.875rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: #FFD700;
    font-size: 2.25rem;
    margin-bottom: 0.625rem;
    position: relative;
}

.stat-item h3::after {
    content: '+';
    position: absolute;
    font-size: 1.5rem;
    margin-left: 5px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.stat-item:hover h3::after {
    opacity: 0;
    transform: translateX(-20px);
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
}

.testimonial-slider {
    max-width: 50rem;
    margin: 0 auto;
    position: relative;
    min-height: 200px;
}

.testimonial {
    text-align: center;
    padding: 1.25rem;
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.testimonial p {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.testimonial h4 {
    color: #666;
}

/* Add styles for the dots */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: #FFD700;
}

/* Add animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 3rem 3rem 1.25rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 2.5rem;
    max-width: 75rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.footer-section {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.footer-section:nth-child(1) { animation-delay: 0.2s; }
.footer-section:nth-child(2) { animation-delay: 0.4s; }
.footer-section:nth-child(3) { animation-delay: 0.6s; }

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 50px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.625rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.social-links a {
    margin-right: 0.9375rem;
    font-size: 1.25rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.social-links a i {
    transition: all 0.3s ease;
}

.social-links a:hover i {
    color: #FFD700;
    transform: rotate(360deg);
}

.footer-bottom {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Reveal on Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.05s linear;
    z-index: 2;
    mix-blend-mode: screen;
}

/* Add a subtle glow effect for particles */
.particle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    opacity: 0.5;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #FFD700;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: none;
}

.floating-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.floating-cta.show {
    display: block;
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #FFD700;
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease;
}

.loading-animation {
    width: 50px;
    height: 50px;
    border: 3px solid #FFD700;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 48em) {
    nav {
        padding: 1.25rem;
    }

    .burger-menu {
        display: block;
    }

    .nav-links {
        display: flex;
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        height: 100vh;
        padding-top: 5rem;
        transition: 0.3s;
        align-items: center;
        justify-content: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
    }

    /* Burger menu animation */
    .burger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    section {
        padding: 3.75rem 1.25rem;
    }
}

/* Animated background gradient */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Floating shapes in hero */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-shape:nth-child(1) {
    width: 100px;
    height: 100px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.hero-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    right: 15%;
    top: 30%;
    animation-delay: 1s;
}

.hero-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 20%;
    bottom: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Enhanced Footer Animations */
.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23000' d='M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    animation: waveAnimation 10s linear infinite;
}

@keyframes waveAnimation {
    0% { background-position-x: 0; }
    100% { background-position-x: 1440px; }
}

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

/* Add these styles for the new sections */

/* Training Section */
.training {
    background: #fff;
    padding: 5rem 3rem;
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 75rem;
    margin: 0 auto;
    align-items: center;
}

.training-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.training-card:hover {
    transform: translateY(-10px);
}

.training-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.training-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.training-card ul li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.training-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.training-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.training-image:hover img {
    transform: scale(1.05);
}

/* Equipment Section */
.equipment {
    background: #000;
    color: white;
    padding: 5rem 3rem;
}

.equipment-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

.equipment-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.equipment-item i {
    font-size: 2.5rem;
    color: rgb(255, 215, 0);
    margin-bottom: 1rem;
}

.equipment-item h3 {
    color: rgb(255, 215, 0);
    margin-bottom: 1rem;
}

/* Careers Section */
.careers {
    background: rgb(0, 0, 0);
    padding: 5rem 3rem;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 75rem;
    margin: 0 auto;
    align-items: center;
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: hwb(0 100% 0%);
    color: hwb(0 0% 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 2rem;
    color: rgb(255, 215, 0);
    margin-bottom: 1rem;
}

.careers-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.careers-image:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 48em) {
    .training-grid,
    .careers-content {
        grid-template-columns: 1fr;
    }

    .equipment-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .training-image,
    .careers-image {
        order: -1;
    }

    /* Center shield icon and content in training card on mobile */
    .training-card {
        text-align: center;
    }

    .training-icon {
        display: flex;
        justify-content: center;
    }
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
} 



/* Contact Section */
.contact {
    background: #111;
    color: #fff;
    padding: 5rem 3rem;
}

.contact h2 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.contact p {
    max-width: 40rem;
    margin: 0.5rem auto 2rem;
    text-align: center;
    color: #ddd;
}

.contact form {
    max-width: 40rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.contact form input[type="text"],
.contact form input[type="email"],
.contact form input[type="tel"],
.contact form select,
.contact form input[type="file"],
.contact form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact form input[type="text"]::placeholder,
.contact form input[type="email"]::placeholder,
.contact form input[type="tel"]::placeholder,
.contact form input[type="url"]::placeholder,
.contact form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact form input[type="text"]:focus,
.contact form input[type="email"]:focus,
.contact form input[type="tel"]:focus,
.contact form select:focus,
.contact form input[type="file"]:focus,
.contact form textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

.contact form textarea {
    grid-column: 1 / -1;
    min-height: 8rem;
    resize: vertical;
}

.contact form button[type="submit"] {
    grid-column: 1 / -1;
    justify-self: center;
    padding: 0.85rem 2rem;
    background: #FFD700;
    color: #111;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
    background: #FFC000;
}

/* Contact Section: Responsive */
@media (max-width: 48em) {
    .contact {
        padding: 3.75rem 1.25rem;
    }

    .contact form {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }
}

/* Application form helpers */
.contact .file-field label {
    display: block;
    margin-bottom: 0.35rem;
    color: #ddd;
}

.contact .help-text {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255,255,255,0.6);
}

.contact .error-text {
    display: block;
    margin-top: 0.35rem;
    color: #ff6b6b;
    min-height: 1rem;
}

.contact input.error,
.contact select.error,
.contact textarea.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

#application-status.error { color: #ff6b6b; }
#application-status.success { color: #57e389; }

/* Visually hidden but accessible labels */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 1px, 1px);
    white-space: nowrap;
    border: 0;
}

/* Availability select: force black text for control and options */
#app-availability,
#app-availability option {
    color: #000;
}

/* Ensure readable background when focused/open */
#app-availability,
#app-availability:focus {
    background: #fff;
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.open { display: flex; }

.modal {
    background: #111;
    color: #fff;
    width: min(900px, 92vw);
    max-height: 86vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.open .modal { transform: translateY(0); opacity: 1; }

.modal-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-body {
    padding: 1.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: calc(86vh - 60px);
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
}

/* Gallery Slider */
.gallery-slider {
    position: relative;
    max-width: 75rem;
    margin: 0 auto 1rem;
    padding: 0 3rem;
}

.gallery-main {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: block;
    height: 420px;
    object-fit: contain;
    background: #000;
}

@media (max-width: 64em) {
    .gallery-main {
        height: 360px;
    }
}

@media (max-width: 48em) {
    .gallery-main {
        height: 240px;
    }
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: background 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-50%) scale(1.05);
    border-color: #FFD700;
}

.gallery-arrow:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.35), 0 8px 20px rgba(0, 0, 0, 0.35);
}

.gallery-arrow.prev { left: 1.25rem; }
.gallery-arrow.next { right: 1.25rem; }

.gallery-thumbs-container {
    position: relative;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 3rem;
}

.gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #FFD700 #333;
    padding-bottom: 0.5rem;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 8px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: #333;
    border-radius: 4px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

.gallery-thumbs::-webkit-scrollbar-thumb:hover {
    background: #FFC000;
}

.gallery-thumbs .thumb {
    min-width: 120px;
    width: 120px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    opacity: 0.6;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.gallery-thumbs .thumb.active {
    opacity: 1;
    border-color: #FFD700;
}

@media (max-width: 48em) {
    .gallery-slider { padding: 0 1.25rem; }
    .gallery-thumbs-container {
        padding: 0 1.25rem;
    }
    .gallery-thumbs .thumb { 
        height: 60px;
        min-width: 100px;
        width: 100px;
    }
}

/* Gallery heading */
.gallery-container > p {
    text-align: center;
    color: #FFD700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1.5rem;
    margin: 5rem 0 1rem 0;
}

.gallery-container > p::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FFD700;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Logo image sizing */
.logo-image {
    height: 15rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    /* width: auto; */
    /* margin-left: 0.75rem; */
}

@media (max-width: 48em) {
    .logo-image {
        height: 10rem;
        margin-left: 0;
    }

    .about-img {
        max-width: 100%;
        float: none;
        margin: 1rem auto;
    }
}