/* ==================================Responsive Header======================================== */

@media (max-width: 991px) {
    p {
        font-size: 14px;
        margin: 0;
    }

    .gradient-text {
        font-size: 28px;
    }

    .section-pad {
        padding: 57px 0;
    }










    /* =========================header========================== */

    header {
        padding: 30px 0;
    }

    .hamburger-menu {
        display: block;
    }

    /* Mobile Nav Links - Full Screen Overlay */
    .mobile-nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background-color: #000;
        background-image: url('../images/yellow-light-bottom.png'),
            radial-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px);
        background-repeat: no-repeat, repeat;
        background-position: bottom center, center center;
        background-size: 250% auto, 15px 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        padding-top: 80px;
        z-index: 9999;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
        visibility: hidden;
        overflow: hidden;
    }

    .mobile-nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    /* List Items - Transition for Opening/Closing */
    .mobile-nav-links ul li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .mobile-nav-links.active ul li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger Delays for Opening */
    .mobile-nav-links.active ul li:nth-child(1) {
        transition-delay: 0.2s;
    }

    .mobile-nav-links.active ul li:nth-child(2) {
        transition-delay: 0.3s;
    }

    .mobile-nav-links.active ul li:nth-child(3) {
        transition-delay: 0.4s;
    }

    .mobile-nav-links.active ul li:nth-child(4) {
        transition-delay: 0.5s;
    }

    .mobile-nav-links.active ul li:nth-child(5) {
        transition-delay: 0.6s;
    }

    .mobile-nav-links.active ul li:nth-child(6) {
        transition-delay: 0.7s;
    }

    .mobile-nav-links.active ul li:nth-child(7) {
        transition-delay: 0.8s;
    }

    /* No delays on closing for faster exit */
    .mobile-nav-links:not(.active) ul li {
        transition-delay: 0s;
        transition-duration: 0.3s;
    }

    .mobile-nav-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 25px;
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-links ul li a {
        font-size: 20px;
        display: block;
        color: #fff;
    }

    .mobile-nav-links ul li.active a {
        color: #f8db62;
    }

    .mobile-menu-head {
        position: absolute;
        top: 30px;
        left: 0;
        width: 100%;
        padding: 0 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-head .logo img {
        height: 40px;
        width: auto;
    }

    .close-menu {
        font-size: 30px;
        color: #fff;
        cursor: pointer;
        transition: color 0.3s;
    }

    .close-menu:hover {
        color: var(--primary-color);
    }

    .mobile-connect-btn {
        padding: 10px 25px;
        background: var(--primary-color);
        border-radius: 99px;
        corner-shape: squircle;
        color: #000 !important;
        font-weight: 600;
        font-size: 18px !important;
        display: inline-block;
        margin-top: 20px;
    }

    /* =========================hero-section============================== */

    .hero-section {
        height: auto;
        min-height: 100vh;
        margin: 0;
        background-position: center;
        border-radius: 0;
        display: flex;
        align-items: flex-end;
    }

    .hero-section .hero-col {
        height: auto;
        min-height: 50vh;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
    }

    .hero-section .hero-col h1 {
        font-size: 40px;
    }

    .hero-section .hero-col p {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-section .hero-col .hero-btn {
        width: 100%;
        gap: 15px;
    }

    /* ==========================================abt-sec===================================== */

    .abt-gradient::after {
        width: 200%;
        background-size: 100% auto;
    }

    .about-main-desc {
        font-size: 22px;
        margin-bottom: 0px;
    }

    .about-img-1 img {
        width: 100%;
    }

    .tilt-image {
        width: 100%;
        margin: 30px 0 40px 0;
    }

    /* ========================================products-sec==================================== */

    .products-grid-placeholder .product-col img {
        height: 130px;
        border-radius: 12px;
    }

    .products-grid-placeholder {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
        align-items: center;
        justify-items: center;
        gap: 50px;
    }

    .feature-box {
        margin-bottom: 30px;
    }

    .custom-mb {
        margin-bottom: 30px;
    }

    .custom-mb br {
        display: none;
    }


    /* =====================================why-choose===================================== */

    .why-item {
        padding: 20px 10px;
    }

    .why-item h4 {
        font-size: 18px;
    }

    .whychoose-sec p {
        font-size: 15px;
        /* margin-bottom: 30px; */
    }

    .whychoose-desc {
        margin-bottom: 30px;
    }

    .whychoose-sec::after {
        width: 200%;
    }

    /* =============================================gallery================================== */

    .gallery-sec {
        padding-bottom: 130px !important;
    }

    .gallery-item {
        width: 200px;
        height: 150px;
        border-radius: 10px;
    }

    .gallery-row {
        gap: 15px;
        margin-bottom: 15px;
    }

    .youtube-sec h3 {
        margin: 0 10px;
    }

    .youtube-sec .slick-prev {
        top: inherit;
        bottom: -90px;
    }

    .youtube-sec .slick-next {
        top: inherit;
        bottom: -90px;
    }

    /* =============================================Footer================================== */

    .main-footer {
        padding: 60px 0;
        border-radius: 0;
        margin-bottom: 0px;
    }

    .footer-bg-logo {
        background-size: cover;
        opacity: 0.1;
        width: 100%;
        height: 100%;
        top: 0;
        transform: none;
        background-position: center;
    }

    .footer-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-links-list li {
        margin-bottom: 10px;
    }

    .contact-list li {
        margin-bottom: 10px;
    }

    .copyright-section {
        position: relative;
        height: auto;
        background-color: #000;
        padding: 20px 15px;
    }

    .copyright-section .row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .copyright-text,
    .powered-by {
        text-align: center;
        width: 100%;
    }

    @media (max-width: 767px) {
        .footer-branches-col {
            margin-top: 30px;
        }
    }


    /* ============about-page========= */


    .about-banner-content h6 {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .about-banner-title {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .about-banner {
        padding-top: 100px;
    }

    .about-banner-img img {
        border-radius: 40px;
        margin-top: 30px;
    }



    .our-story-img img {
        border-radius: 40px;
        margin-bottom: 30px;
    }

    .stat-number {
        font-size: 35px;
    }


    /* ============product-page========= */

    .product-banner {
        padding: 140px 0 100px;
        margin: 0px;
        border-radius: 0px;
        background-position: left;
    }

    /* Highlight section - flagship collection */
    .highlight-sec .gradient-text {
        font-size: 24px;
    }

    .highlight-sec .highlight-card {
        padding: 24px 20px;
        min-height: 200px;
    }

    .highlight-sec .highlight-img img {
        max-height: 120px;
    }

    .highlight-sec .collection-p {
        margin-top: 28px;
        font-size: 16px;
    }

    /* ============gallery-page========= */

    .gallery-card {
        height: 180px;
    }

    .gallery-filter {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        padding: 5px 20px 20px 20px;
        margin: 0 -20px;
    }

    .gallery-filter-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 8px 20px !important;
        font-size: 14px !important;
    }


    /* ============contact-page========= */
    .contact-form {
        margin-bottom: 50px;
    }

    .contact-info-card {
        margin-left: 0;
    }

    .card-title-contact {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .card-title-col {
        flex-direction: column;
    }

    .about-banner-content {
        margin-top: 38px;
    }

    .break {
        display: none;
    }

    .ftr-break {
        display: none;
    }

    /* .product-5 {
        display: none;
    } */

    .cntct-heding {
        display: none;
    }




}








@media (max-width: 768px) {
    .product-img-box {
        padding: 10px;
        height: 180px;
    }

    .product-name {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .product-desc {
        font-size: 11px;
    }

    .product-overlay {
        padding: 10px;
    }



    .contact-page-section::after {
        width: 250%;
    }

    .why-desc {
        padding-left: 43px;
    }

    .products-grid-placeholder {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        margin: 40px 0 !important;
        justify-items: center;
    }

    .products-grid-placeholder .product-col {
        width: 100%;
        display: flex;
        justify-content: center;
        /* background: rgba(255, 255, 255, 0.05); */
        padding: 8px 8px 8px 4px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .products-grid-placeholder .product-col:last-child {
        grid-column: span 2;
        width: 50%;
    }

    .products-grid-placeholder .product-col img {
        height: 100px !important;
        width: auto !important;
        object-fit: contain;
    }
}













@media (max-width: 576px) {

    .hero-section {
        background-image: url('../images/mobile_view.webp');
        background-position: left;
    }

    .hero-btn a {
        width: 100%;
    }

    .hero-btn .enquiry-btn,
    .hero-btn .products-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    /* ========================gallery======================== */

    .youtube-sec h3 {
        font-size: 25px;
    }



    .contact-info-card {
        padding: 30px;
    }

    /* Highlight section - small screens */
    .highlight-sec .gradient-text {
        font-size: 27px;
    }

    .highlight-sec .highlight-card {
        padding: 20px 16px;
        min-height: 180px;
    }

    .highlight-sec .highlight-img img {
        max-height: 100px;
    }

    /* WhatsApp Sticky Button - Mobile */
    .whatsapp-sticky {
        width: 50px;
        height: 50px;
        bottom: 25px;
        right: 25px;
        font-size: 28px;
    }

    /* Call Sticky Button - Mobile */
    .call-sticky {
        width: 50px;
        height: 50px;
        bottom: 85px;
        right: 25px;
        font-size: 24px;
    }
}

@media (min-width: 321px) and (max-width: 482px) {

    /* ============================home========================= */
    .products-grid-placeholder .product-col img {
        height: 81px !important;
    }

    .heading-label {
        margin-bottom: 32px;
    }

    .animate {
        font-size: 24px;
    }

    .animate {
        padding-bottom: 0px;
    }

    .gallery-banner {
        background-image: url(../images/gallery_mobile.png);
        padding: 175px 0 120px;
        margin: 9px 9px 9px 9px;
    }

    .banner-text {
        margin-top: 75px;
    }

    /* ==========products============= */
    .product-banner {
        background-image: url(../images/product_mobile.png);
        padding: 175px 0 120px;
        margin: 9px 9px 9px 9px;
        border-radius: 66px;
    }

    .product-img-box img {
        max-width: 100%;
    }

    .section-separator {
        padding: 32px 0;
    }

    /* =====================gallery===================== */
    .modal-content {
        max-height: 18vh;
    }

    /* ================blog=============== */
    .blg-txt {
        margin-top: 72px;
    }

    .blog-banner {
        background-image: url(../images/blog_mobile.png);
        padding: 175px 0 120px;
        margin: 9px 9px 9px 9px;
        border-radius: 66px;
    }

    /* ============contatc================= */
    .contact-banner {
        background-image: url(../images/contact_mobile.png);
        padding: 175px 0 120px;
        margin: 9px 9px 9px 9px;
        border-radius: 66px;
    }

    /* Category filter slider */
    .category-filter {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        padding-bottom: 10px;
        margin: 0 -15px 30px -15px;
        /* Slight negative margin for edge-to-edge feel */
        padding-left: 15px;
        padding-right: 15px;
        gap: 12px;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
        -ms-overflow-style: none;
        /* Hide scrollbar IE/Edge */
        -webkit-overflow-scrolling: touch;
    }

    .category-filter::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .category-filter .filter-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 10px 25px !important;
        font-size: 15px !important;
    }

    .blog-inner-sec {
        padding: 49px 0;
        /* min-height: 80vh; */
    }

    /* ========================contact==================================== */
    .footer-logo img {
        width: 36%;
    }


    /* ===============================about page============================= */

}

@media (max-width: 1550px) {
    /* .hero-section .hero-col h1 {
        font-size: 55px;
    } */
}

@media (min-width: 992px) and (max-width: 1200px) {
    .product-img-box img {
        /* max-width: 80%; */
        max-height: 73%;
    }

    .about-break {
        display: none;
    }

    .hero-section .hero-col h1 {
        font-size: 54px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .product-img-box img {
        max-height: 57%;
    }
}

@media (min-width: 321px) and (max-width: 421px) {
    /* .year-break {
        display: none;
    } */

    .our-story-stats {
        gap: 22px;
    }
}

@media (max-width: 1200px) {
    .prdct-break {
        display: none;
    }
}


@media (min-width: 1300px) and (max-width: 1400px) {
    .products-grid-placeholder .product-col {
        /* background: #1f1f1f; */
        padding: 21px;
        border-radius: 16px;
        margin-right: 20px;
    }

    .products-grid-placeholder img {
        height: 103px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        /* width: 100%; */
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .products-grid-placeholder .product-col {
        /* background: #1f1f1f; */
        padding: 22px;
        border-radius: 16px;
    }

    .products-grid-placeholder img {
        height: 101px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .products-grid-placeholder img {
        height: 102px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .products-grid-placeholder .product-col {
        /* background: #1f1f1f; */
        padding: 5px;
        border-radius: 16px;
        margin-right: 10px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .products-grid-placeholder .product-col img {
        height: 115px;
        border-radius: 12px;
    }

    .products-grid-placeholder .product-col {
        /* background: #1f1f1f; */
        padding: 20px;
        border-radius: 16px;
        margin-right: 10px;
    }

}