/*******************************************************************************

Add your styles here

 *******************************************************************************/



/* Additional fixes for very small screens */
@media only screen and (max-width: 480px) {

    /* Prevent horizontal scrolling */
    .content-holder {
        width: 100vw;
        overflow-x: hidden;
    }

    /* Ensure proper touch scrolling */
    .content {
        min-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Fix for navigation menu */
    .nav-inner nav {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: 80vh;
    }
}

/* Fix for iOS Safari momentum scrolling */
@supports (-webkit-touch-callout: none) {

    .content,
    .nav-inner,
    .fixed-info-container {
        -webkit-overflow-scrolling: touch;
    }
}

/* Prevent zoom on input focus for iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

    input,
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Specific fix for project details page carousel scrolling */
@media only screen and (max-width: 768px) {

    /* Ensure carousel can receive touch events */
    .resize-carousel-holder {
        position: relative !important;
        z-index: 10 !important;
        pointer-events: auto !important;
        touch-action: pan-x pan-y !important;
        -webkit-overflow-scrolling: touch !important;
        overflow: hidden;
    }

    /* Fix for the carousel container */
    .full-width-slider-holder {
        position: relative !important;
        z-index: 10 !important;
        pointer-events: auto !important;
        touch-action: pan-x pan-y !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* Ensure carousel items can be touched */
    .full-width-slider .item {
        pointer-events: auto !important;
        touch-action: pan-x pan-y !important;
    }

    /* Fix for fixed info container to not block carousel */
    .fixed-info-container {
        pointer-events: none !important;
    }

    /* Allow touch events on fixed info content */
    .fixed-info-container * {
        pointer-events: auto !important;
    }

    /* Ensure carousel navigation works */
    .customNavigation a {
        z-index: 20 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }

    /* Fix for carousel zoom functionality */
    .zoomimage {
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }

    /* Ensure proper stacking context */
    .content {
        position: relative;
        z-index: 1;
    }

    .resize-carousel-holder {
        position: relative;
        z-index: 10;
    }

    .fixed-info-container {
        position: fixed;
        z-index: 1000;
        pointer-events: none;
    }

    .fixed-info-container * {
        pointer-events: auto;
    }
}

.next-slide,
.prev-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.content-nav i {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.zoomimage i {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Mobile Responsive Design Fixes */
@media only screen and (max-width: 768px) {

    /* General mobile layout improvements */
    .content {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Fix for project details page layout */
    .fixed-info-container {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        padding: 20px !important;
        margin-bottom: 20px !important;
        float: none !important;
        left: 0 !important;
        top: 0 !important;
        bottom: auto !important;
        opacity: 1 !important;
        background: #fff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }

    /* Fix for carousel container */
    .resize-carousel-holder {
        width: 100% !important;
        float: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Fix for slider container */
    .full-width-slider-holder {
        width: 100% !important;
        height: auto !important;
        min-height: 300px !important;
    }

    /* Fix for slider items */
    .full-width-slider .item {
        width: 100% !important;
        height: auto !important;
        min-height: 300px !important;
    }

    /* Fix for background images */
    .bg-slider {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        min-height: 300px !important;
    }

    /* Fix for zoom images */
    .zoomimage img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }

    /* Enhanced navigation buttons for mobile */
    .customNavigation {
        position: absolute !important;
        top: 50% !important;
        left: 0 !important;
        right: 0 !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
        pointer-events: none !important;
    }

    .customNavigation a {
        position: absolute !important;
        width: 50px !important;
        height: 50px !important;
        background: rgba(0, 0, 0, 0.8) !important;
        color: #fff !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        font-size: 20px !important;
        font-weight: bold !important;
        transition: all 0.3s ease !important;
        pointer-events: auto !important;
        border: 2px solid #fff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
        opacity: 0.9 !important;
    }

    .customNavigation a:hover {
        background: rgba(0, 0, 0, 1) !important;
        transform: scale(1.1) !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
        opacity: 1 !important;
    }

    .customNavigation a.prev {
        left: 15px !important;
    }

    .customNavigation a.next {
        right: 15px !important;
    }

    /* Navigation button icons */
    .customNavigation a:before {
        content: "" !important;
        display: block !important;
        width: 12px !important;
        height: 12px !important;
        border: 2px solid #fff !important;
        border-top: none !important;
        border-right: none !important;
        transform: rotate(45deg) !important;
    }

    .customNavigation a.prev:before {
        margin-left: 4px !important;
    }

    .customNavigation a.next:before {
        margin-right: 4px !important;
        transform: rotate(45deg) scaleX(-1) !important;
    }

    /* Alternative navigation icons using text */
    .customNavigation a.prev:after {
        content: "‹" !important;
        position: absolute !important;
        font-size: 32px !important;
        font-weight: bold !important;
        color: #fff !important;
        line-height: 1 !important;
        margin-left: 2px !important;
    }

    .customNavigation a.next:after {
        content: "›" !important;
        position: absolute !important;
        font-size: 32px !important;
        font-weight: bold !important;
        color: #fff !important;
        line-height: 1 !important;
        margin-right: 2px !important;
    }

    /* Hide default navigation icons */
    .customNavigation a:before {
        display: none !important;
    }

    /* Enhanced touch targets for mobile */
    .customNavigation a {
        min-width: 50px !important;
        min-height: 50px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    /* Navigation button states */
    .customNavigation a:active {
        transform: scale(0.95) !important;
        background: rgba(0, 0, 0, 1) !important;
    }

    /* Fix for content navigation */
    .content-nav {
        position: relative !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .content-nav ul {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 20px !important;
    }

    .content-nav li {
        margin: 0 !important;
    }

    .content-nav a {
        padding: 10px 15px !important;
        border-radius: 5px !important;
        text-decoration: none !important;
    }

    /* Fix for project details text */
    .fixed-info-container h3 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }

    .fixed-info-container h4 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }

    .fixed-info-container p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    /* Fix for project details list */
    .project-details {
        margin-bottom: 20px !important;
    }

    .project-details li {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 8px !important;
        padding: 5px 0 !important;
        border-bottom: 1px solid #eee !important;
    }

    .project-details li span {
        font-weight: bold !important;
        color: #000 !important;
        display: inline-block !important;
        width: 120px !important;
    }

    /* Fix for buttons */
    .btn {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        margin-top: 20px !important;
    }

    /* Fix for separator */
    .separator {
        margin: 15px 0 !important;
        width: 60px !important;
        height: 3px !important;
    }

    /* Fix for footer */
    footer {
        padding: 20px !important;
        text-align: center !important;
    }

    .footer-social {
        margin-top: 20px !important;
    }

    .footer-social li {
        margin: 0 10px !important;
    }

    .policy-box {
        font-size: 12px !important;
        line-height: 27px !important;
        margin-bottom: 15px !important;
    }
}

/* Additional fixes for very small screens */
@media only screen and (max-width: 480px) {

    /* Further reduce padding and margins */
    .fixed-info-container {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }

    .fixed-info-container h3 {
        font-size: 20px !important;
    }

    .fixed-info-container h4 {
        font-size: 16px !important;
    }

    .fixed-info-container p {
        font-size: 13px !important;
    }

    .project-details li {
        font-size: 13px !important;
    }

    .project-details li span {
        width: 100px !important;
        font-size: 12px !important;
    }

    /* Fix for navigation buttons */
    .customNavigation a {
        width: 35px !important;
        height: 35px !important;
        line-height: 35px !important;
        font-size: 14px !important;
    }

    /* Fix for content navigation */
    .content-nav ul {
        padding: 0 10px !important;
    }

    .content-nav a {
        padding: 8px 12px !important;
    }

    /* Fix for slider height */
    .full-width-slider-holder,
    .full-width-slider .item,
    .bg-slider {
        min-height: 250px !important;
    }

    /* Fix for buttons */
    .btn {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }
}

/* Fix for landscape orientation on mobile */
@media only screen and (max-width: 768px) and (orientation: landscape) {
    .fixed-info-container {
        padding: 15px !important;
    }

    .full-width-slider-holder,
    .full-width-slider .item,
    .bg-slider {
        min-height: 200px !important;
    }
}

/* Fix for iOS Safari specific issues */
@supports (-webkit-touch-callout: none) {
    .fixed-info-container {
        -webkit-overflow-scrolling: touch !important;
    }

    .resize-carousel-holder {
        -webkit-overflow-scrolling: touch !important;
    }
}

/* Fix for Android Chrome specific issues */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

    .fixed-info-container,
    .resize-carousel-holder {
        -webkit-overflow-scrolling: touch !important;
    }
}

/* Ensure proper touch targets */
@media only screen and (max-width: 768px) {

    .customNavigation a,
    .content-nav a,
    .btn {
        min-height: 44px !important;
        min-width: 44px !important;
    }


    .zoomimage i {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        background: rgba(0, 0, 0, 0.7) !important;
        color: #fff !important;
        padding: 10px !important;
        border-radius: 50% !important;
        font-size: 18px !important;
    }
}

/* Fix for header and navigation on mobile */
@media only screen and (max-width: 768px) {
    header {
        position: relative !important;
        z-index: 1000 !important;
    }

    .nav-button {
        position: fixed !important;
        top: 2px !important;
        left: 20px !important;
        z-index: 1001 !important;
    }

    .nav-inner {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 50% !important;
        height: 100vh !important;
        z-index: 1002 !important;
        transition: left 0.3s ease !important;
    }

    .nav-inner.vismen {
        left: 0 !important;
    }

    .nav-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 1001 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
    }

    .nav-overlay.visover {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Fix for content layout on mobile */
@media only screen and (max-width: 768px) {
    .content-holder {
        padding-top: 60px !important;
    }

    .content {
        padding-top: 0 !important;
    }

    /* Ensure proper spacing */
    .resize-carousel-holder {
        margin-top: 0 !important;
    }

    /* Fix for any overflow issues */
    .content-holder,
    .content,
    .resize-carousel-holder {
        overflow-x: hidden !important;
    }
}

/* Contact Form Responsive Fixes */
@media only screen and (max-width: 768px) {

    /* Contact form container */
    .contact-form-holder {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.9) !important;
        z-index: 10000 !important;
        display: none !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
    }

    .contact-form-holder.visform {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Contact form content */
    .contact-form-holder .align-content {
        padding: 20px !important;
        margin: 0 !important;
        width: 100% !important;
        height: 83% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .contact-form-holder section {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        background: #fff !important;
        border-radius: 10px !important;
        padding: 4px 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        transform: scale(0.9) !important;
        transition: transform 0.3s ease !important;
    }

    .contact-form-holder.visform section {
        transform: scale(1) !important;
    }

    /* Contact form styling */
    #contact-form {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #contact-form form {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Form inputs */
    #contact-form input[type="text"],
    #contact-form textarea {
        width: 100% !important;
        padding: 15px 20px !important;
        margin: 0 0 20px 0 !important;
        border: 2px solid #eee !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
        background: #fff !important;
        color: #333 !important;
        transition: all 0.3s ease !important;
        box-sizing: border-box !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
    }

    #contact-form input[type="text"]:focus,
    #contact-form textarea:focus {
        border-color: #000 !important;
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) !important;
    }

    #contact-form input[type="text"]::placeholder,
    #contact-form textarea::placeholder {
        color: #999 !important;
    }

    /* Textarea specific styling */
    #contact-form textarea {
        min-height: 120px !important;
        resize: vertical !important;
        font-family: inherit !important;
    }

    /* Submit button */
    #contact-form button[type="submit"] {
        width: 100% !important;
        padding: 15px 25px !important;
        background: #000 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 10px !important;
    }

    #contact-form button[type="submit"]:hover {
        background: #333 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    }

    #contact-form button[type="submit"] span {
        font-size: 16px !important;
    }

    #contact-form button[type="submit"] i {
        font-size: 14px !important;
    }

    /* Close button */
    .close-contact {
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        background: #000 !important;
        color: #fff !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        font-size: 18px !important;
        z-index: 10001 !important;
        transition: all 0.3s ease !important;
        border: 2px solid #fff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .close-contact:before {
        content: "×" !important;
        font-size: 28px !important;
        font-weight: bold !important;
        line-height: 1 !important;
        display: block !important;
        color: #fff !important;
    }

    .close-contact:hover {
        background: #333 !important;
        transform: scale(1.1) !important;
        border-color: #fff !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5) !important;
    }

    .close-contact:active {
        transform: scale(0.95) !important;
    }

    /* Alternative close button with icon */
    .close-contact:after {
        content: "" !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 24px !important;
        height: 3px !important;
        background: #fff !important;
        transform: translate(-50%, -50%) rotate(45deg) !important;
    }

    .close-contact:before {
        content: "" !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 24px !important;
        height: 3px !important;
        background: #fff !important;
        transform: translate(-50%, -50%) rotate(-45deg) !important;
    }

    /* Additional prominent close button for mobile */
    .contact-form-holder .align-content:before {
        content: "Close" !important;
        position: absolute !important;
        top: 70px !important;
        right: 20px !important;
        background: #000 !important;
        color: #fff !important;
        padding: 12px 20px !important;
        border-radius: 25px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        z-index: 10002 !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
        display: none !important;
        border: 2px solid #fff !important;
    }

    /* Show text close button on very small screens */
    @media only screen and (max-width: 480px) {
        .contact-form-holder .align-content:before {
            display: block !important;
        }

        .close-contact {
            display: none !important;
        }
    }

    .contact-form-holder .align-content:after:hover {
        background: #333 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5) !important;
        border-color: #fff !important;
    }

    /* Show enhanced close button on small screens */
    @media only screen and (max-width: 600px) {


        .close-contact {
            display: none !important;
        }
    }

    /* Force show close button on all mobile devices */
    @media only screen and (max-width: 768px) {
        .close-contact {
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
            position: fixed !important;
            top: 20px !important;
            right: 20px !important;
            width: 60px !important;
            height: 60px !important;
            background: #000 !important;
            border: 3px solid #fff !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6) !important;
            z-index: 10003 !important;
        }

        .close-contact .close-contact:after {
            width: 28px !important;
            height: 4px !important;
            background: #fff !important;
        }
    }

    /* Visual feedback states for close buttons */
    .close-contact.touch-active,
    .contact-form-holder .align-content.touch-active {
        transform: scale(0.95) !important;
        opacity: 0.8 !important;
    }

    .close-contact.hover-active,
    .contact-form-holder .align-content.hover-active {
        transform: scale(1.05) !important;
    }

    /* Enhanced close button styling for better visibility */
    .close-contact {
        position: relative !important;
        overflow: hidden !important;
    }


    .close-contact:after {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 20px !important;
        height: 2px !important;
        background: #fff !important;
        transform-origin: center !important;
        transition: all 0.3s ease !important;
    }

    .close-contact:before {
        transform: translate(-50%, -50%) rotate(45deg) !important;
    }

    .close-contact:after {
        transform: translate(-50%, -50%) rotate(-45deg) !important;
    }


    .close-contact:hover:after {
        background: #fff !important;
        width: 22px !important;
        height: 3px !important;
    }

    /* Mobile-specific close button enhancements */
    @media only screen and (max-width: 768px) {
        .close-contact {
            width: 50px !important;
            height: 50px !important;
            top: 15px !important;
            right: 15px !important;
            background: rgba(0, 0, 0, 0.9) !important;
            border: 2px solid #fff !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
        }

        .close-contact:after {
            width: 24px !important;
            height: 3px !important;
        }

        .close-contact:hover:after {
            width: 26px !important;
            height: 4px !important;
        }
    }



    /* Contact list responsive */
    .contact-list {
        margin: 0 0 30px 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .contact-list li {
        margin: 0 0 20px 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .contact-list li span {
        font-weight: bold !important;
        color: #000 !important;
        font-size: 16px !important;
        margin-bottom: 8px !important;
        display: block !important;
    }

    .contact-list li a {
        color: #666 !important;
        text-decoration: none !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
        display: block !important;
    }

    .contact-list li a:hover {
        color: #000 !important;
    }

    /* Show form button */
    .showform {
        width: 100% !important;
        text-align: center !important;
        padding: 15px 25px !important;
        font-size: 16px !important;
        margin-top: 20px !important;
        background: #000 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        display: inline-block !important;
    }

    .showform:hover {
        background: #333 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    }

    

    .map-box {
        width: 100% !important;
        height: 100% !important;
        border-radius: 10px !important;
        overflow: hidden !important;
    }

    .map-box iframe {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
    }

    /* Container adjustments */
    .small-container {
        padding: 20px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Decorative text */
    .dec-text {
        font-size: 28px !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        color: #000 !important;
        font-weight: bold !important;
    }

    /* Body scroll prevention when form is open */
    body.contact-form-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
}

/* Additional fixes for very small screens */
@media only screen and (max-width: 480px) {
    .contact-form-holder .align-content {
        padding: 15px !important;
    }

    .contact-form-holder section {
        padding: 25px 15px !important;
        border-radius: 8px !important;
    }

    #contact-form input[type="text"],
    #contact-form textarea {
        padding: 12px 15px !important;
        font-size: 15px !important;
        margin: 0 0 15px 0 !important;
    }

    #contact-form textarea {
        min-height: 100px !important;
    }

    #contact-form button[type="submit"] {
        padding: 12px 20px !important;
        font-size: 15px !important;
    }

    #contact-form button[type="submit"] span {
        font-size: 15px !important;
    }

    .close-contact {
        top: 15px !important;
        right: 15px !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
    }

    .contact-list li {
        margin: 0 0 15px 0 !important;
    }

    .contact-list li span {
        font-size: 15px !important;
        margin-bottom: 6px !important;
    }

    .contact-list li a {
        font-size: 13px !important;
    }

    .showform {
        padding: 12px 20px !important;
        font-size: 15px !important;
    }

    .dec-text {
        font-size: 24px !important;
        margin-bottom: 25px !important;
    }

    

    .small-container {
        padding: 15px !important;
    }
}

/* Fix for landscape orientation */
@media only screen and (max-width: 768px) and (orientation: landscape) {
    .contact-form-holder .align-content {
        padding: 10px !important;
    }

    .contact-form-holder section {
        padding: 20px 15px !important;
        max-width: 600px !important;
    }

    #contact-form textarea {
        min-height: 80px !important;
    }

}

/* Fix for iOS Safari form issues */
@supports (-webkit-touch-callout: none) {

    #contact-form input[type="text"],
    #contact-form textarea {
        font-size: 16px !important;
        -webkit-appearance: none !important;
        border-radius: 8px !important;
    }

    #contact-form input[type="text"]:focus,
    #contact-form textarea:focus {
        -webkit-appearance: none !important;
    }
}

/* Fix for Android Chrome form issues */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

    #contact-form input[type="text"],
    #contact-form textarea {
        font-size: 16px !important;
        -webkit-appearance: none !important;
    }
}

/* Ensure proper touch targets */
@media only screen and (max-width: 768px) {

    #contact-form button[type="submit"],
    .showform,
    .close-contact {
        min-height: 44px !important;
        min-width: 44px !important;
    }

    /* Prevent zoom on input focus */
    #contact-form input[type="text"],
    #contact-form textarea {
        font-size: 16px !important;
    }
}

/* Fix for form validation and messages */
@media only screen and (max-width: 768px) {
    #message {
        margin: 0 0 20px 0 !important;
        padding: 15px !important;
        border-radius: 8px !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    #message.success {
        background: #d4edda !important;
        color: #155724 !important;
        border: 1px solid #c3e6cb !important;
    }

    #message.error {
        background: #f8d7da !important;
        color: #721c24 !important;
        border: 1px solid #f5c6cb !important;
    }
}

/* Fix for wrapper and content layout */
@media only screen and (max-width: 768px) {
    .wrapper-inner {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .align-content {
        padding: 20px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .content {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .content-holder {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
}

/* Fix for body and html */
@media only screen and (max-width: 768px) {

    /* Fix for body and html */
    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
}

/* Additional fixes for very small screens */
@media only screen and (max-width: 480px) {
    .customNavigation a {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }

    .customNavigation a.prev {
        left: 10px !important;
    }

    .customNavigation a.next {
        right: 10px !important;
    }

    .customNavigation a.prev:after {
        font-size: 28px !important;
    }

    .customNavigation a.next:after {
        font-size: 28px !important;
    }
}

/* Landscape orientation fixes */
@media only screen and (max-width: 768px) and (orientation: landscape) {
    .customNavigation a {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }

    .customNavigation a.prev:after {
        font-size: 24px !important;
    }

    .customNavigation a.next:after {
        font-size: 24px !important;
    }
}

/* Panel Styling for Header Navigation */
.filter-panel,
.search-panel,
.menu-panel {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    background: #fff !important;
    border-bottom: 2px solid #000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    z-index: 9999 !important;
    padding: 20px !important;
    display: none !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

/* Filter Panel Specific Styling */
.filter-panel {
    background: #f8f8f8 !important;
}

.filter-panel h3 {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #000 !important;
    margin-bottom: 15px !important;
    text-align: center !important;
}

.filter-panel .filter-options {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: center !important;
}

.filter-panel .filter-option {
    padding: 8px 16px !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.filter-panel .filter-option:hover,
.filter-panel .filter-option.active {
    background: #333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Search Panel Specific Styling */
.search-panel {
    background: #fff !important;
}

.search-panel h3 {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #000 !important;
    margin-bottom: 15px !important;
    text-align: center !important;
}

.search-panel .search-input {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #eee !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    background: #fff !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.search-panel .search-input:focus {
    border-color: #000 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) !important;
}

.search-panel .search-button {
    width: 100% !important;
    padding: 12px 16px !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    margin-top: 10px !important;
    transition: all 0.3s ease !important;
}

.search-panel .search-button:hover {
    background: #333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Menu Panel Specific Styling */
.menu-panel {
    background: #f8f8f8 !important;
}

.menu-panel h3 {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #000 !important;
    margin-bottom: 15px !important;
    text-align: center !important;
}

.menu-panel .menu-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.menu-panel .menu-option {
    padding: 12px 16px !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
}

.menu-panel .menu-option:hover {
    background: #333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Panel Animation */
.filter-panel,
.search-panel,
.menu-panel {
    transform: translateY(-100%) !important;
    transition: all 0.3s ease !important;
}

.filter-panel:not([style*="display: none"]),
.search-panel:not([style*="display: none"]),
.menu-panel:not([style*="display: none"]) {
    transform: translateY(0) !important;
}

/* Panel Close Button */
.filter-panel .close-panel,
.search-panel .close-panel,
.menu-panel .close-panel {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 30px !important;
    height: 30px !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.filter-panel .close-panel:hover,
.search-panel .close-panel:hover,
.menu-panel .close-panel:hover {
    background: #333 !important;
    transform: scale(1.1) !important;
}

/* Panel Content Positioning */
.filter-panel .panel-content,
.search-panel .panel-content,
.menu-panel .panel-content {
    position: relative !important;
    padding-right: 40px !important;
}

/* Mobile-specific panel adjustments */
@media only screen and (max-width: 480px) {

    .filter-panel,
    .search-panel,
    .menu-panel {
        top: 60px !important;
        padding: 15px !important;
        max-height: 250px !important;
    }

    .filter-panel h3,
    .search-panel h3,
    .menu-panel h3 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }

    .filter-panel .filter-option,
    .menu-panel .menu-option {
        font-size: 14px !important;
        padding: 10px 14px !important;
    }

    .search-panel .search-input {
        font-size: 14px !important;
        padding: 10px 14px !important;
    }
}

/* Landscape orientation panel adjustments */
@media only screen and (max-width: 768px) and (orientation: landscape) {

    .filter-panel,
    .search-panel,
    .menu-panel {
        top: 50px !important;
        max-height: 200px !important;
        padding: 12px !important;
    }
}

/* Visual feedback states for navigation buttons */
.customNavigation a.touch-active {
    transform: scale(0.95) !important;
    background: rgba(0, 0, 0, 1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.customNavigation a.clicked {
    transform: scale(0.9) !important;
    background: rgba(0, 0, 0, 1) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

/* Mobile navigation button enhancements */
.mobile-nav-btn {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Ensure navigation buttons are always accessible */
@media only screen and (max-width: 768px) {
    .customNavigation {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .customNavigation a {
        display: flex !important;
        visibility: visible !important;
        opacity: 0.9 !important;
        transition: all 0.2s ease !important;
    }

    .customNavigation a:hover,
    .customNavigation a:focus {
        opacity: 1 !important;
        transform: scale(1.05) !important;
    }
}

/* Header Navigation Fixes for Mobile */
@media only screen and (max-width: 768px) {

    /* Header container */
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10000 !important;
        background: #fff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        padding: 15px 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    /* Brand name */
    header .brand {
        font-size: 18px !important;
        font-weight: bold !important;
        color: #000 !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Hamburger menu button */
    .nav-button {
        position: relative !important;
        width: 30px !important;
        height: 30px !important;
        background: #000 !important;
        border: none !important;
        border-radius: 4px !important;
        cursor: pointer !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 10001 !important;
    }

    .nav-button span {
        display: block !important;
        width: 18px !important;
        height: 2px !important;
        background: #fff !important;
        margin: 2px 0 !important;
        transition: all 0.3s ease !important;
        border-radius: 1px !important;
    }

    /* Hamburger menu active state */
    .nav-button.cmenu span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
    }

    .nav-button.cmenu span:nth-child(2) {
        opacity: 0 !important;
    }

    .nav-button.cmenu span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px) !important;
    }

    /* Header navigation options (the three black rectangles) */
    .header-nav-options {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .header-nav-options .nav-option {
        width: 30px !important;
        height: 30px !important;
        background: #000 !important;
        border-radius: 4px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .header-nav-options .nav-option:hover {
        background: #333 !important;
        transform: scale(1.1) !important;
    }

    .header-nav-options .nav-option:active {
        transform: scale(0.95) !important;
    }

    /* Navigation option icons */
    .header-nav-options .nav-option:before {
        content: "" !important;
        display: block !important;
        width: 12px !important;
        height: 12px !important;
        background: #fff !important;
        border-radius: 2px !important;
    }

    /* Different icons for different options */
    .header-nav-options .nav-option.filter:before {
        content: "⚙" !important;
        background: transparent !important;
        font-size: 14px !important;
        color: #fff !important;
    }

    .header-nav-options .nav-option.search:before {
        content: "🔍" !important;
        background: transparent !important;
        font-size: 14px !important;
        color: #fff !important;
    }

    .header-nav-options .nav-option.menu:before {
        content: "⋮" !important;
        background: transparent !important;
        font-size: 16px !important;
        color: #fff !important;
        font-weight: bold !important;
    }

    /* Alternative text-based icons */
    .header-nav-options .nav-option.filter:after {
        content: "F" !important;
        position: absolute !important;
        font-size: 12px !important;
        font-weight: bold !important;
        color: #fff !important;
        background: transparent !important;
    }

    .header-nav-options .nav-option.search:after {
        content: "S" !important;
        position: absolute !important;
        font-size: 12px !important;
        font-weight: bold !important;
        color: #fff !important;
        background: transparent !important;
    }

    .header-nav-options .nav-option.menu:after {
        content: "M" !important;
        position: absolute !important;
        font-size: 12px !important;
        font-weight: bold !important;
        color: #fff !important;
        background: transparent !important;
    }

    /* Hide default icons and show text */
    .header-nav-options .nav-option:before {
        display: none !important;
    }

    /* Ensure proper spacing and alignment */
    .header-nav-options {
        margin-left: auto !important;
        margin-right: 0 !important;
    }

    /* Touch-friendly enhancements */
    .nav-button,
    .header-nav-options .nav-option {
        min-width: 44px !important;
        min-height: 44px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }

    /* Visual feedback for touch */
    .nav-button.touch-active,
    .header-nav-options .nav-option.touch-active {
        transform: scale(0.95) !important;
        background: #333 !important;
    }

    /* Ensure header is always visible */
    header {
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
    }

    /* Content padding to account for fixed header */
    .content-holder {
        padding-top: 70px !important;
    }
}

/* Additional fixes for very small screens */
@media only screen and (max-width: 480px) {
    header {
        padding: 10px 15px !important;
    }

    .nav-button {
        width: 28px !important;
        height: 28px !important;
    }

    .nav-button span {
        width: 16px !important;
        height: 2px !important;
    }

    .header-nav-options .nav-option {
        width: 28px !important;
        height: 28px !important;
    }

    .header-nav-options {
        gap: 8px !important;
    }

    .content-holder {
        padding-top: 60px !important;
    }
}

/* Landscape orientation fixes */
@media only screen and (max-width: 768px) and (orientation: landscape) {
    header {
        padding: 8px 15px !important;
    }

    .nav-button {
        width: 26px !important;
        height: 26px !important;
    }

    .header-nav-options .nav-option {
        width: 26px !important;
        height: 26px !important;
    }

    .content-holder {
        padding-top: 50px !important;
    }
}




/* Tablet styles - 2 images */
@media (min-width: 481px) and (max-width: 768px) {
    .mySwiper {
        height: 350px !important;
        min-height: 350px !important;
    }
    
    .swiper-wrapper {
        height: 350px !important;
        min-height: 350px !important;
    }
    
    .swiper-slide {
        height: 350px !important;
        min-height: 350px !important;
    }
    
    .swiper-slide img {
        height: 350px !important;
        min-height: 350px !important;
    }
}

/* Mobile styles - 1 image */
@media (max-width: 480px) {
    .mySwiper {
        height: 300px !important;
        min-height: 300px !important;
        margin: 0 10px !important;
    }
    
    .swiper-wrapper {
        /* height: 300px !important;
        min-height: 300px !important; */
    }
    
    .swiper-slide {
        height: 300px !important;
        min-height: 300px !important;
        margin: 0 !important;
    }
    
    .swiper-slide img {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }
}

/* Very small mobile devices */
@media (max-width: 360px) {
    .mySwiper {
        height: 250px !important;
        min-height: 250px !important;
        margin: 0 5px !important;
    }
    
    .swiper-wrapper {
        height: 250px !important;
        min-height: 250px !important;
    }
    
    .swiper-slide {
        height: 250px !important;
        min-height: 250px !important;
    }
    
    .swiper-slide img {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
    }
}



/* Ensure proper spacing and touch behavior */
.mySwiper .swiper-slide {
    touch-action: pan-x pan-y !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

/* Smooth transitions for all devices */
.swiper-slide img {
    transition: all 0.3s ease !important;
    will-change: transform !important;
}

/* Hover effects for desktop */
@media (hover: hover) and (pointer: fine) {
    .swiper-slide:hover img {
        transform: scale(1.02) !important;
    }
}

/* Additional slider container fixes */
.resize-carousel-holder {
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
    overflow: hidden !important;
    position: relative !important;
}

/* Disclaimer font family - Times New Roman */
#disclaimer-link {
    font-family: "Times New Roman", Times, serif !important;
}

/* Ensure proper image aspect ratio maintenance */
.swiper-slide img {
    aspect-ratio: 16/9 !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Fix for iOS Safari image rendering */
@supports (-webkit-touch-callout: none) {
    .swiper-slide img {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }
}

/* Ensure smooth scrolling on all devices */
.mySwiper {
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
}

/* Fix for Android Chrome image rendering */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .swiper-slide img {
        image-rendering: -webkit-optimize-contrast !important;
        image-rendering: optimize-contrast !important;
    }
}

.owl-stage-outer{
    margin-bottom: 70px !important;
}
footer{
    box-shadow: 0 -34px 28px rgba(0, 0, 0, 0.1) !important;
}
.content-about{
    display: flex;
    justify-content: space-around;
    align-items: center;
}