@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* 
 * Future Coat - Core Stylesheet
 * Prefix: fc_
 * Font Family: 'Inter', sans-serif
 */

/* ==========================================================================
   1. Reset & Global Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.fc_body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #fff;
    line-height: 1.5;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   2. Header & Navigation (Desktop)
   ========================================================================== */
.fc_header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.4s ease, height 0.4s ease, border-color 0.4s ease;
}

/* Scroll Active Header State */
.fc_header.fc_scrolled {
    position: fixed;
    height: 75px;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.05);
}

.inner-page .fc_header {
    background: rgb(0 0 0 / 70%);
}

.common-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 230px;
}

.fc_header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo (Left) */
.fc_logo_link {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.fc_logo_img {
    height: 50px;
    width: auto;
    transition: height 0.4s ease;
}

.fc_header.fc_scrolled .fc_logo_img {
    height: 35px;
}

/* Menu (Center) */
.fc_nav_wrapper {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.fc_nav_list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.fc_nav_item {
    position: relative;
}

.fc_nav_link {
    display: inline-flex;
    align-items: center;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 7px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.fc_nav_link:hover {
    opacity: 0.7;
}

.fc_nav_link.fc_active {
    color: #FFF;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.38);
    background-color: rgba(255, 255, 255, 0.06);
}

/* Products Dropdown (Desktop Hover) */
.fc_dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 240px;
    padding: 12px 0;
    border-radius: 4px;
    z-index: 1002;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 10px;

    /* Animation Fix */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* Invisible Hover Bridge to prevent hover loss in the gap */
.fc_dropdown_menu::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

/* Dropdown Arrow/Indicator link spacing */
.fc_dropdown_menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 24px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent rgba(255, 255, 255, 0.1) transparent;
}

.fc_dropdown:hover .fc_dropdown_menu,
.fc_nav_item:hover .fc_dropdown_menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.fc_dropdown_link {
    display: block;
    padding: 10px 24px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.fc_dropdown_link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding-left: 28px;
}

/* Dropdown Down Arrow indicator on Toggle link */
.fc_dropdown_toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fc_dropdown_toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.3s ease;
}

.fc_dropdown:hover .fc_dropdown_toggle::after {
    transform: rotate(-135deg);
    margin-top: 2px;
}

/* Header Action & Partner Logo (Right) */
.fc_header_action {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.fc_partner_logo_link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fc_partner_logo_link:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.fc_partner_logo_img {
    height: 62px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s ease;
}


.fc_contact_btn {
    display: inline-block;
    padding: 11px 26px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
}

.fc_contact_btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.fc_contact_btn.fc_active {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
}

/* Mobile Navigation Drawer (Hidden on Desktop) */
.fc_mobile_nav_drawer,
.fc_mobile_nav_backdrop,
.fc_drawer_close_btn {
    display: none;
}

/* Hamburger Icon (Mobile) */
.fc_hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    z-index: 1100;
}

.fc_hamburger_bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Hamburger active transformation */
.fc_hamburger.fc_active .fc_hamburger_bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

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

/* ==========================================================================
   3. Hero Banner Section
   ========================================================================== */
.fc_main_content {
    width: 100%;
}

.fc_hero_banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/banner/banner.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Overlay layer */
.fc_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    background: #000000;
    background: linear-gradient(90deg, rgb(0 0 0 / 60%) 0%, rgba(102, 102, 102, 0) 100%);
    z-index: 1;
}

.fc_hero_container {
    position: relative;
    z-index: 2;
}

.fc_hero_content {

    text-align: left;
    padding-top: 120px;
}

/* Small top text */
.fc_hero_since {
    display: block;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Main Heading */
.fc_hero_heading {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 65px;
    margin-bottom: 20px;
}

/* Description text */
.fc_hero_desc {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    max-width: 665px;
    margin-bottom: 35px;
}

/* Get A Quote CTA Button */
.fc_btn_quote {
    display: inline-flex;
    align-items: center;
    gap: 24px;

    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: 100px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.fc_arrow_circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1.5px solid #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.fc_arrow_svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    transition: stroke 0.3s ease;
}


/* ==========================================================================
   4. Statistics Counter Section
   ========================================================================== */
.fc_stats_section {
    width: 100%;
    background-color: #FFFFFF;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 80px 0;
}

.fc_stats_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Center Divider */
.fc_stats_container::after {
    position: absolute;
    top: -80px;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: #e6e6e6;
    content: "";
}

.fc_stats_section_half {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fc_stats_section_left {
    padding-right: 60px;
}

.fc_stats_section_right {
    padding-left: 60px;
}

.fc_stats_section_half .fc_stats_col {
    flex: 1;
}

.fc_stats_col {
    text-align: center;
    position: relative;
}

/* Counter number style */
.fc_stats_number {
    color: #000;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}

/* Plus Symbol Style */
.fc_counter_plus {
    color: rgba(237, 28, 36, 0.70);
    text-align: center;
    font-family: Urbanist, sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    display: inline-block;
    vertical-align: top;
}

/* Bottom text style */
.fc_stats_desc {
    color: #141414;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
}

/* Partnership Column Wrapper */
.fc_stats_logo_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 10px;
}

.fc_stats_logo {
    width: 235px;
    height: auto;
    display: block;
    object-fit: contain;
}

.fc_stats_partner_col {
    transition: all 0.3s ease;
}

.fc_stats_partner_col:hover {
    transform: translateY(-5px);
}

/* ==========================================================================
   5. About Section
   ========================================================================== */
.fc_about_section {
    background-color: #FFFFFF;
    padding: 120px 0;
    width: 100%;
}

.fc_about_wrapper {
    display: flex;
    justify-content: space-between;

}

.fc_about_left {
    width: 45%;
}



/* About Label */
.fc_about_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fc_about_icon {

    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.fc_about_label span {
    color: #ED1C24;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.84px;
    text-transform: uppercase;
}

/* Main Heading */
.fc_about_heading,
.fc_gallery_page_heading {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 8px;
    margin-bottom: 28px;
}

/* Content Text */
.fc_about_text_wrapper {}

.fc_about_text {
    color: #141414;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.fc_about_text:not(:last-child) {
    margin-bottom: 28px;
}

/* Right Side Image & Wrapper */
.fc_about_image_wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.fc_about_image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Decorative Corner Plus Markers */
.fc_about_corner_plus {
    color: #BFBFBF;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    z-index: 10;
}

.fc_about_plus_tl {
    position: absolute;
    top: -12px;
    left: -12px;
}

.fc_about_plus_tr {
    position: absolute;
    top: -12px;
    right: -12px;
}

.fc_about_plus_bl {
    position: absolute;
    bottom: -12px;
    left: -12px;
}

.fc_about_plus_br {
    position: absolute;
    bottom: -12px;
    right: -12px;
}

/* Know More Button styling matching hero banner button structure but dark */
.fc_about_btn {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #141414;
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: 100px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    margin-top: 35px;
}

.fc_about_arrow_circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1.5px solid #141414;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.fc_about_arrow_svg {
    width: 16px;
    height: 16px;
    stroke: #141414;
    transition: transform 0.4s ease, stroke 0.4s ease;
}

/* CTA Hover Interactivity */
.fc_about_btn:hover .fc_about_arrow_circle {
    transform: scale(1.08);
}

.fc_about_btn:hover .fc_about_arrow_svg {
    transform: translate(4px, -4px);
}

/* ==========================================================================
   6. Milestones Timeline Slider Section
   ========================================================================== */
.fc_milestone_section {
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(to bottom, #004381 0%, #76B9F6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fc_milestone_heading {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.fc_milestone_desc {
    color: #FFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    width: 50%;
    margin-top: 15px;
    display: flex;
    margin: auto;
}

/* Timeline Card */
.fc_milestone_card {
    background: #FFFFFF;
    border-radius: 10px;
    width: 100%;
    margin-top: 60px;
    padding: 60px 60px 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Red Dashed Line */
.fc_milestone_line {
    position: absolute;
    left: 60px;
    right: 60px;
    top: 128px;
    border-top: 2px dashed #ED1C24;
    z-index: 1;
}

/* Slider Viewport */
.fc_milestone_slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Slider Track */
.fc_milestone_track {
    display: flex;
    width: 100%;
}

/* Slide Item */
.fc_milestone_item {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Logo */
.fc_milestone_logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

/* Timeline Dot */
.fc_milestone_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ED1C24;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    border: 3px solid #FFFFFF;
    box-sizing: content-box;
}

/* Year */
.fc_milestone_year {
    color: #004381;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 43px;
    text-align: center;
}

/* Description Text */
.fc_milestone_text {
    color: #004381;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    max-width: 280px;
    margin: 0 auto;
}

/* Navigation & Progress Area */
.fc_milestone_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.fc_milestone_prev,
.fc_milestone_next {
    background: transparent;
    border: none;
    color: #6B6B6B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.fc_milestone_prev:hover,
.fc_milestone_next:hover {
    color: #ED1C24;
}

.fc_milestone_prev:active,
.fc_milestone_next:active {
    transform: scale(0.9);
}

.fc_milestone_progress {
    width: 150px;
    height: 3px;
    background: #D9D9D9;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.fc_milestone_progress_bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #ED1C24;
    border-radius: 2px;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   7. Mission & Values Section
   ========================================================================== */
.fc_about_mission_section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    overflow: hidden;
}

/* Video Background */
.fc_about_mission_video_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fc_about_mission_video_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc_about_mission_video_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.78);
    z-index: 2;
}

.fc_about_mission_container {
    position: relative;
    z-index: 3;
}

/* Description Text Style */
.fc_about_mission_desc {
    color: #141414;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    max-width: 700px;
    margin-top: 15px;
}

/* Feature Grid */
.fc_about_mission_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
    padding-left: 1px;
    padding-top: 1px;
}

/* Card Design */
.fc_about_mission_card {
    background: rgb(255, 255, 255);
    border: 1px solid #e6e6e6;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    margin-left: -1px;
    margin-top: -1px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-color 0.4s,
        border-color 0.4s;
}

/* Card Hover Animation */
.fc_about_mission_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: rgb(255, 255, 255);
    border-color: #e6e6e6;
    z-index: 5;
}

/* Card Top Wrapper */
.fc_about_mission_card_top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Icon Wrapper */
.fc_about_mission_card_icon_wrapper {

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.fc_about_mission_card_icon {

    object-fit: contain;
}

/* Feature Title Style */
.fc_about_mission_card_title {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 15px;
}

/* Feature Description Style */
.fc_about_mission_card_desc {
    color: #141414;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 25px;
}

/* Card Number Indicator Style */
.fc_about_mission_card_num {
    color: #6B6B6B;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    align-self: flex-start;
}

/* ==========================================================================
   8. Product Range Section & Details Popup Modal
   ========================================================================== */
.fc_product_section {
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(to bottom, #004381 0%, #76B9F6 100%);
    position: relative;
    overflow: hidden;
}

.fc_product_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.fc_product_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.fc_product_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.84px;
    text-transform: uppercase;
}

.fc_product_icon {
    width: 14px;
    height: auto;
    display: inline-block;
}

.fc_product_heading {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    max-width: 650px;
    margin-top: 12px;
}

.fc_product_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.fc_product_btn:hover {
    background-color: #fff;
    color: #004381;
    border-color: #fff;
    transform: translateY(-2px);
}

.fc_product_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.fc_product_item {
    background: #D9D9D9;
    height: 80px;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;

}

.fc_product_item:hover {
    transform: translateY(-3px);
    background: #E5E5E5;
}

.fc_product_title {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-right: 10px;
}

.fc_product_plus {
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.fc_product_plus img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    display: block;
}

.fc_product_item:hover .fc_product_plus {
    transform: scale(1.15);
}

/* Modal Backdrop Overlay Styling */
.fc_product_modal_backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.fc_product_modal_backdrop.fc_open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Modal Styling */
.fc_product_modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    max-width: 1700px;
    height: 95%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.fc_product_modal.fc_open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fc_product_modal_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: #ED1C24;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10000;
    padding: 0;
}

.fc_product_modal_close:hover {
    opacity: 0.9;
}

.fc_product_modal_close svg {
    transition: transform 0.3s ease;
}

.fc_product_modal_close:hover svg {
    transform: rotate(90deg);
}

.fc_product_modal_inner {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 50px;
    padding-right: 50px;
    transform: translateY(20px);
    transition: transform 0.35s ease;
}

.fc_product_modal.fc_open .fc_product_modal_inner {
    transform: translateY(0);
}

.fc_product_modal_title {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.fc_product_table_wrapper {
    width: 100%;
    margin-top: 20px;
}

.fc_product_table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.fc_product_table th {
    color: #0B2026;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 20px 16px 0;
    border-bottom: 1px solid #ABABAB;
    white-space: nowrap;
}

.fc_product_table td {
    color: #141414;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    padding: 24px 20px 24px 0;
    vertical-align: top;
    border-bottom: 1px solid #ABABAB;
}

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

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

.fc_product_table ul,
.fc_details_table ul {
    list-style-type: disc !important;
    padding-left: 20px !important;
    margin: 0 !important;
}

.fc_product_table li,
.fc_details_table li {
    list-style-type: disc !important;
    display: list-item !important;
    margin-bottom: 6px !important;
    line-height: 1.6 !important;
}



.fc_product_table td strong {
    font-weight: 500;
}

.fc_product_row_toggle {
    appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: default;
    display: inline;
    font: inherit;
    padding: 0;
    text-align: left;
}

.fc_product_row_toggle_icon {
    display: none;
}

/* ==========================================================================
   9. Gallery Showcase Slider Section
   ========================================================================== */
.fc_gallery_section {
    background-color: #FFFFFF;
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #c0c0c0;
}

/* Header wrapper (replaces common-container bounds) */
.fc_gallery_section>.fc_gallery_wrapper {
    width: 100%;
    margin: 0 auto 60px auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fc_gallery_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fc_gallery_icon {
    width: 14px;
    height: auto;
    display: inline-block;
}

.fc_gallery_label span {
    color: #ED1C24;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.84px;
    text-transform: uppercase;
}

.fc_gallery_heading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: #000000;
    line-height: normal;
    margin-top: 14px;
    text-align: center;
}

.fc_gallery_desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #141414;
    max-width: 650px;
    margin-top: 14px;
    text-align: center;
}

/* Slider viewport setup */
.fc_gallery_slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: visible;
    z-index: 10;
    border-top: 1px solid #BFBFBF;
}

.fc_gallery_track {
    display: flex;
    width: max-content;
    height: calc(100% - 40px);
    transform: translateX(calc(var(--gallery-p, 230px) - var(--slide-w, 486.67px) * var(--active-index, 5)));
    transition: transform 0.8s ease;
    will-change: transform;
    position: relative;
    z-index: 8;
}

/* Slide item */
.fc_gallery_slide {
    width: var(--slide-w, 486.67px);
    height: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 24px 20px;

    display: flex;
    flex-direction: column;
}

/* Card inner structure */
.fc_gallery_slide>div {
    background-color: #FFFFFF;

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;

}

.fc_gallery_image {
    width: 100%;
    height: 0;
    flex-grow: 1;
    object-fit: cover;
    display: block;
}

.fc_gallery_slide p {

    color: #141414;
    margin: 0;
    padding: 14px 20px 0px 0px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Decorative Line Styling */
.fc_gallery_line {
    pointer-events: none;
}

.fc_gallery_line_horizontal {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #BFBFBF;
    z-index: 4;
}

.fc_gallery_slider>.fc_gallery_line_horizontal:nth-of-type(1) {
    display: none;
}

.fc_gallery_slider>.fc_gallery_line_horizontal:nth-of-type(2) {
    bottom: 40px;
}

.fc_gallery_slider>.fc_gallery_line_horizontal:nth-of-type(3) {
    bottom: 0;
}

/* Align lines alignment overlay - using fc_gallery_wrapper directly */
.fc_gallery_slider>.fc_gallery_wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 6;
    margin: 0;
    padding: 0;
}

.fc_gallery_line_vertical {
    position: absolute;
    top: -40px;
    bottom: -60px;
    width: 1px;
    background-color: #BFBFBF;
    z-index: 7;
}

/* Outer Left line */
.fc_gallery_slider .fc_gallery_line_vertical:nth-child(1) {
    left: var(--gallery-p);
}

/* Inner Left line (center slide left bound) */
.fc_gallery_slider .fc_gallery_line_vertical:nth-child(2) {
    left: calc(50% - var(--slide-w) / 2 - -8px);
}

/* Inner Right line (center slide right bound) */
.fc_gallery_slider .fc_gallery_line_vertical:nth-child(3) {
    right: calc(50% - var(--slide-w) / 2 - 10px);
}

/* Outer Right line */
.fc_gallery_slider .fc_gallery_line_vertical:nth-child(4) {
    right: calc(var(--gallery-p) - 15px);
}

/* Intersections Red Squares (Top & Bottom) */
.fc_gallery_line_vertical::before,
.fc_gallery_line_vertical::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ED1C24;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
}

.fc_gallery_line_vertical::before {
    top: 40px;
    /* aligns with top line */
}

.fc_gallery_line_vertical::after {
    bottom: 50px;
    /* aligns with bottom line */
}

/* Middle Red Square intersection (sitting on the horizontal line at H - 40px) */
.fc_gallery_line_vertical>.fc_gallery_line {
    position: absolute;
    bottom: 90px;
    /* corresponds to bottom: 40px of slider container */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #ED1C24;
    z-index: 8;
    display: block;
}

/* Navigation buttons styling centered between middle and bottom lines */
.fc_gallery_prev,
.fc_gallery_next {
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    border: 1px solid #BFBFBF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.fc_gallery_prev {
    left: calc(50% - 40px);
    border-right: none;
}

.fc_gallery_next {
    left: 50%;
}

.fc_gallery_prev img,
.fc_gallery_next img {
    width: 16px;
    height: auto;
    transition: transform 0.3s ease;
}

.fc_gallery_prev:hover img {
    transform: translateX(-4px);
}

.fc_gallery_next:hover img {
    transform: translateX(4px);
}

.fc_gallery_prev:hover,
.fc_gallery_next:hover {
    background-color: #F9F9F9;
}

/* ==========================================================================
   10. News Section
   ========================================================================== */
.fc_news_section {
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(to bottom,
            #004381 0%,
            #76B9F6 100%);
}

.fc_news_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 50px;
}

.fc_news_left {
    width: 50%;
}

.fc_news_content {
    border: 2px dashed rgba(255, 255, 255, 0.4);
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    box-sizing: border-box;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fc_news_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fc_news_icon {
    width: 14px;
    height: auto;
    display: block;
}

.fc_news_label span {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.84px;
    text-transform: uppercase;
}

.fc_news_heading {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
}

.fc_news_desc {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

.fc_news_btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 8px 8px 8px 24px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
    background: transparent;
    border: 1.5px solid #FFF;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 35px;
    transition: all 0.4s ease;
    box-sizing: border-box;
}

.fc_news_btn:hover {
    background-color: #FFF;
    color: #004381;
}

.fc_news_arrow_circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1.5px solid #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
    box-sizing: border-box;
}

.fc_news_btn:hover .fc_news_arrow_circle {
    background-color: #004381;
    border-color: #004381;
    color: #FFF;
}

.fc_news_arrow_svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.4s ease;
}

.fc_news_btn:hover .fc_news_arrow_svg {
    transform: translateX(4px);
}

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

.fc_news_card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.fc_news_image_wrap {
    position: relative;
    width: 100%;

    overflow: hidden;
    border-radius: 8px;
}

.fc_news_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.fc_news_card:hover .fc_news_image {
    transform: scale(1.03);
}

.fc_news_badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FFFFFF;
    padding: 8px 12px;
    border-radius: 3px;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.fc_news_date {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 12px;
}

.fc_news_title {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-top: 10px;
    transition: opacity 0.4s ease;
}

.fc_news_card:hover .fc_news_title {
    opacity: 0.9;
}

/* ==========================================================================
   11. FAQ Section
   ========================================================================== */
.fc_faq_section {
    width: 100%;
    padding: 120px 0;
    background-color: #F3F3F3;
}

.fc_faq_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.fc_faq_left {
    width: 35%;
}

.fc_faq_right {
    width: 65%;
}

.fc_faq_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fc_faq_icon {
    width: 14px;
    height: auto;
    display: block;
}

.fc_faq_label span {
    color: #ED1C24;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.84px;
    text-transform: uppercase;
}

.fc_faq_heading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 1.15;
    color: #000000;
    margin-top: 15px;
    margin-bottom: 40px;
}

.fc_faq_globe_wrapper {
    max-width: 280px;
    width: 100%;
}

.fc_faq_globe_image {
    width: 100%;
    height: auto;
    display: block;
}

.fc_faq_accordion {
    width: 100%;
}

.fc_faq_item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    width: 100%;
    overflow: hidden;
}

.fc_faq_question_btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 28px 0;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    box-sizing: border-box;
}

.fc_faq_question_btn:focus-visible {
    outline: 2px solid #ED1C24;
    outline-offset: 4px;
}

.fc_faq_question_text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.fc_faq_question_btn:hover .fc_faq_question_text {
    color: #ED1C24;
}

.fc_faq_toggle_icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.fc_faq_item.fc_active .fc_faq_toggle_icon {
    transform: rotate(45deg);
}

.fc_faq_answer_wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.fc_faq_answer_content {
    padding-bottom: 28px;
}

.fc_faq_answer_content p {
    color: #141414;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

/* ==========================================================================
   12. Call-To-Action Banner Section
   ========================================================================== */
.fc_cta_section {
    width: 100%;
    padding: 80px 0;
    background-color: #F3F3F3;
}

.fc_cta_container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0px;
}

.fc_cta_banner {
    margin: 0 20px;
    background: linear-gradient(90deg,
            #0E518F 0%,
            #70B0EC 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    padding: 100px 20px;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.fc_cta_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.fc_cta_heading {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 43px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fc_cta_desc {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    max-width: 560px;
    margin: 20px auto 0;
    opacity: 0.95;
}

.fc_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    padding: 0 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.35s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.fc_cta_btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.fc_cta_arrow_svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.35s ease;
}

.fc_cta_btn:hover .fc_cta_arrow_svg {
    transform: translateX(4px);
}

/* ==========================================================================
   11. Footer Section Styling
   ========================================================================== */
.fc_footer_section {
    background: linear-gradient(to bottom,
            #FDFDFD 0%,
            #174CA0 100%);
    position: relative;
    overflow: hidden;
    padding-top: 65px;
    padding-bottom: 0;
    width: 100%;
}

.ftr-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 65px;
}

.fc_footer_wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.fc_footer_logo {
    display: inline-block;
}

.fc_footer_logo img {

    height: auto;
    display: block;
}

.fc_footer_about {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #141414;
    max-width: 280px;
    margin-top: 20px;
}

.fc_footer_social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
}

.fc_footer_social a {
    color: #FFFFFF;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.fc_footer_social a:hover {
    opacity: 0.8;
}

.fc_footer_social img {

    width: auto;
    display: block;
}

.fc_footer_sitemap h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #6c6c6c;
    margin-bottom: 12px;
}

.fc_footer_sitemap ul {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    gap: 12px 0px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.fc_footer_sitemap a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #252525;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.fc_footer_sitemap a:hover {
    color: #174CA0;
}

.fc_footer_address {
    font-family: 'Inter', sans-serif;
}

.fc_footer_address h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #6c6c6c;
    margin-bottom: 12px;
}

.fc_footer_address h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #252525;
    margin-bottom: 12px;
}

.fc_footer_address p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #252525;
    margin-bottom: 16px;
}

.fc_footer_address a {
    color: #252525;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fc_footer_address a:hover {
    color: #174CA0;
}

.fc_footer_ceo {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    border-top: 1px dotted rgba(255, 255, 255, 0.4);
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
    padding: 16px 0;
    margin-top: 30px;
}

.fc_footer_ceo div:first-child {
    margin-bottom: 6px;
}

.fc_footer_ceo a {
    color: #FFFFFF;
    text-decoration: none;
}

.fc_footer_ceo a:hover {
    text-decoration: underline;
}

.fc_footer_newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.fc_footer_newsletter>div {
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fc_footer_newsletter h2 {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    text-align: center;
    margin-bottom: 30px;
}

.fc_footer_newsletter p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.80);
    margin-top: 15px;
}

.fc_footer_form {
    position: relative;
    width: 520px;
    margin: 0 auto;
}

.fc_hp_field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.fc_footer_input {
    width: 100%;
    height: 56px;
    border-radius: 30px;
    border: none;
    background: #FFFFFF;
    padding: 0 70px 0 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #141414;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fc_footer_input_footer {
    width: 100%;
    height: 45px;
    border-radius: 30px;
    border: none;
    background: #FFFFFF;
    padding: 0 70px 0 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #141414;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fc_footer_input::placeholder {
    color: #929292;
}

.fc_footer_submit {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #174CA0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.fc_footer_submit:hover {
    transform: translateY(-50%) scale(1.08);
}

.fc_footer_submit:disabled {
    cursor: not-allowed;
    opacity: 0.82;
}

.fc_footer_submit.is-loading img {
    opacity: 0;
}

.fc_footer_submit.is-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: fcSpin 0.7s linear infinite;
}

.fc_footer_submit img {
    width: 16px;
    height: 16px;
    display: block;
}

.fc_footer_form_message {
    display: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
}

.fc_footer_form_message.is-error,
.fc_footer_form_message.is-success {
    display: block;
    min-height: 18px;
    margin-top: 10px;
}

.fc_footer_form_message.is-error {
    color: #FFD3D3;
}

.fc_footer_form_message.is-success {
    color: #D7FFE2;
}

@keyframes fcSpin {
    to {
        transform: rotate(360deg);
    }
}

.fc_footer_copy {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    color: #FFFFFF;
    opacity: 0.9;
}

.fc_footer_copy_link {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease, text-decoration 0.3s ease;
}

.fc_footer_copy_link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.fc_back_to_top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #174CA0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    will-change: transform;
    padding: 0;
}

.fc_back_to_top:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.20);
}

.fc_whatsapp_btn {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    will-change: transform;
    padding: 0;
}

.fc_whatsapp_btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.20);
    background-color: #20ba56;
}

.fc_whatsapp_btn svg {
    width: 30px;
    height: 30px;
    fill: #FFFFFF;
}


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


/* Hardware Acceleration */
.fc_hero_banner,
.fc_company_about,
.fc_company_profile,
.fc_about_section,
.fc_stats_section,
.fc_milestone_section,
.fc_about_mission_section,
.fc_product_section,
.fc_gallery_section,
.fc_news_section,
.fc_faq_section,
.fc_cta_section,
.fc_footer_section,
.fc_about_label,
.fc_product_label,
.fc_gallery_label,
.fc_news_label,
.fc_faq_label,
.fc_footer_newsletter>div,
.fc_hero_heading,
.fc_about_heading,
.fc_milestone_heading,
.fc_product_heading,
.fc_gallery_heading,
.fc_news_heading,
.fc_faq_heading,
.fc_cta_heading,
.fc_hero_desc,
.fc_about_text,
.fc_milestone_desc,
.fc_news_desc,
.fc_cta_desc,
.fc_footer_about,
.fc_btn_quote,
.fc_about_btn,
.fc_product_btn,
.fc_news_btn,
.fc_cta_btn,
.fc_about_image,
.fc_gallery_image,
.fc_news_image,
.fc_product_image,
.fc_stats_logo,
.fc_about_mission_card_icon,
.fc_product_item,
.fc_news_card,
.fc_gallery_slider,
.fc_stat_item,
.fc_milestone_line,
.fc_milestone_item {
    will-change: transform, opacity;
}

/* Lenis smooth scrolling overrides to prevent layout shifts and engine deadlocks */
html.lenis {
    scroll-behavior: auto !important;
}

html.lenis body.fc_body {
    height: auto !important;
}

/* ==========================================================================
   Company Page Specific Styles
   ========================================================================== */
.fc_inner_hero {
    width: 100%;
}

.fc_inner_hero_img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.fc_company_about {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f1f5fa 100%);
    overflow: hidden;
}

.fc_company_strip_left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    max-height: 500px;
    width: auto;
    z-index: 1;
}

.fc_company_strip_right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    max-height: 500px;
    width: auto;
    z-index: 1;
}

.fc_company_about_container {
    position: relative;
    z-index: 2;
}

.fc_about_header_center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.fc_company_about_text {
    text-align: center;
    color: #141414;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    max-width: 1000px;
    margin: 0 auto;
}

.fc_company_stats_wrapper {
    background: #F4F4F4;
    border-radius: 0;
    padding: 60px 120px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    box-shadow: 0 10px 40px rgb(0 0 0 / 10%);
    max-width: 1200px;
    margin: 0 auto;
}

.fc_company_stat_card {
    background: #fff;
    border-radius: 0;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fc_company_stat_card:hover {
    transform: translateY(-5px);
}

.fc_company_stat_title {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.fc_company_stat_desc {
    color: #141414;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.fc_company_stat_logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.fc_company_stat_partner {
    grid-column: span 2;
}

/* Card Radial Gradients matching the design */
/* Card 1: Top Left */
.fc_company_stat_card:nth-child(1) {
    background: #fff radial-gradient(circle at 0% 0%, rgba(118, 185, 246, 0.30) 0%, transparent 60%) no-repeat;
}

/* Card 2: Top Right */
.fc_company_stat_card:nth-child(2) {
    background: #fff radial-gradient(circle at 100% 0%, rgba(118, 185, 246, 0.30) 0%, transparent 60%) no-repeat;
}

/* Card 3: Bottom Right */
.fc_company_stat_card:nth-child(3) {
    background: #fff radial-gradient(circle at 100% 100%, rgba(118, 185, 246, 0.30) 0%, transparent 60%) no-repeat;
}

/* Card 4 (Partner): Bottom Left AND Top Right */
.fc_company_stat_card:nth-child(4) {
    background:
        radial-gradient(circle at 0% 100%, rgba(118, 185, 246, 0.30) 0%, transparent 50%) no-repeat,
        radial-gradient(circle at 100% 0%, rgba(118, 185, 246, 0.30) 0%, transparent 50%) no-repeat;
    background-color: #fff;
}

/* Card 5: Bottom Left */
.fc_company_stat_card:nth-child(5) {
    background: #fff radial-gradient(circle at 0% 100%, rgba(118, 185, 246, 0.30) 0%, transparent 60%) no-repeat;
}

@media (max-width: 1600px) {

    .fc_company_strip_left {
        max-height: 350px;
    }

    .fc_company_strip_right {
        max-height: 350px;
    }

}

@media (max-width: 1024px) {

    .fc_company_strip_left,
    .fc_company_strip_right {
        display: none;
    }

    .fc_company_stats_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc_company_stat_partner {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .fc_company_stats_wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .fc_inner_hero_img {
        min-height: 500px;
    }
}

/* ==========================================================================
   Company Profile Section
   ========================================================================== */
.fc_company_profile {
    padding: 100px 0;
    background-color: #ffffff;
    width: 100%;
}

.fc_company_profile_container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 60px;
}

.fc_company_profile_left {
    /* Grid child */
}

.fc_company_profile_right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fc_company_globe_vid {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Optional: helps hide any white background in the video if it has one */
}

@media (max-width: 991px) {
    .fc_company_profile_container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .fc_company_profile_left {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    /* .fc_about_text {
        text-align: center;
    } */

    .fc_company_profile_right {
        margin-top: 40px;
    }
}

/* ==========================================================================
   Gallery Page Styles
   ========================================================================== */
.fc_gallery_page {
    padding: 110px 0;
    background-color: #ffffff;
}

.fc_gallery_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.fc_gallery_header_left {
    flex: 1;
    max-width: 50%;
}

.fc_gallery_header_right {
    flex: 1;
    max-width: 45%;
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.fc_gallery_page_desc {
    color: #141414;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 400px;
    margin-left: auto;
}

.fc_gallery_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.fc_gallery_item {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 6px;
    will-change: transform;
    transition: transform 0.3s ease;
}

.fc_gallery_item:hover {
    transform: translateY(-5px);
}

.fc_gallery_img_wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
}

.fc_gallery_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fc_gallery_item:hover .fc_gallery_img_wrapper img {
    transform: scale(1.05);
}

.fc_gallery_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(15, 61, 129, 0.9) 0%, rgba(15, 61, 129, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    color: #ffffff;
}

.fc_gallery_overlay span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.fc_gallery_load_more_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.fc_gallery_load_more {
    background-color: transparent;
    color: #0F3D81;
    border: 1.5px solid #0F3D81;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fc_gallery_load_more:hover {
    background-color: #0F3D81;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .fc_gallery_header {
        flex-direction: column;
    }

    .fc_gallery_header_left,
    .fc_gallery_header_right {
        max-width: 100%;
    }

    .fc_gallery_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc_gallery_page_desc {
        max-width: 100%;
    }

    .fc_gallery_page_heading {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .fc_gallery_grid {
        grid-template-columns: 1fr;
    }

    .fc_gallery_page {
        padding: 60px 0;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.fc_contact_top_section {
    padding: 80px 0 40px;
}

.fc_contact_cards_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.fc_contact_card {
    border: 1.5px solid #EAEAEA;
    border-radius: 8px;
    padding: 30px;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.fc_contact_card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fc_contact_card_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.fc_contact_card_header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #212121;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.fc_contact_card_body p {
    font-size: 15px;
    line-height: 1.6;
    color: #252525;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.fc_contact_card_body p:last-child {
    margin-bottom: 0;
}

.fc_contact_card_body a {
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fc_contact_card_body a:hover {
    color: #0F3D81;
}

.fc_contact_card_split {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.fc_contact_person {
    padding: 25px 30px;
    flex: 1;
}

.fc_contact_divider {
    height: 1.5px;
    background: #EAEAEA;
    width: 100%;
}

.fc_contact_person_name {
    font-weight: 500;
    color: #141414 !important;
    margin-bottom: 10px !important;
}

.fc_contact_whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #141414;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.fc_contact_whatsapp:hover {
    text-decoration: none !important;
    color: #0F3D81;
}

.fc_contact_whatsapp img {
    transition: transform 0.3s ease;
}

.fc_contact_whatsapp:hover img {
    transform: scale(1.15);
}

/* Map Section */
.fc_contact_map_section {
    padding: 0 0 60px;
}

.fc_map_wrapper {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* Form Section */
.fc_contact_form_section {
    background-color: #F4F4F4;
    padding: 80px 0;
}

.fc_contact_form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.fc_contact_form_left {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.fc_contact_form_left::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px dashed #fff;
    border-radius: 8px;
    pointer-events: none;
    z-index: 2;
}

.fc_contact_enquiry_box {
    color: #000;
}

.fc_contact_enquiry_box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}

.fc_contact_enquiry_box p {
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    margin-bottom: 35px;
}

.fc_contact_form_img_wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fc_contact_form_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc_contact_form_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fc_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.fc_form_group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fc_form_group label {
    font-size: 12px;
    color: #141414;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.fc_form_group input,
.fc_form_group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #DEDEDE;
    border-radius: 6px;
    background: transparent;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #141414;
    outline: none;
    transition: border 0.3s;
}

.fc_form_group input:focus,
.fc_form_group textarea:focus {
    border-color: #2F649B;
}

.fc_form_group textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.fc_contact_submit_btn {
    width: 100%;
    background-color: #0F3D81;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fc_contact_submit_btn:hover {
    background-color: #0A2E65;
}

@media (max-width: 991px) {
    .fc_contact_cards_grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .fc_form_row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   News Listing Section Custom Styles
   ========================================== */
.fc_newslist_section {
    padding: 90px 0 120px;
    background-color: #ffffff;
}

.fc_newslist_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 55px;
    row-gap: 80px;
    margin-bottom: 90px;
}

.fc_newslist_card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.fc_newslist_image {
    width: 100%;

    object-fit: cover;
    display: block;
    border-radius: 4px;
    transition: 0.4s ease;
}

.fc_newslist_card:hover .fc_newslist_image {
    transform: scale(1.04);
}

.fc_newslist_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    margin-bottom: 30px;
}

.fc_newslist_date {
    color: #787878;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.fc_newslist_readmore {
    color: #FFF;

    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #004381;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s ease;
}

.fc_newslist_readmore img {
    width: 11px;
    height: 11px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.fc_newslist_card:hover .fc_newslist_readmore {
    background: #004381;
}

.fc_newslist_card:hover .fc_newslist_readmore img {
    transform: translateX(4px);
}

.fc_newslist_divider {
    width: 100%;
    height: 1px;
    background: #4072A0;
    margin: 13px 0 0px;
}

.fc_newslist_title {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 14px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.fc_newslist_card:hover .fc_newslist_title {
    color: #004381;
}

.fc_newslist_desc {
    color: #404040;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc_newslist_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.fc_newslist_page,
.fc_newslist_prev,
.fc_newslist_next,
.fc_newslist_dots {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: #FFFFFF;
    border: 1px solid #D0D5DD;
    color: #344054;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    box-sizing: border-box;
    user-select: none;
}

.fc_newslist_prev,
.fc_newslist_next {
    color: #98A2B3;
}

.fc_newslist_page.fc_active {
    background-color: #FFFFFF;
    border: 1.5px solid #004381;
    color: #004381;
}

.fc_newslist_page:not(.fc_active):hover,
.fc_newslist_prev:not(.fc_disabled):hover,
.fc_newslist_next:not(.fc_disabled):hover {
    background-color: #F8FAFC;
    color: #004381;
    border-color: #004381;
}

.fc_newslist_dots {
    cursor: default;
    pointer-events: none;
}

.fc_newslist_prev.fc_disabled,
.fc_newslist_next.fc_disabled {
    background-color: #CFD4DC;
    border-color: #CFD4DC;
    color: #FFFFFF;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .fc_newslist_title {

        font-size: 19px;

    }

    .fc_newslist_desc {

        font-size: 14px;

    }

    .fc_newslist_date {

        font-size: 14px;
        font-weight: 400;
    }

    .fc_newslist_grid {

        column-gap: 30px;
        row-gap: 45px;
        margin-bottom: 90px;
    }

    .fc_gallery_page {
        padding: 60px 0;
        background-color: #ffffff;
    }

    .fc_gallery_header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .fc_newslist_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .fc_newslist_grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .fc_newslist_card>div:first-child {
        height: auto;
    }



    .fc_newslist_title {
        font-size: 22px;
    }

    .fc_newslist_desc {
        font-size: 15px;
    }

    .fc_newslist_pagination {
        flex-wrap: wrap;
    }

    .fc_newslist_grid {

        margin-bottom: 45px;
    }
}

/* ==========================================
   NEWS DETAILS SECTION
   ========================================== */
.fc_news_detail_section {
    padding: 140px 0 100px;
    background-color: #FFFFFF;
    width: 100%;
}

.news-detail-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 529px;
    box-sizing: border-box;
}

.fc_news_detail_wrapper {
    display: flex;
    flex-direction: column;
}

.fc_news_detail_back {
    color: #ED1C24;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s ease;
    width: fit-content;
    margin-bottom: 5px;
}

.fc_news_detail_back:hover {
    transform: translateX(-3px);
    opacity: .8;
}

.fc_news_detail_heading {
    color: #242424;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    margin: 0;
    margin-bottom: 30px;
}

.fc_news_detail_image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
    margin-bottom: 0;
}

.fc_news_detail_meta {
    color: #004381;
    font-family: 'Inter', sans-serif;
    font-size: 14.694px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 30px 0;
}

.fc_news_detail_content {
    display: flex;
    flex-direction: column;
}

.fc_news_detail_content p {
    color: #141414;
    font-family: 'Inter', sans-serif;
    font-size: 14.694px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    margin-bottom: 28px;
}

.fc_news_detail_content p:last-child {
    margin-bottom: 0;
}

.fc_news_detail_share {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

.fc_news_detail_icon {
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
    position: relative;
    text-decoration: none;
}

.fc_news_detail_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.fc_news_detail_icon:hover {
    transform: translateY(-3px);
    opacity: .85;
}

.fc_news_detail_tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, -8px);
    background-color: #333333;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.fc_news_detail_tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: #333333 transparent transparent transparent;
}

.fc_news_detail_tooltip.fc_show {
    opacity: 1;
}

/* Responsive Breakpoints */
@media (max-width: 1400px) {
    .news-detail-container {
        padding: 0 220px;
    }
}

@media (max-width: 1200px) {
    .news-detail-container {
        padding: 0 120px;
    }
}

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

    .fc_news_detail_heading {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .news-detail-container {
        padding: 0 25px;
    }

    .fc_news_detail_heading {
        font-size: 20px;
        line-height: 27px;
    }

    .fc_news_detail_content p {
        font-size: 15px;
    }


}

@media (max-width: 480px) {
    .news-detail-container {
        padding: 0 18px;
    }

    .fc_news_detail_content p {
        margin-bottom: 20px;
    }
}

/* ==========================================
   RELATED NEWS SECTION
   ========================================== */
.fc_related_news_section {
    margin-top: 0px;
    padding-top: 40px;
}

.fc_related_news_divider {
    width: 100%;
    height: 1px;
    background: #C9D6E8;
    margin-bottom: 25px;
}

.fc_related_news_heading {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
    margin-top: 0;
}

.fc_related_news_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 38px;
    row-gap: 0;
}

@media (max-width: 1800px) {
    .news-detail-container {

        padding: 0 250px;

    }
}

@media (max-width: 1366px) {
    .news-detail-container {

        padding: 0 100px;

    }
}

@media (max-width: 1199px) {
    .news-detail-container {

        padding: 0 60px;

    }
}

@media (max-width: 991px) {
    .news-detail-container {

        padding: 0 30px;

    }

    .fc_news_detail_meta {

        margin: 18px 0;
    }


    .fc_news_detail_section {
        padding: 100px 0 40px;

    }

    .fc_related_news_heading {

        font-size: 26px;

    }

    .fc_related_news_heading {

        margin-bottom: 18px;
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .fc_related_news_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .fc_related_news_grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

@media (max-width: 575px) {
    .news-detail-container {

        padding: 0 20px;

    }

    .fc_news_detail_section {
        padding: 100px 0 0px;
    }

    .fc_related_news_heading {
        font-size: 26px;
    }

    .fc_news_detail_heading {
        font-size: 18px;
        line-height: 25px;
    }

    .fc_logo_img {
        height: 35px;
        width: auto;
        transition: height 0.4s ease;
    }
}

.fc_honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.fc_contact_success {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(22, 163, 74, .12);
    color: #166534;
    font-size: 14px;
}

.fc_form_error {
    display: block;
    margin-top: 6px;
    color: #e30613;
    font-size: 12px;
}

.fc_form_error_ajax {
    margin-bottom: 20px;
}

.fc_input_error {
    border-color: #e30613 !important;
}

.career-upload-area.fc_input_error {
    border-color: #e30613 !important;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, .08);
}

.career-modal-btn-submit:disabled {
    cursor: not-allowed;
    opacity: .72;
}

.fc_toast_wrap {
    position: fixed;
    top: 90px;
    right: 22px;
    z-index: 9999;
    display: grid;
    gap: 10px;
    width: min(380px, calc(100vw - 32px));
}

.fc_toast {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
    border: 1px solid rgba(0, 0, 0, .08);
    border-left: 4px solid #16a34a;
    font-size: 14px;
    line-height: 1.45;
    animation: fcToastIn .22s ease-out both;
}

.fc_toast_error {
    border-left-color: #e30613;
}

.fc_toast button {
    border: 0;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 0;
}

.fc_toast_hide {
    animation: fcToastOut .2s ease-in both;
}

@keyframes fcToastIn {
    from {
        opacity: 0;
        transform: translateY(-8px) translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

@keyframes fcToastOut {
    from {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }

    to {
        opacity: 0;
        transform: translateY(-6px) translateX(12px);
    }
}

@media (max-width: 575px) {
    .fc_toast_wrap {
        top: 76px;
        left: 16px;
        right: 16px;
        width: auto;
    }
}

.career-job-description p,
.career-details-text p {
    margin: 0 0 10px;
}

.career-job-card.career-post-hidden {
    display: none;
}

.career-job-description p:last-child,
.career-details-text p:last-child {
    margin-bottom: 0;
}

.career-job-description ul,
.career-job-description ol,
.career-details-text ul,
.career-details-text ol {
    margin: 8px 0 0;
    padding-left: 22px;
}

.career-job-description ul,
.career-details-text ul {
    list-style: disc;
}

.career-job-description ol,
.career-details-text ol {
    list-style: decimal;
}

.career-job-description li[data-list="bullet"],
.career-details-text li[data-list="bullet"] {
    list-style-type: disc;
}

.career-job-description li[data-list="ordered"],
.career-details-text li[data-list="ordered"] {
    list-style-type: decimal;
}

.career-job-description li,
.career-details-text li {
    margin-bottom: 7px;
    line-height: 1.6;
}

.career-job-description li:last-child,
.career-details-text li:last-child {
    margin-bottom: 0;
}

.fc_news_detail_content ul,
.fc_news_detail_content ol,
.fc_newslist_desc ul,
.fc_newslist_desc ol {
    margin: 12px 0;
    padding-left: 24px;
}

.fc_news_detail_content ul,
.fc_newslist_desc ul {
    list-style: disc;
}

.fc_news_detail_content ol,
.fc_newslist_desc ol {
    list-style: decimal;
}

.fc_news_detail_content li,
.fc_newslist_desc li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.fc_newslist_subheading {
    margin: 8px 0 10px;
    color: #4A4A4A;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.fc_news_detail_subheading {
    margin: -16px 0 28px;
    color: #4A4A4A;
    font-size: 20px;
    line-height: 1.6;
}