*, *::before, *::after {
    box-sizing: border-box;
}
:root {
    --bs-font-sans-serif: 'SFProDisplay';
}
html,
body {
    margin: 0;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #FFD700;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Visually hidden but accessible to screen readers */
.visually-hidden-focusable {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.visually-hidden-focusable:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: inherit !important;
    margin: inherit !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
}

/* Focus indicators for accessibility (WCAG 2.4.7) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Ensure focus is visible on interactive elements */
.header-main .social-icons a:focus-visible,
.header-main .nav-links a:focus-visible,
.footer-main .social-icons-footer a:focus-visible,
.photowalk-card:focus-visible,
.gallery-item a:focus-visible {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Form labels styling */
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-family: 'SFProDisplay', sans-serif;
    font-size: 14px;
}

    /* Custom styles for India's Wild homepage */
    .header-main {
        background-color: #000;
        padding: 15px 0;
        border-bottom: 3px solid #FFD700;
    }
    
    .header-main .logo {
        color: #FFD700;
        font-size: 28px;
        font-weight: 900;
        text-decoration: none;
        text-transform: uppercase;
    }
    
    .header-main .social-icons {
        display: flex;
        gap: 15px;
        margin-bottom: 40px;
        justify-content: flex-end;
    }
    
    .header-main .social-icons a {
        color: #a4a1a1;
        font-size: 18px;
        text-decoration: none;
    }
    
    .header-main .mobile-menu-toggle {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        padding: 5px 10px;
        position: relative;
        z-index: 1111;
    }
    
    .header-main .header-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .header-main .nav-links {
        display: flex;
        gap: 60px;
        justify-content: flex-end;        
    }
    
    .header-main .nav-links a {
        font-family: Cambria,Georgia,serif;
        color: #fff;
        text-decoration: none;
        font-weight: normal;
        text-transform: lowercase;
        font-size: 16px;
    }
    
    .header-main .nav-links a:hover {
        color: #FFD700;
    }

    
    .hero-section {
        width: 100%;
        position: relative;
    }
    .hero-section img {
        width: 100%;
        height: auto;
    }
    
    .photowalks-section {
        padding: 0px 0 60px;
        background-color: #fff;
    }
    
    .photowalks-section .photowalks-section-title {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 40px;
        color: #000;
        margin-top: -25px;
        position: relative;
    }
    .photowalks-section .schedule-title {
        font-size: 42px;
        font-weight: normal;
        margin-bottom: 40px;
        color: #000;
        margin-top: 58px;
        position: relative;
        border-left: 10px solid #f8d909;
        padding-left: 16px;
    }
    
    .photowalk-card {
        position: relative;
        display: block;
        text-decoration: none;
        border-radius: 0px;
        overflow: hidden;
        box-shadow: 0 8px 8px rgb(0 0 0 / 20%);
        box-shadow: 0 8px 8px rgba(0,0,0,0.2);
        background-color: #efedee;
    }
    
    .photowalk-card .img-wrap img {
        width: 100%;
        height: auto;
        aspect-ratio: 344/343;
        object-fit: cover;
    }
    

    .photowalk-card .card-title {
        font-family: 'Bebas Neue', sans-serif;
        position: absolute;
        top: 20px;
        left: 20px;
        color: transparent;
        font-size: 87px;
        font-weight: normal;
        text-transform: uppercase;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: white;
        z-index: 2;
    }
    
    .photowalk-card .card-logo {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: auto;
        z-index: 2;
    }
    
    .photowalk-card .card-details {
        padding: 20px;
        background-color: #efedee;
    }
    
    .photowalk-card .card-details .time-info {
        display: flex;
        gap: 20px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #0a0a0a;
        flex-wrap: wrap;
    }
    
    .photowalk-card .card-details .tag {
        display: inline-flex;
        align-items: center;
        padding: 13px 12px;
        font-size: 14px;
        color: #7e7c7c;
        margin-bottom: 0px;
        border-width: 1px;
        border-color: rgb(218, 218, 218);
        border-style: solid;
        border-radius: 14px;
        background-color: rgb(255, 255, 255);
        line-height: normal;         
    }
    
    .photowalk-card .card-footer-bar {
        background-color: #FFD700;
        padding: 12px 20px;
        color: #000;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 14px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        margin-top: 60px;
    }
    
    .photowalk-card .card-footer-bar::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #FFD700;
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    }
    .photowalk-card .card-footer-bar .location {
        font-size: 33.333px;
        font-weight: bold;
        line-height:100%;
        text-align: right;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #8e8009;
        color: transparent;
               
    }
    
    .video-banner-section {
        padding: 60px 0;
        background-color: #fff;
    }
    
    .video-banner-placeholder {
        border: 2px solid #ddd;
        background-color: #fff;
        aspect-ratio: 1094/670;
        text-align: center;
        color: #000000;
        font-size: 58px;
        border-radius: 8px;
    }
    
    .about-section {
        padding: 60px 0;
        background-color: #fff;
    }
    
    .about-section .about-content {
        font-size: 28px;
        line-height: 160%;
        color: #333;
        font-family: Cambria,Georgia,serif;
    }
    .footer-divider {
        height: 10px;
        width: 100%;
        background-color: #000;
    }
    .footer-divider-yellow {
        background-color: #FFD700;
    }
    
    .footer-main {
        --min-height: calc(100vw * (496 / 1198));
        padding: 60px 0 30px;
        position: relative;
        color: #fff;
        z-index: 0;
        /* min-height: var(--min-height, 400px); */
        /* 
        background-image: url('../images/home-image-05.jpg');
        background-size: cover;
        background-position: center 80%;
         */
    }
    .footer-main .footerimage{
        position: absolute;
        inset: 0;
        z-index: -1;
        display: block;
        object-fit: cover;
        object-position: center center;
    }
    .footer-main .footerimage img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    
    .footer-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
    }
    
    .footer-main .footer-content {
        position: relative;
        z-index: 1;
    }
    
    .footer-main .footer-logo {
        color: #FFD700;
        font-size: 32px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 30px;
    }
    
    .footer-main .social-section h4 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .footer-main .social-icons-footer {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .footer-main .social-icons-footer a {
        color: #fff;
        font-size: 24px;
        text-decoration: none;
    }
    
    .footer-main .newsletter-section h4 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .footer-main .newsletter-form input {
        border:1px solid rgba(255,255,255,1);
        background-color: transparent;
        padding: 10px 15px;
        margin-bottom: 12px;
        border-radius: 16px;
        width: 100%;
        color: #fff;
    }
    
    .footer-main .newsletter-form input::placeholder {
        color: rgba(255,255,255,1);
    }
    
    .footer-main .newsletter-form .btn-subscribe {
        background-color: #FFD700;
        color: #000;
        border: none;
        padding: 12px 30px;
        border-radius: 16px;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        width: auto;
    }
    
    .footer-main .copyright {
        margin-top: 40px;
        padding-top: 20px;
        color: #fff;
        font-size: 14px;
        text-align: left;
    }

    /* Contact Section Styles */
    .contact-section {
        padding: 60px 0;
        background-color: #dbaf45;
        width: 100%;
    }
    
    .contact-form-wrapper {
        position: relative;
    }
    
    .contact-section .contact-title {
        font-family: Cambria,Georgia,serif;
        font-size: 72px;
        font-weight: 400;
        color: #fff;
        margin-bottom: 40px;
        text-align: left;
    }
    
    .contact-form .form-group {
        margin-bottom: 25px;
    }
    
    .contact-form .form-control {
        width: 100%;
        padding: 10px 20px;
        border: none;
        border-radius: 16px;
        font-family: Cambria,Georgia,serif;
        background-color: #fff;
        color: #000;
        font-size: 16px;
        font-family: 'SFProDisplay', sans-serif;
        outline: none;
    }
    
    .contact-form .form-control::placeholder {
        color: #dbaf45;
    }
    
    .contact-form .form-control:focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    }
    
    .contact-form textarea.form-control {
        resize: vertical;
        min-height: 120px;
    }
    
    .contact-form .btn-submit {
        background-color: #000;
        color: #dbaf45;
        border: none;
        font-family: Cambria,Georgia,serif;
        padding: 9px 50px;
        border-radius: 22px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .contact-form .btn-submit:hover {
        background-color: #333;
    }

    /* Register Section Styles - Same as Contact Section */
    .register-section {
        padding: 60px 0;
        background-color: #dbaf45;
        width: 100%;
    }
    
    .register-section .contact-form-wrapper {
        position: relative;
    }
    
    .register-section .contact-title {
        font-family: Cambria,Georgia,serif;
        font-size: 72px;
        font-weight: 400;
        color: #fff;
        margin-bottom: 40px;
        text-align: left;
    }
    
    .register-section .contact-form .form-group {
        margin-bottom: 25px;
    }
    
    .register-section .contact-form .form-control {
        width: 100%;
        padding: 10px 20px;
        border: none;
        border-radius: 16px;
        background-color: #fff;
        color: #000;
        font-size: 20px;
        font-family: Cambria,Georgia,serif;
        outline: none;
    }
    
    .register-section .contact-form .form-control::placeholder {
        color: #dbaf45;
    }
    
    .register-section .contact-form .form-control:focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    }
    
    .register-section .contact-form .btn-submit {
        background-color: #360a19;
        color: #fff;
        border: none;
        font-family: Cambria,Georgia,serif;
        padding: 9px 50px;
        border-radius: 22px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .register-section .contact-form .btn-submit:hover {
        background-color: #000;
    }
    
    .register-section .col-lg-6 p {
        font-family: Cambria,Georgia,serif;
        font-size: 25px;
        line-height: 160%;
        color: #fff;
        margin-bottom: 25px;
    }
    
    .register-section .col-lg-6 p:last-of-type {
        margin-bottom: 40px;
    }
    
    .register-section .col-lg-6 img {
        max-width: 300px;
        height: auto;
    }

    /* Photowalk Description Section Styles */
    .photowalk-description-section {
        padding: 0;
        background-color: #efeeee;
    }
    
    .photowalk-hero-image {
        margin-bottom: 0;
        width: 100%;
    }
    
    .photowalk-hero-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .photowalk-description-title {
        font-size: 42px;
        font-weight: normal;
        margin-bottom: 40px;
        color: #000;
        margin-top: 58px;
        position: relative;
        border-left: 10px solid #dbaf45;
        padding-left: 16px;
        font-family: Cambria, Georgia, serif;
    }
    
    .photowalk-description-content {
        font-size: 18px;
        line-height: 180%;
        color: #333;
        font-family: Cambria, Georgia, serif;
    }
    
    .photowalk-description-content p {
        margin-bottom: 25px;
        font-size: 25px;
        line-height: 160%;
    }
    
    .photowalk-description-content p:last-child {
        margin-bottom: 0;
    }
    
    .photowalk-details-card {
        border-radius: 0;
        margin-top: 0;
    }
    
    .photowalk-details-card .detail-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .photowalk-details-card .detail-icon {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .photowalk-details-card .detail-icon img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .photowalk-details-card .detail-icon i {
        font-size: 18px;
        color: #666;
    }
    
    .photowalk-details-card .detail-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        flex: 1;
    }
    
    .photowalk-details-card .detail-label {
        font-size: 28px;
        color: #dbaf45;
        text-transform: none;
        font-weight: bold;
        font-family: Cambria,Georgia,serif;
        letter-spacing: 0;
        line-height: normal;
    }
    
    .photowalk-details-card .detail-value {
        font-size: 28px;
        color: #000;
        font-weight: normal;
        font-family: Cambria,Georgia,serif;
    }
    
    .photowalk-details-card .detail-icon img {
        filter: brightness(0) saturate(100%) invert(97%) sepia(100%) saturate(6165%) hue-rotate(318deg) brightness(88%) contrast(94%);
    }
    
    .photowalk-details-card .detail-icon i {
        color: #dbaf45;
    }
    
    .photowalk-gallery {
        margin-top: 60px;
        padding-bottom: 60px;
    }
    
    .photowalk-gallery .gallery-item {
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .photowalk-gallery .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }
    
    .photowalk-gallery .gallery-item:hover img {
        transform: scale(1.05);
    }

    /* Gallery Section Styles */
    .gallery-section {
        padding: 60px 0;
        background-color: #fff;
    }
    
    .gallery-title {
        font-size: 42px;
        font-weight: normal;
        margin-bottom: 20px;
        color: #000;
        position: relative;
        border-left: 10px solid #f8d909;
        padding-left: 16px;
        font-family: Cambria, Georgia, serif;
    }
    
    .gallery-intro {
        font-size: 25px;
        line-height: 160%;
        color: #333;
        font-family: Cambria, Georgia, serif;
        margin-bottom: 40px;
    }
    
    .gallery-grid {
        margin-top: 40px;
        columns: 3 200px;
        column-gap: 1.5rem;
        margin: 0 auto;
    }
    
    .gallery-item {
        width: 150px;
        margin: 0 1.5rem 1.5rem 0;
        display: inline-block;
        width: 100%;
        border-radius: 5px;
        transition: all 0.25s ease-in-out;
    }
    
    .gallery-item a {
        overflow: hidden;
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        text-decoration: none;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }
    
    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .gallery-overlay i {
        color: #FFD700;
        font-size: 32px;
    }
    
    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }
    
    .gallery-item:hover img {
        transform: scale(1.1);
    }

    /* Responsive Styles - Mobile First Approach */
    /* Mobile devices (up to 767px) */
    @media (max-width: 767.98px) {
        .header-main {
            padding: 10px 0;
        }
        
        .header-main .logo img {
            max-width: 64px;
            height: auto;
        }
        
        .header-main .header-right {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #000;
            padding: 20px;
            z-index: 1000;
            flex-direction: column-reverse;
            align-items: flex-start;
            gap: 20px;
            height: 100vh;
        }
        
        .header-main .header-right.active {
            display: flex;
        }
        
        .header-main .social-icons {
            margin-top: 20px;
            justify-content: flex-start;
            gap: 20px;
            margin-block-end: 0;
        }
        
        .header-main .nav-links {
            flex-direction: column;
            gap: 15px;
            width: 100%;
            align-items: flex-start;
            flex-grow: 1;
            margin-block: 0 auto;
            height: 100%;
            justify-content: flex-start;
        }
        
        .header-main .nav-links a {
            font-size: 18px;
            padding: 5px 0;
        }
        .header-main .nav-links a.logo {
            padding: 0;
        }
        .photowalk-hero-image img,
        .hero-section img{
            min-height: 100vh;
            object-fit: cover;
            object-position: center center;
        }
        
        .photowalks-section {
            padding: 20px 0 40px;
        }
        
        .photowalks-section .photowalks-section-title {
            font-size: 28px;
            margin-bottom: 30px;
            margin-top: 0;
            text-align: center !important;
        }
        .photowalks-section .schedule-title {
            font-size: 28px;
            margin-bottom: 30px;
            margin-top: 0;
            text-align: center !important;
        }
        
        
        .photowalk-card .card-title {
            font-size: 45px;
            top: 15px;
            left: 15px;
        }
        
        .photowalk-card .card-details {
            padding: 15px;
        }
        
        .photowalk-card .card-details .time-info {
            gap: 15px;
            font-size: 12px;
        }
        
        .photowalk-card .card-details .tag {
            font-size: 12px;
            padding: 10px 12px;
        }
        
        .photowalk-card .card-footer-bar {
            padding: 10px 15px;
            font-size: 12px;
        }
        
        .photowalk-card .card-footer-bar .location {
            font-size: 24px;
        }
        
        .video-banner-section {
            padding: 40px 0;
        }
        
        .video-banner-placeholder {
            font-size: 24px;
        }
        
        .about-section {
            padding: 40px 0;
        }
        
        .about-section .about-content {
            font-size: 18px;
            line-height: 150%;
            margin-bottom: 20px;
        }
        
        .contact-section {
            padding: 40px 0;
        }
        
        .register-section {
            padding: 40px 0;
        }
        
        .register-section .contact-title {
            font-size: 42px;
            margin-bottom: 30px;
        }
        
        .register-section .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .register-section .contact-form .form-control {
            padding: 12px 15px;
            font-size: 14px;
        }
        
        .register-section .contact-form .btn-submit {
            padding: 12px 40px;
            font-size: 14px;
            width: 100%;
        }
        
        .register-section .col-lg-6 p {
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .register-section .col-lg-6 p:last-of-type {
            margin-bottom: 30px;
        }
        
        .register-section .col-lg-6 img {
            max-width: 200px;
        }
        
        .photowalk-description-section {
            padding: 0;
        }
        
        .photowalk-hero-image {
            margin-bottom: 0;
        }
        
        .photowalk-description-title {
            font-size: 28px;
            margin-bottom: 30px;
            margin-top: 30px;
            padding-left: 12px;
            border-left-width: 8px;
        }
        
        .photowalk-description-content {
            font-size: 16px;
            line-height: 160%;
            margin-bottom: 30px;
        }
        
        .photowalk-description-content p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
       
        .photowalk-details-card .detail-item {
            margin-bottom: 18px;
            padding-bottom: 0px;
            gap: 12px;
        }
        
        .photowalk-details-card .detail-icon {
            width: 30px;
            height: 30px;
        }
        
        .photowalk-details-card .detail-icon i {
            font-size: 16px;
        }
        
        .photowalk-details-card .detail-label {
            font-size: 18px;
        }
        
        .photowalk-details-card .detail-value {
            font-size: 18px;
        }
        
        .photowalk-gallery {
            margin-top: 40px;
            padding-bottom: 40px;
        }
        
        .gallery-section {
            padding: 40px 0;
        }
        
        .gallery-title {
            font-size: 28px;
            margin-bottom: 15px;
            margin-top: 0;
            padding-left: 12px;
            border-left-width: 8px;
        }
        
        .gallery-intro {
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        .gallery-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .gallery-overlay i {
            font-size: 24px;
        }
        
        .contact-section .contact-title {
            font-size: 42px;
            margin-bottom: 30px;
        }
        
        .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .contact-form .form-control {
            padding: 12px 15px;
            font-size: 14px;
        }
        
        .contact-form textarea.form-control {
            min-height: 100px;
        }
        
        .contact-form .btn-submit {
            padding: 12px 40px;
            font-size: 14px;
            width: 100%;
        }
        
        .footer-main {
            padding: 40px 0 20px;
        }
        
        .footer-main .footer-logo img {
            max-width: 150px;
            height: auto;
        }
        
        .footer-main .social-section h4,
        .footer-main .newsletter-section h4 {
            font-size: 16px;
        }
        
        .footer-main .social-icons-footer {
            gap: 12px;
            margin-bottom: 25px;
        }
        
        .footer-main .social-icons-footer a {
            font-size: 20px;
        }
        
        .footer-main .newsletter-form input {
            padding: 10px 15px;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .footer-main .newsletter-form .btn-subscribe {
            padding: 10px 25px;
            font-size: 14px;
            width: 100%;
        }
        
        .footer-main .copyright {
            margin-top: 30px;
            padding-top: 15px;
            font-size: 12px;
            text-align: center;
        }
    }
    
    /* Tablet devices (768px to 991px) */
    @media (min-width: 768px) and (max-width: 991.98px) {
        .header-main .mobile-menu-toggle {
            display: none;
        }
        
        .header-main .header-right {
            display: flex !important;
        }
        
        .header-main .social-icons {
            margin-bottom: 30px;
        }
        
        .header-main .nav-links {
            gap: 40px;
        }
        
        .photowalks-section .photowalks-section-title {
            font-size: 36px;
        }
        .photowalks-section .schedule-title {
            font-size: 36px;
        }
        .photowalk-card .card-title {
            font-size: 65px;
        }
        
        .photowalk-card .card-footer-bar .location {
            font-size: 28px;
        }
        
        .video-banner-placeholder {
            font-size: 42px;
        }
        
        .about-section .about-content {
            font-size: 24px;
        }
        
        
        
        .photowalk-description-title {
            font-size: 36px;
        }
        
        .photowalk-description-content {
            font-size: 17px;
        }
        
        .photowalk-details-card {
            padding: 25px;
        }
        
        .contact-section {
            padding: 50px 0;
        }
        
        .register-section {
            padding: 50px 0;
        }
        
        .register-section .contact-title {
            font-size: 58px;
        }
        
        .register-section .col-lg-6 p {
            font-size: 22px;
        }
       
        .contact-section .contact-title {
            font-size: 58px;
        }
        
        .gallery-section {
            padding: 50px 0;
        }
        
        .gallery-title {
            font-size: 36px;
        }
        
        .gallery-intro {
            font-size: 17px;
        }
        
        .gallery-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
    }
    
    /* Desktop and above (992px+) - Keep existing desktop styles */
    @media (min-width: 992px) {
        .header-main .mobile-menu-toggle {
            display: none;
        }
        
        .header-main .header-right {
            display: flex !important;
        }
    }
    
    /* Print styles */
    @media print {
        * {
            background: transparent !important;
            color: #000 !important;
            box-shadow: none !important;
            text-shadow: none !important;
        }
        
        body {
            font-size: 12pt;
            line-height: 1.5;
        }
        
        .header-main,
        .footer-main,
        .footer-divider,
        .mobile-menu-toggle,
        .social-icons,
        .social-icons-footer,
        .newsletter-section,
        .skip-link,
        .gallery-overlay,
        .btn-submit,
        .btn-subscribe {
            display: none !important;
        }
        
        a {
            text-decoration: underline;
        }
        
        a[href]:after {
            content: " (" attr(href) ")";
            font-size: 10pt;
        }
        
        a[href^="#"]:after,
        a[href^="javascript:"]:after {
            content: "";
        }
        
        img {
            max-width: 100% !important;
            page-break-inside: avoid;
        }
        
        h1, h2, h3, h4, h5, h6 {
            page-break-after: avoid;
        }
        
        .photowalk-card,
        .gallery-item {
            page-break-inside: avoid;
        }
    }


.btnLoadmore .btn-submit {
    background-color: #000;
    color: #dbaf45;
    border: none;
    font-family: Cambria,Georgia,serif;
    padding: 9px 50px;
    border-radius: 22px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 25px;
}

.btnLoadmore .btn-submit:hover {
    background-color: #333;
}

.loading-state {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loading {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 10px solid #ddd;
    border-top-color: rgb(255 215 0);
    animation: loading 1s linear infinite;
}

@keyframes loading {
    to {
        transform: rotate(360deg);
    }
}