/* 
 * Future Coat - Responsive Adaptations
 * Breakpoints: 991px (Desktop/Tablet/Mobile transition) and container widths
 */

/* ==========================================================================
   1. Common Container & Desktop Header Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1850px) {
    .fc_header_container {
        padding: 0 80px;
    }

    .fc_nav_list {
        gap: 24px;
    }

    .fc_partner_logo_img {
    height: 55px;
    }

    .fc_header_action {
        gap: 22px;
    }
}

@media (max-width: 1600px) {
    .common-container {
        padding: 0 150px;
    }

    .fc_header_container {
        padding: 0 50px;
    }

    .fc_nav_list {
        gap: 18px;
    }

    .fc_nav_link {
        font-size: 15px;
    }


    .fc_contact_btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1500px) {
    .fc_about_left {
        width: 60%;
    }

    .fc_about_right {
        width: 35%;
    }
}

@media (max-width: 1366px) {
    .common-container {
        padding: 0 100px;
    }

    .fc_header_container {
        padding: 0 35px;
    }

    .fc_nav_list {
        gap: 14px;
    }

    .fc_nav_link {
        font-size: 14px;
        letter-spacing: 0.2px;
    }

    .fc_logo_img {
        height: 44px;
    }

    .fc_header_action {
        gap: 16px;
    }

    .fc_partner_logo_link {
        margin-left: 0;
    }

    .fc_contact_btn {
        padding: 9px 16px;
        font-size: 0.88rem;
    }
}

@media (max-width: 1199px) {
    .common-container {
        padding: 0 60px;
    }

    .fc_header_container {
        padding: 0 25px;
    }

    .fc_nav_list {
        gap: 10px;
    }

    .fc_nav_link {
        font-size: 13.5px;
    }

    .fc_logo_img {
        height: 40px;
    }

    .fc_header_action {
        gap: 12px;
    }

    .fc_contact_btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .fc_hero_banner {
        background-position: 80%;
    }
}

@media (max-width: 1080px) {
    .fc_header_container {
        padding: 0 20px;
    }

    .fc_nav_list {
        gap: 8px;
    }

    .fc_nav_link {
        font-size: 13px;
    }

    .fc_partner_logo_img {
        height: 45px;
    }

    .fc_contact_btn {
        padding: 7px 12px;
        font-size: 0.82rem;
    }
}

@media (max-width: 991px) {
    .common-container {
        padding: 0 30px;
    }
}

@media (max-width: 575px) {
    .common-container {
        padding: 0 20px;
    }
}

/* ==========================================================================
   2. Layout & Component Adaptations (<= 991px)
   ========================================================================== */
@media (max-width: 991px) {

    /* Hide desktop nav, partner logo, and desktop action btn */
    .fc_nav_wrapper,
    .fc_partner_logo_link,
    .fc_header_action {
        display: none !important;
    }

    /* Modern Morphing Hamburger Toggle Icon */
    .fc_hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 38px;
        height: 38px;
        padding: 9px 7px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1060;
    }

    .fc_hamburger:hover {
        background: rgba(237, 28, 36, 0.12);
        border-color: rgba(237, 28, 36, 0.35);
    }

    .fc_hamburger_bar {
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.25s ease,
                    background-color 0.3s ease;
    }

    /* Morphing Hamburger into animated 'X' */
    .fc_hamburger.fc_active {
        background: rgba(237, 28, 36, 0.15);
        border-color: rgba(237, 28, 36, 0.4);
    }

    .fc_hamburger.fc_active .fc_hamburger_bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #ED1C24;
    }

    .fc_hamburger.fc_active .fc_hamburger_bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .fc_hamburger.fc_active .fc_hamburger_bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #ED1C24;
    }

    .fc_header {
        height: 75px;
    }

    .fc_header.fc_scrolled {
        height: 65px;
    }

    /* Backdrop Overlay */
    .fc_mobile_nav_backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .fc_mobile_nav_backdrop.fc_active {
        opacity: 1;
        visibility: visible;
    }

    /* Modern Side Slide-out Navigation Drawer with Glassmorphism */
    .fc_mobile_nav_drawer {
        position: fixed;
        top: 0;
        right: -360px;
        width: 330px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(165deg, rgba(16, 19, 32, 0.98) 0%, rgba(8, 10, 18, 0.99) 100%);
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6), inset 1px 0 0 rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        pointer-events: auto;
        transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                    visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .fc_mobile_nav_drawer.fc_active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    /* Sticky Drawer Header */
    .fc_drawer_header {
        position: sticky;
        top: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(12, 15, 27, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-shrink: 0;
    }

    .fc_drawer_logo {
        height: 34px;
        width: auto;
        object-fit: contain;
    }

    .fc_drawer_close_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.8);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .fc_drawer_close_btn:hover {
        background: rgba(237, 28, 36, 0.15);
        border-color: rgba(237, 28, 36, 0.4);
        color: #fff;
        transform: rotate(90deg) scale(1.05);
    }

    /* Mobile Nav Container & List */
    .fc_mobile_nav_container {
        width: 100%;
        padding: 24px;
        display: flex;
        flex-direction: column;
        flex: 1 0 auto;
        min-height: min-content;
        justify-content: space-between;
    }

    .fc_mobile_nav_list {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }

    /* Staggered Entrance Animation for Menu Items */
    @keyframes fcMobileItemSlideIn {
        0% {
            opacity: 0;
            transform: translateX(25px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .fc_mobile_nav_item {
        opacity: 0;
    }

    .fc_mobile_nav_drawer.fc_active .fc_mobile_nav_item {
        animation: fcMobileItemSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .fc_mobile_nav_drawer.fc_active .fc_mobile_nav_item:nth-child(1) { animation-delay: 0.08s; }
    .fc_mobile_nav_drawer.fc_active .fc_mobile_nav_item:nth-child(2) { animation-delay: 0.14s; }
    .fc_mobile_nav_drawer.fc_active .fc_mobile_nav_item:nth-child(3) { animation-delay: 0.20s; }
    .fc_mobile_nav_drawer.fc_active .fc_mobile_nav_item:nth-child(4) { animation-delay: 0.26s; }
    .fc_mobile_nav_drawer.fc_active .fc_mobile_nav_item:nth-child(5) { animation-delay: 0.32s; }
    .fc_mobile_nav_drawer.fc_active .fc_mobile_nav_item:nth-child(6) { animation-delay: 0.38s; }

    .fc_mobile_nav_drawer.fc_active .fc_mobile_drawer_footer {
        animation: fcMobileItemSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.44s forwards;
    }

    /* Navigation Item Links */
    .fc_mobile_nav_link {
        font-family: 'Inter', sans-serif;
        font-size: 1.05rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 18px;
        border-radius: 8px;
        border: 1px solid transparent;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        overflow: hidden;
    }

    .fc_mobile_nav_link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%) scaleY(0);
        width: 3.5px;
        height: 60%;
        background: #ED1C24;
        border-radius: 0 4px 4px 0;
        box-shadow: 0 0 10px rgba(237, 28, 36, 0.8);
        transition: transform 0.3s ease;
    }

    .fc_nav_arrow {
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0.4;
    }

    .fc_mobile_nav_link:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        padding-left: 24px;
    }

    .fc_mobile_nav_link:hover .fc_nav_arrow {
        transform: translateX(4px);
        opacity: 1;
        stroke: #ED1C24;
    }

    .fc_mobile_nav_link.fc_active {
        color: #fff;
        font-weight: 600;
        background: linear-gradient(90deg, rgba(237, 28, 36, 0.15) 0%, rgba(237, 28, 36, 0.02) 100%);
        border-color: rgba(237, 28, 36, 0.3);
        padding-left: 24px;
    }

    .fc_mobile_nav_link.fc_active::before,
    .fc_mobile_nav_link:hover::before {
        transform: translateY(-50%) scaleY(1);
    }

    .fc_mobile_nav_link.fc_active .fc_nav_arrow {
        opacity: 1;
        stroke: #ED1C24;
    }

    /* Drawer Footer Container */
    .fc_mobile_drawer_footer {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-direction: column;
        gap: 16px;
        opacity: 0;
    }

    .fc_mobile_contact_btn {
        width: 100%;
        text-align: center;
        padding: 13px 0;
        font-size: 0.98rem;
        font-weight: 600;
        background: linear-gradient(135deg, #ED1C24 0%, #B8141B 100%);
        border: none;
        border-radius: 6px;
        color: #fff;
        box-shadow: 0 6px 20px rgba(237, 28, 36, 0.35);
        transition: all 0.3s ease;
        display: block;
    }

    .fc_mobile_contact_btn:hover {
        background: linear-gradient(135deg, #FF2E36 0%, #D41921 100%);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(237, 28, 36, 0.5);
    }

    /* Partner Card in Drawer Footer */
    .fc_mobile_partner_card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 12px 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
    }

    .fc_mobile_partner_card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.18);
        transform: translateY(-1px);
    }

    .fc_partner_label {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 600;
    }

    .fc_mobile_partner_logo_link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 4px 8px;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .fc_mobile_partner_logo_link:hover {
        opacity: 0.9;
        transform: scale(1.03);
    }

    .fc_mobile_partner_logo_img {
        height: 44px;
        width: auto;
        object-fit: contain;
    }

    /* Hero Typography Sizing for Tablet (<= 991px) */
    .fc_hero_heading {
        font-size: 42px;
        line-height: 54px;
    }

    .fc_hero_desc {
        font-size: 0.95rem;
    }

    .fc_btn_quote {
        width: 100%;
        justify-content: start;
        padding: 8px 8px 8px 0px;
        font-size: 20px;
    }



    /* Statistics Counter Section for Tablet (<= 991px) */
    .fc_stats_number {
        font-size: 25px;
    }

    .fc_counter_plus {
        font-size: 25px;
    }

    .fc_stats_desc {
        font-size: 13px;
        line-height: 19px;
    }

    .fc_stats_section_left {
        padding-right: 30px;
    }

    .fc_stats_section_right {
        padding-left: 30px;
    }

    /* About Section for Tablet (<= 991px) */
    .fc_about_wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .fc_about_left {
        width: 100%;
    }

    .fc_about_right {
        width: 100%;
        display: flex;
        justify-content: left;
    }

    .fc_about_image_wrapper {
        max-width: 600px;
    }

    .fc_about_heading,
    .fc_gallery_page_heading {
        font-size: 28px;
    }

    /* Milestones Section for Tablet (<= 991px) */
    .fc_milestone_heading {
        font-size: 28px;
    }

    .fc_milestone_card {
        padding: 40px 30px;
    }

    .fc_milestone_line {
        left: 30px;
        right: 30px;
        top: 108px;
    }

    .fc_milestone_item {
        flex: 0 0 50%;
    }
}

/* ==========================================================================
   2.5. Statistics Counter Section for Mobile (<= 767px)
   ========================================================================== */
@media (max-width: 767px) {
    .fc_stats_container {
        display: flex;
        flex-direction: row;
        overflow: hidden;
        width: 100%;
        position: relative;
        gap: 60px;
        /* Space between the two tracks */
        padding: 15px 0;
        /* Premium horizontal fade mask */
        mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    }

    .fc_stats_section_half {
        display: none;
    }

    .fc_stats_track {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        gap: 20px;
        /* Space between items within each track */
        animation: statsScroll 25s linear infinite;
    }

    .fc_stats_section {

        padding: 20px 0;
    }

    .fc_stats_container:hover .fc_stats_track {
        animation-play-state: paused;
    }

    .fc_stats_col.fc_stat_item {
        flex: 0 0 200px;
        /* Precise item width */
        text-align: center;
        position: relative;
        margin: 0;
    }

    /* Hide dividers on mobile */
    .fc_stats_container::after,
    .fc_stats_section_left .fc_stat_item:nth-child(1)::after,
    .fc_stats_section_left .fc_stat_item:nth-child(3)::after {
        display: none;
    }

    /* Mobile Typography */
    .fc_stats_number {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fc_counter_plus {
        font-size: 24px;
    }

    .fc_stats_desc {
        font-size: 12px;
        line-height: 16px;
    }

    @keyframes statsScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-100% - 60px));
            /* Translate exactly one track width plus container gap */
        }
    }


    /* About Section for Mobile (<= 767px) */
    .fc_about_section {
        padding: 35px 0;
    }

    .fc_about_heading,
    .fc_gallery_page_heading {
        font-size: 24px;
    }

    .fc_about_text {
        font-size: 15px;
        line-height: 24px;
    }

    /* Milestones Section for Mobile (<= 767px) */
    .fc_milestone_heading {
        font-size: 24px;
        line-height: 34px;
    }

    .fc_milestone_desc {
        font-size: 15px;
    }

    .fc_milestone_card {
        padding: 30px 20px;
    }

    .fc_milestone_line {
        left: 20px;
        right: 20px;
        top: 98px;
    }

    .fc_milestone_item {
        flex: 0 0 100%;
    }

    .fc_footer_newsletter {

        align-items: start;
        text-align: left;

    }


}


/* ==========================================================================
   3. Sizing Adaptations for Mobile Devices (<= 575px)
   ========================================================================== */

@media (max-width: 575px) {
    .fc_hero_banner {
        background-image: url('../images/banner/banner-sm.webp');
        height: 700px;
        align-items: flex-end;
        padding-bottom: 50px;
        background-position: center;
    }

    .fc_hero_overlay {
        background: linear-gradient(0deg, rgb(0 0 0 / 80%) 0%, rgba(102, 102, 102, 0) 100%);
        top: 40%;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .fc_hero_content {
        padding-top: 0;
    }

    /* Hero Typography Sizing for Mobile (<= 575px) */
    .fc_hero_heading {
        font-size: 26px;
        line-height: 35px;
    }

    .fc_hero_desc {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .fc_btn_quote {
        width: 100%;
        justify-content: start;
        padding: 8px 8px 8px 0px;
        font-size: 16px;
    }
}

/* ==========================================================================
   4. Mission & Values Section Responsiveness
   ========================================================================== */
@media (max-width: 1440px) {
    /* Cards remain touching with gap: 0 */
}

@media (max-width: 1024px) {
    /* Cards remain touching with gap: 0 */
}

@media (max-width: 768px) {
    .fc_about_mission_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .fc_about_mission_card:nth-child(3) {
        grid-column: span 2;
    }

    .fc_about_mission_card {
        margin-left: 0;
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .fc_about_mission_section {
        padding: 40px 0;
    }

    .fc_about_mission_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fc_about_mission_card:nth-child(3) {
        grid-column: span 1;
    }

    .fc_about_mission_card {
        padding: 30px 20px;
        min-height: auto;
        margin-left: 0;
        margin-top: 0;
    }
}

/* ==========================================================================
   5. Product Range Section & Popup Responsiveness
   ========================================================================== */
@media (max-width: 991px) {
    .fc_product_heading {
        font-size: 26px;
        line-height: 36px;
    }

    .fc_product_grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .fc_product_modal {
        width: 92%;
    }

    .fc_product_modal_inner {
        padding-left: 30px;
        padding-right: 30px;
    }

    .fc_product_table_wrapper {
        overflow-x: visible;
    }

    .fc_product_table {
        min-width: 0;
        width: 100%;
        display: block;
        border-collapse: collapse;
    }

    .fc_product_table thead {
        display: none;
    }

    .fc_product_table tbody {
        display: block;
        width: 100%;
    }

    .fc_product_table tr {
        display: block;
        width: 100%;
        background-color: #F9F9F9;
        border: 1px solid #E5E5E5;
        border-radius: 12px;
        margin-bottom: 15px;
        padding: 0;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        box-sizing: border-box;
    }

    .fc_product_table tr:last-child {
        margin-bottom: 0;
    }

    .fc_product_table td {
        display: block;
        width: 100%;
        padding: 12px 24px;
        border-bottom: none;
        color: #141414;
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 22px;
        box-sizing: border-box;
        text-align: left;
        white-space: normal;
    }

    .fc_product_table td[data-label=""],
    .fc_product_table td[data-label="undefined"],
    .fc_product_table td:not([data-label]) {
        display: none !important;
    }



    .fc_product_table td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .fc_product_table tr:last-child td {
        /* border-bottom: 1px solid rgb(0 0 0 / 14%); */
    }

    .fc_product_table tr:last-child td:last-child {
        border-bottom: none;
    }

    .fc_product_table td:first-child {
        padding: 0;
    }

    .fc_product_table td:first-child,
    .fc_product_table td:nth-child(3),
    .fc_product_table td:nth-child(4) {
        white-space: normal;
    }

    .fc_product_table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: #000;
        font-size: 16px;
        text-transform: capitalize;
        letter-spacing: 0.8px;
        margin-bottom: 15px;
    }

    .fc_product_table td:first-child::before {
        display: none;
    }

    .fc_product_row_toggle {
        align-items: center;
        color: #000;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        gap: 16px;
        min-height: 68px;
        padding: 18px 20px;
        width: 100%;
    }

    .fc_product_row_toggle strong {
        font-size: 15px;
        line-height: 22px;
    }

    .fc_product_row_toggle_icon {
        align-items: center;
        border: 1px solid rgba(237, 28, 36, 0.35);
        border-radius: 50%;
        display: flex;
        flex: 0 0 30px;
        height: 30px;
        justify-content: center;
        position: relative;
        transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        width: 30px;
    }

    .fc_product_row_toggle_icon::before {
        border-bottom: 2px solid #ED1C24;
        border-right: 2px solid #ED1C24;
        content: '';
        height: 8px;
        position: absolute;
        transform: translateY(-2px) rotate(45deg);
        transition: transform 0.25s ease;
        width: 8px;
    }

    .fc_product_table td:not(:first-child) {
        border-bottom: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding-bottom: 0;
        padding-top: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
        visibility: hidden;
    }

    .fc_product_table tr.fc_product_row_open td:not(:first-child) {
        border-bottom: 1px solid rgb(0 0 0 / 14%);
        max-height: 720px;
        opacity: 1;
        padding-bottom: 12px;
        padding-top: 12px;
        visibility: visible;
    }

    .fc_product_table tr.fc_product_row_open td:last-child {
        border-bottom: 0;
        padding-bottom: 18px;
    }

    .fc_product_table tr.fc_product_row_open .fc_product_row_toggle {
        border-bottom: 1px solid rgb(0 0 0 / 14%);
    }

    .fc_product_table tr.fc_product_row_open .fc_product_row_toggle_icon {
        background-color: rgba(237, 28, 36, 0.08);
        border-color: rgba(237, 28, 36, 0.55);
    }

    .fc_product_table tr.fc_product_row_open .fc_product_row_toggle_icon::before {
        transform: translateY(2px) rotate(225deg);
    }

    .fc_product_modal_close {
        width: 50px;
        height: 50px;
    }

    .fc_milestone_desc {

        width: 90%;

    }

    .fc_milestone_section {

        padding: 55px 0;

    }

    .fc_milestone_card {

        margin-top: 20px;

    }

    .fc_gallery_section {

        padding: 50px 0;

    }

    .fc_gallery_section>.fc_gallery_wrapper {

        padding: 0 10px;

    }
}

@media (max-width: 767px) {
    .fc_product_section {
        padding: 40px 0;
    }

    .fc_product_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .fc_product_heading {
        font-size: 20px;
        line-height: 34px;
    }

    .fc_product_grid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 30px;
    }

    .fc_product_item {
        width: 100%;
    }

    .fc_product_modal {
        width: 95%;
    }

    .fc_product_modal_inner {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .fc_product_modal_title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .fc_product_modal_close {
        width: 60px;
        height: 60px;
    }

    .fc_product_table_wrapper {
        overflow-x: visible;
    }

    .fc_product_table {
        min-width: 0;
    }
}

/* ==========================================================================
   6. Gallery Showcase Slider Section Responsiveness
   ========================================================================== */
.fc_gallery_slider {
    --gallery-p: 80px;
    --slide-w: calc((100vw - 2 * var(--gallery-p)) / 3);
}

@media (min-width: 1921px) {
    .fc_gallery_slider {
        --gallery-p: calc((100vw - 1760px) / 2);
        --slide-w: 586.67px;
    }
}

@media (max-width: 991px) {
    .fc_gallery_slider {
        --gallery-p: 40px;
        --slide-w: calc((100vw - 2 * var(--gallery-p)) / 3);
        height: 380px;
    }

    .fc_gallery_heading {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .fc_gallery_slider {
        --gallery-p: 20px;
        --slide-w: calc(100vw - 2 * var(--gallery-p));
        height: 340px;
    }

    .fc_gallery_slider .fc_gallery_line_vertical:nth-child(2),
    .fc_gallery_slider .fc_gallery_line_vertical:nth-child(3) {
        display: none;
    }

    .fc_gallery_slide {
        padding: 16px 10px;
        border-right: none;
    }

    .fc_gallery_heading {
        font-size: 24px;
    }

    .fc_gallery_desc {
        font-size: 15px;
        line-height: 24px;
    }
}

/* ==========================================================================
   8. News Section Responsiveness
   ========================================================================== */
@media (max-width: 991px) {
    .fc_news_wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 50px;
    }

    .fc_news_left {
        width: 100%;
    }

    .fc_news_grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .fc_news_heading {
        font-size: 30px;
        line-height: 38px;
    }

    .fc_news_content {
        min-height: auto;
        padding: 60px 40px;
    }
}

@media (max-width: 767px) {
    .fc_news_section {
        padding: 80px 0;
    }

    .fc_news_wrapper {
        gap: 40px;
    }

    .fc_news_content {
        padding: 40px 20px;
    }

    .fc_news_heading {
        font-size: 26px;
        line-height: 36px;
    }

    .fc_news_desc {
        font-size: 15px;
        line-height: 24px;
    }

    .fc_news_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fc_news_image_wrap {
        height: 220px;
    }
}

/* ==========================================================================
   9. FAQ Section Responsiveness
   ========================================================================== */
@media (max-width: 991px) {
    .fc_faq_wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .fc_faq_left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .fc_faq_right {
        width: 100%;
    }

    .fc_faq_heading {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .fc_faq_globe_wrapper {
        display: none;
    }
}

@media (max-width: 767px) {
    .fc_faq_section {
        padding: 40px 0;
    }

    .fc_faq_left {
        align-items: start;
        text-align: left;
    }

    .fc_faq_heading {
        font-size: 30px;
        text-align: left;
    }

    .fc_faq_globe_wrapper {
        margin: unset;
    }

    .fc_faq_question_text {
        font-size: 16px;
        line-height: 24px;
    }

    .fc_faq_answer_content p {
        font-size: 14px;
        line-height: 24px;
    }

    .fc_faq_question_btn {
        padding: 20px 0;
    }

    .fc_faq_answer_content {
        padding-bottom: 20px;
    }

    .fc_news_heading {
        font-size: 24px;
        line-height: 36px;
    }

    .fc_news_title {

        font-size: 18px;

    }
}

/* ==========================================================================
   10. Call-To-Action Banner Section Responsiveness
   ========================================================================== */
@media (max-width: 1600px) {
    .fc_cta_container {
        padding: 0 150px;
    }
}

@media (max-width: 1366px) {
    .fc_cta_container {
        padding: 0 100px;
    }
}

@media (max-width: 1199px) {
    .fc_cta_container {
        padding: 0 60px;
    }
}

@media (max-width: 991px) {
    .fc_cta_section {
        padding: 60px 0;
    }

    .fc_cta_container {
        padding: 0 30px;
    }

    .fc_cta_banner {
        padding: 80px 30px;
        border-radius: 24px;
        min-height: auto;
    }

    .fc_cta_heading {
        font-size: 38px;
        line-height: 46px;
    }
}

@media (max-width: 767px) {
    .fc_cta_section {
        padding: 40px 0;
    }

    .fc_cta_banner {
        margin: 0 10px;
        padding: 60px 20px;
        border-radius: 20px;
    }

    .fc_cta_heading {

        font-size: 24px;
        line-height: 30px;

    }

    .fc_cta_desc {
        font-size: 15px;
        line-height: 24px;
        margin-top: 15px;
    }

    .fc_cta_btn {
        height: 48px;
        padding: 0 28px;
        margin-top: 25px;
    }
}

@media (max-width: 575px) {
    .fc_cta_container {
        padding: 0 10px;
    }
}

/* ==========================================================================
   11. Footer Section Responsiveness
   ========================================================================== */
@media (max-width: 991px) {
    .fc_footer_wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .fc_footer_newsletter h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .fc_footer_form {
        width: 100%;
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    .fc_footer_section {
        padding-top: 10px;
        padding-bottom: 0;
    }

    .fc_footer_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .fc_footer_address h3 {

        margin-bottom: 10px;
    }

    .fc_footer_address h3[style*="visibility: hidden"] {
        display: none;
    }


    .fc_footer_sitemap ul {
        display: flex;
        flex-wrap: wrap;
        gap: 25px 35px;
    }

    .fc_footer_social {
        justify-content: left;
        margin-top: 25px;
    }

    .fc_footer_newsletter {
        margin-top: 30px;
    }

    .fc_footer_newsletter h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .fc_footer_ceo {
        font-family: 'Inter', sans-serif;
        font-size: 16px;

    }

    .fc_footer_newsletter h2 {
        font-size: 19px;
        line-height: 32px;
        text-align: left;
    }

    .fc_footer_form {
        margin: unset;
    }

    .fc_footer_form {
        width: 100%;
    }

    /* Bottom Row alignment on mobile */
    .fc_footer_section .ftr-container>div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px;
        margin-top: 20px !important;
    }

    .fc_footer_copy {
        text-align: left;
    }

    .fc_footer_backtop {
        width: 100%;
        text-align: center;
    }

    .fc_footer_balls {
        position: relative;
        width: 100%;
        display: block;
        margin-top: 30px;
    }
}

/* ==========================================================================
   12. Dedicated Footer Container Responsiveness
   ========================================================================== */
@media (max-width: 1366px) {
    .ftr-container {
        padding: 0 50px;
    }
}

@media (max-width: 1199px) {
    .ftr-container {
        padding: 0 40px;
    }
}

@media (max-width: 991px) {
    .ftr-container {
        padding: 0 30px;
    }
}

@media (max-width: 575px) {
    .ftr-container {
        padding: 0 20px;
    }
}

/* Floating Back To Top Button Responsive overrides */
@media (max-width: 991px) {
    .fc_back_to_top {
        right: 20px;
        bottom: 20px;
    }

    .fc_whatsapp_btn {
        right: 20px;
        bottom: 87px;
    }
    .fc_company_about{ padding: 70px 0;}
    .fc_about_header_center{align-items: start;}
    .fc_company_about_text{text-align: left;}

}

@media (max-width: 575px) {
    .fc_back_to_top {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }

    .fc_whatsapp_btn {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 75px;
    }

    .fc_whatsapp_btn svg {
        width: 26px;
        height: 26px;
    }

    .fc_product_modal_close {
        width: 40px;
        height: 40px;
    }

    .fc_company_about{
        padding: 50px 0;
    }
    .fc_company_profile_container{    gap: 20px;}
    .fc_company_globe_vid{    max-width: 300px;}
}