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

:root {
    --primary-color: #093b59;
    --secondary-color: #107a78;
    --light-secondary: #37d0cd;
    --text-dark: #333333;
    --text-muted: #093b59;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --gray-color: #f3f4f5;
    --bord-color:#eaebec;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --transition: all 0.3s ease-in-out;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}


body {
    font-family: var(--font-main);
    color: var(--primary-color);
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

ul {
    /* list-style: none; */
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- HEADER & MENU FIXES --- */
header {
    width: 100%;
    z-index: 1000;
    position: relative;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.wsmainfull {
    background-color: #fff !important;
}

.wsmainwp {
    /*max-width: 1300px !important; 
    width: 100%;
    padding: 0 25px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: height 0.3s ease;
}

header.is-sticky .wsmainwp {
    height: 60px;
}

.desktoplogo {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.desktoplogo img {
    width: 250px;
    transition: all 0.3s;
}

.wsmenu {
    margin: 0 auto;
}

.wsmenu-list>li>a {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0 15px;
    line-height: 90px;
    /* Force centering with height */
    /* background: transparent; */
    position: relative;
}
.wsmenu > .wsmenu-list > li > a::after {
    content: "";
    position: absolute;
    bottom: 15px;
    height: 5px;
    left: 0;
    right: 0;
    width: calc(100% - 30px);
    margin: 0 auto;
    transition: all 0.4s ease-out;
    transform: scale(0);
    background-image: linear-gradient(to right, #9aa3a1 0% 20%, #003a5c 20%  50%,#00827e 50% 100%);
}

.wsmenu-list>li>a:hover,
.wsmenu-list>li>a:hover::after,
.wsmenu-list>li>a.active {
    color: var(--secondary-color);
    font-weight: 600;
    transform: scale(1);
}
.wsmenu > .wsmenu-list > li > a.active::after {
    transform: scale(1);
}
.wsmainfull.wsfixed .wsmenu > .wsmenu-list > li > a::after {
    bottom: 10px;
}
.book-now.desktop {
    margin: 0 !important;
    float: none !important;
    display: flex;
    align-items: center;
}

/* Mobile Header Fixes */
.wsmobileheader {
    background-color: #fff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 60px !important;
}

.smllogo img {
    height: auto;
}

.wsanimated-arrow span,
.wsanimated-arrow span:before,
.wsanimated-arrow span:after {
    background-color: var(--primary-color) !important;
}

.wsmainfull.wsfixed {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wsmainfull.wsfixed .wsmenu-list>li>a {
    /* color: var(--primary-color) !important; */
    line-height: 40px !important;
    /* Adjusted for sticky height */
}

/* Arrow Fixes */
.wsmenu-list>li>a .wsarrow {
    display: inline-block;
    vertical-align: middle;
}

.wsmenu-list>li>a .wsarrow:after {
    top: 50% !important;
    transform: translateY(-50%);
    right: 5px !important;
    margin-left: 10px !important;
    border-top-color: var(--secondary-color) !important;
}

/* Submenu Fixes */
/*.wsmenu>.wsmenu-list>li>ul.sub-menu {
    background-color: #fff !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    top: 100% !important;
    padding: 10px 0 !important;
}

.wsmenu>.wsmenu-list>li>ul.sub-menu>li>a {
    color: var(--primary-color) !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
}

.wsmenu>.wsmenu-list>li>ul.sub-menu>li>a:hover {
    background-color: var(--bg-light) !important;
    color: var(--secondary-color) !important;
}
*/
.sub-menu>li {
    border-bottom: 1px solid #eee !important;
}

.sub-menu>li:last-child {
    border-bottom: none !important;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    margin: 0 12px;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-contact {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-contact:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-gradient {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-block;
    transition: var(--transition);
}

.btn-gradient:hover {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 122, 120, 0.3);
}

/* Visibility Helpers */
.mobile-nav-item {
    display: none !important;
}



.book-now.desktop {
    margin-left: 20px;
    display: flex;
    align-items: center;
}


/* --- HERO --- */
.hero-section {
    padding: 50px 0;
    background-color: var(--gray-color);
    margin-bottom: 50px;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-desc {
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btns .btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 4px;
}

.btn-read-more {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-read-more:hover {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 122, 120, 0.3);
}

.btn-outline-custom {
    border: 2px solid var(--secondary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}


.hero-image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Made square */
    max-width: 550px;
    /* Limit size for desktop to prevent it being too tall */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.slider-inner {
    width: 100%;
    height: 100%;
}

.hero-image-slider .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    /* Slightly smaller initial scale */
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}



/* --- STATS BAR V2 (IMAGE MATCH) --- */
.stats-bar-v2 {
    padding: 0;
    overflow: hidden;
    margin-bottom: 50px;
}

.stat-box {
    padding: 40px;
    border: 3px solid rgba(255, 255, 255, 1);
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: start;
    min-height: 280px;
    transition: background-color 0.3s ease;
}

/*.stat-box:last-child {
    border-right: none;
}*/

.stat-icon-wrap {
    margin-bottom: 25px;
}

.stat-title {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.stat-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-main);
    font-weight: 400;
}

.stat-box {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.stat-box:hover {
    background-color: var(--secondary-color);
}

/* --- CORE COMPETENCIES --- */
.section-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title-main {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.section-subtitle-main {
    color: var(--text-muted);
    font-size: 1rem;
}

.competency-card {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    /* margin-bottom: 30px; */
}

.competency-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: var(--transition);
}

.competency-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.5);
}

.competency-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: var(--white);
}

.competency-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.competency-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
}

.competency-link::after {
    content: ' →';
    font-size: 1rem;
    color: var(--light-secondary);
}


/* --- TARGET MARKETS V2 (IMAGE MATCH) --- */

.target-markets-v2 {
    padding: 60px 0;
    background-color: var(--white);
}

.market-controls {
    margin-top: 25px;
}

.market-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.market-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.market-slider-container {
    overflow: hidden;
    margin-top: 40px;
}

.market-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.market-card {
    flex: 0 0 calc(25% - 22.5px);
    /* Exactly 4 cards with 30px gaps */
    max-width: calc(25% - 22.5px);
}



.market-card-inner {
    background-color: #f4f7f9;
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
    height: 100%;
    border-radius: 10px;
    transition: var(--transition);
}

.market-icon-v2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.market-card-inner h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.market-card-inner p {
    font-size: 0.9rem;
    margin: 0;
}

/* --- SHOWCASE V2 (IMAGE MATCH) --- */
.showcase-v2 {
    padding: 60px 0;
    background-color: var(--white);
}

.showcase-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.showcase-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-top: 10px;
    text-transform: uppercase;
}

.project-nav {
    margin-top: 30px;
    padding-right: 0;
}

.project-nav-item {
    padding: 15px 25px;
    border-left: 4px solid #ccd5db;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: transparent !important;
}

.project-nav-item:hover,
.project-nav-item.active {
    opacity: 1;
    border-left: 4px solid var(--secondary-color);
    transform: none;
}

.proj-cat {
    font-size: 0.7rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 5px;
}

.proj-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 5px 0;
    font-weight: 700;
}

.proj-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.showcase-img-container {
    padding-left: 20px;
}

.showcase-img-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    transition: opacity 0.5s ease;
}



/* --- MEGA CLIENTS V2 --- */
.clients-v2 {
    padding: 50px 0;
    background-color: var(--gray-color);
    text-align: center;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 25px auto;
}

.clients-intro {
    max-width: 800px;
    margin: 0 auto;
    color: var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* .client-slider-container {
    overflow: hidden;
    margin-top: 60px;
    display: flex;
    align-items: center;
} */


/* Slick Slider Specifics */
.multiple-items .slick-slide {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
}

.slick .client-logo img {
    /* max-height: 100px;*/
    width: 70%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.4s ease;
    display: block;
    margin: 0 auto;
}

.slick .client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* --- CLIENTS --- */
/* .clients-section {
    padding: 80px 0;
    text-align: center;
}

.clients-section .client-logo {
    max-width: 200px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.clients-section .client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
} */

/* --- CTA BANNER V2 (IMAGE MATCH) --- */
.cta-banner-v2 {
    padding: 60px 0;
    background-color: var(--white);
}

.cta-inner {
    padding: 80px 60px;
    border-radius: 24px;
    background-repeat: no-repeat;
    background-position: right;
    background-color: #093b59;
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(9, 59, 89, 0.2);
}

.cta-inner .row {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0;
}

.btn-cta-white {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--secondary-color);
}





/* --- FOOTER V2 (IMAGE MATCH) --- */
.footer-v2 {
    padding: 80px 0 30px;
    background-color: var(--white);
    border-top: 2px solid #eaebec;
}

.footer-logo {
    height: 55px;
    width: auto;
}

.footer-address {
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

.social-links-simple {
    display: flex;
    gap: 20px;
}

.social-links-simple a {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.social-links-simple a:hover {
    color: var(--primary-color);
}

.footer-v2 .footer-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

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

.footer-list li a {
    color: var(--primary-color);
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-list li a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.form-control-v2 {
    padding: 12px 20px;
    border-radius: 8px;
    border: 1.5px solid var(--secondary-color);
    width: 100%;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.btn-send-v2 {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    /* width: 100%; */
    font-weight: 700;
    font-size: 0.95rem;
}

.btn-send-v2:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(9, 59, 89, 0.2);
}

.footer-bottom-v2 {
    border-top: 2px solid #eaebec;
}

.copyright {
    font-size: 0.85rem;
    margin: 0;
}

.legal-links a {
    font-size: 0.85rem;
    margin-left: 20px;
}

.legal-links a:hover {
    color: var(--secondary-color);
}

/* --- ABOUT PAGE (IMAGE MATCH) --- */
/* Page Header */
.page-header {
    background: var(--primary-color) linear-gradient(135deg, var(--primary-color) 50%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../imgs/bgs/breadcrumb-bg.webp');
    background-size: auto 150%;
    background-repeat: no-repeat;
    background-position: 90% center;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
    animation: slideHeaderBg 10s ease-in-out infinite alternate;
}

/* Header Background Variants */
.header-lamp::before {
    background-image: url('../imgs/bgs/light.webp');
    background-size: auto 100%;
}

.header-power::before {
    background-image: url('../imgs/bgs/power.webp');
    background-size: auto 100%;
}

.header-steel::before {
    background-image: url('../imgs/bgs/steel.webp');
    background-size: auto 100%;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../imgs/bgs/dot.webp');
    background-repeat: repeat;
    opacity: 0.3;
    z-index: 2;
    animation: floatDots 20s linear infinite;
    pointer-events: none;
}

@keyframes slideHeaderBg {
    from {
        transform: translateX(30px) scale(1.05);
    }

    to {
        transform: translateX(-10px) scale(1);
    }
}

@keyframes floatDots {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 400px 400px;
    }
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
    line-height: 55px;
}

.breadcrumb {
    background: transparent !important;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--light-secondary) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/" !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Animations - Initial state for GSAP */
.page-title,
.breadcrumb {
    opacity: 1;
}

/* Company Overview */
.overview-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
}

.overview-title span {
    color: var(--secondary-color);
}

.overview-desc {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.6;
}

.overview-info {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 20px;
}

/* Video Preview Section */
.video-preview-box {
    position: relative;
    display: inline-block;
    /* width: 100%; */
}

.main-preview-img {
    /* width: 100%; */
    transition: transform 0.5s ease;
}

.video-play-btn {
    position: absolute;
    top: 55%;
    right: -60px;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 6px solid #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.play-btn-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.play-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
}

.play-icon-overlay i {
    width: 40px;
    height: 40px;
    background: var(--light-secondary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding-left: 3px;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.05) translate(-5px, -5px);
}

.video-play-btn:hover .play-icon-overlay i {
    transform: scale(1.1);
    background: #fff;
    color: var(--light-secondary);
}



/* Certifications */
.certifications-section {
    padding: 50px 0;
    background: var(--gray-color);
    margin-bottom: 50px;
}

.cert-intro-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cert-main-icon i {
    opacity: 0.8;
}

.section-title-accent {
    font-size: 2.2rem !important;
    line-height: 1.2;
}

/* Vision & Mission */
.vision-mission-v2 {
    color: var(--white);
}

.vision-box {
    background-color: var(--primary-color);
    padding: 50px 60px;
}

.mission-box {
    background-color: var(--secondary-color);
    padding: 50px 60px;
}

.vision-mission-v2 .content-wrap {
    max-width: 500px;
    margin: 0 auto;
}

.vision-mission-v2 .icon-wrap {
    margin-bottom: 30px;
    opacity: 1;
}

.icon-wrap img {
    width: 100px;
}

.vision-mission-v2 .box-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.vision-mission-v2 p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Values */
.values-icon img {
    width: 100px;
}

.our-values {
    background-color: var(--gray-color);
    padding: 50px 0 0px;
    /* Light gray background like the screenshot */
}

.value-name {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.value-desc {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
    opacity: 0.85;
}

/* --- CERTIFICATION SLIDER --- */
.cert-slider-container {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.cert-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-item {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
}



.cert-thumb {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 600px;
    object-fit: contain;
    border: 1px solid #ddd;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cert-thumb:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

/* --- GOVERNANCE PAGE --- */
/* Chairman Section */
.chairman-section {
    margin: 50px 0px;
}

.chairman-img-wrapper {
    position: relative;
    padding-bottom: 20px;
}

.chairman-tag {
    position: absolute;
    bottom: 65px;
    right: -20px;
    background: var(--white);
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 5;
}

.chairman-tag h5 {
    font-weight: 800;
}

.chairman-tag span {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
}

.chairman-content p {
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 0;
}

.chairman-content-wrapper {
    transition: all 0.3s ease;
}

.border-secondary-custom {
    border-color: var(--secondary-color) !important;
}

/* Read More Button */
.read-more {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.read-more[aria-expanded="true"] .read-text {
    display: none !important;
}

.read-more[aria-expanded="true"] .less-text {
    display: inline-block !important;
}

/* Company Grid */
.companies-section {
    padding: 50px 0px;
    background-color: var(--gray-color);
}

.company-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.company-logo {
    width: 100%;
    height: 140px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    padding: 15px;
    background: #fff;
    transition: all 0.3s ease;
}

.company-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    /* filter: grayscale(1); 
    opacity: 0.6;*/
    transition: all 0.4s ease;
}

.company-card:hover .company-logo {
    border-color: var(--secondary-color);
}

.company-card:hover .company-logo img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.company-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
}

/* --- HISTORY PAGE & TIMELINE --- */
.history-section {
    margin: 50px 0 0px;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-year {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.timeline-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: var(--secondary-color);
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(22, 122, 125, 0.15);
    position: relative;
}

.timeline-img-box {
    transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-img-box {
    transform: scale(1.03);
}

/*.timeline-item:last-child {
    margin-bottom: 0px;
}*/

/* ================================
   FACTORIES PAGE
================================ */
.factories-section {
    padding: 50px 0 0;
}

.factory-img-wrapper {
    overflow: hidden;
    position: relative;
}

.factory-img {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.factory-item:hover .factory-img {
    transform: scale(1.04);
}

.factory-content {
    padding: 30px 40px;
}

.factory-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-color);
    background: var(--gray-color);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    font-family: var(--font-heading);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.factory-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 20px;
}

.factory-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    max-width: 480px;
}

/* Responsive */


/* ================================
   PROJECTS PAGE
================================ */
.projects-section {
    background: #fff;
    margin-top: 50px;
}

.projects-intro-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
}

/* Filter Bar */
.filter-bar {
    border-top: 2px solid var(--secondary-color);
    padding-top: 20px;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.filter-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.filter-btn {
    background: #f4f4f4;
    border: none;
    color: #555;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: #fff;
}

/* Project Cards */
.project-col {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.project-img-wrapper {
    position: relative;
    overflow: hidden;
    /* height: 260px; */
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.project-card:hover .project-img {
    transform: scale(1.07);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 59, 89, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-view-btn {
    width: 52px;
    height: 52px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.project-card:hover .project-view-btn {
    transform: scale(1);
}

.project-info {
    padding: 20px 24px;
    text-align: center;
}

.project-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.project-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
}

/* Badge utility */
.bg-primary-custom {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ================================
   GALLERY MODAL
================================ */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 90vh;
    z-index: 10000;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10005;
}

.gallery-close:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: rotate(90deg);
}

.gallery-header {
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
}

.gallery-badge {
    background: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(16, 122, 120, 0.3);
}

.gallery-title {
    font-size: 2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-counter {
    font-size: 1rem;
    opacity: 0.8;
}

.gallery-stage {
    position: relative;
    width: 100%;
    flex: 1;
    max-height: 60vh;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: var(--secondary-color);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-thumbs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    padding: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    width: 90px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    flex-shrink: 0;
}

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

.gallery-thumb.active {
    border-color: var(--secondary-color);
    opacity: 1;
}

.gallery-thumb:hover {
    opacity: 1;
}

/* --- PRODUCT DETAILS PAGE (IMAGE MATCH) --- */
.product-details-page {
    background-color: var(--white);
    padding: 50px 0;
}

/* --- PRODUCT DETAILS FLEXSLIDER --- */
.product-images-wrap .flexslider {
    border: 1px solid #eee;
    border-radius: 8px;
    background: var(--white);
    margin-bottom: 0;
}

#slider.flexslider {
    margin-bottom: 15px !important;
}

#carousel.flexslider .slides li {
    cursor: pointer;
    border: 2px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

#carousel.flexslider .flex-active-slide {
    border-color: var(--secondary-color);
}

#carousel.flexslider .slides img {
    opacity: 0.5;
}

#carousel.flexslider .flex-active-slide img,
#carousel.flexslider .slides li:hover img {
    opacity: 1;
}

/* Sidebar Product List */
.sidebar-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-sidebar-list {
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: #fff;
}

.product-list-item {
    display: block;
    padding: 15px 20px;
    color: var(--primary-color);
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.product-list-item:last-child {
    border-bottom: none;
}

.product-list-item:hover,
.product-list-item.active {
    color: var(--secondary-color);
    background-color: #fcfcfc;
    border-left-color: var(--secondary-color);
    font-weight: 500;
}

.btn-download-cat {
    display: block;
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-download-cat i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-download-cat:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Product Content */
.product-category-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 2px;
}

.product-main-title {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 20px;
}

.thumb-slide {
    flex: 0 0 calc(33.333% - 10px);
    /* Show 3 at a time with gap compensation */
}


/* Accordion Styling */
.product-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    background-color: transparent;
}

.product-accordion .accordion-button {
    background-color: #f1f5f8;
    color: var(--primary-color);
    font-weight: 700;
    border: none;
    border-radius: 4px !important;
    padding: 15px 20px;
    box-shadow: none;
}

.product-accordion .accordion-button:not(.collapsed) {
    background-color: #f1f5f8;
    color: var(--primary-color);
    box-shadow: none;
}

.product-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23093b59'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.product-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23107a78'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.product-accordion .accordion-body {
    padding: 20px;
    color: var(--text-dark);
    font-size: 0.95rem;
    background-color: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.product-features-list {
    margin-top: 15px;
    padding-left: 20px;
}

.product-features-list li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

/**** showroom page ****/
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 114, 153, 0.7);
    /* Primary color */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/*** news***/
.news-section {
    padding: 50px 0;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.news-content {
    padding: 20px;
}

.news-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.news-content a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
}

.news-content a:hover {
    color: var(--primary-color);
}

.news-img {
    overflow: hidden;
}

.news-img img {
    object-fit: cover;
    transition: all 0.5s ease;
}

.news-img img:hover {
    transform: scale(1.2);
    transition: all 0.5s ease;
}

.news-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

.news-date {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: absolute;
    top: 20px;
    /* left: 20px; */
    margin-left: 20px;
    transition: all 0.5s ease;
}

.news-detail-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.news-date .date {
    font-size: 1.2rem;
    font-weight: 700;
}

.news-date .month {
    font-size: 0.8rem;
    font-weight: 500;
}

.news-title {
    font-size: 1.5rem;
}

.sidebar-widget {
    background: var(--gray-color);
    padding: 10px;
    border-radius: 5px;
}

.sidebar-widget h4 {
    border: none;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    padding: 10px 0;
    border-bottom: 1px solid var(--white);
}

.recent-news-item {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--white);
    padding: 0 0 10px 0;
}

.recent-news-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.recent-news-item span {
    color: var(--secondary-color);
    font-size: .85rem;
    display: block;
    margin-top: 5px;
}

.sidebar-widget a:last-child {
    border-bottom: none;
}

/* --- NEWS PAGINATION --- */
.pagination .page-link {
    color: var(--primary-color);
}

.pagination .page-link:hover {
    background-color: var(--secondary-color);
    border-color: var(--gray-color);
    color: var(--white);
}

.pagination .page-item.active .page-link {
    background-color: var(--secondary-color);
    border-color: var(--gray-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color) !important;
    border-color: var(--gray-color) !important;
}

.pagination .page-link {
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    color: var(--white);
}

/*** Partners ***/
.Partner-txt {
    margin: 50px 0;
    text-align: center;
}

.partner-card {
    border: 2px solid var(--gray-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    height: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*** showroom ***/
.showroom-overview {
    margin: 50px 0px;
}

.showroom-overview .overview-title span {
    color: var(--secondary-color);
}

.showroom-overview ul li {
    text-align: justify;
    margin-bottom: 6px;
}

.btn-cont {
    margin-top: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.showroom-overview .show-img {
    position: relative;
}

.show-img img {
    /* object-fit: cover;
    height: 500px; */
    border-radius: 10px;
}

.show-location {
    position: absolute;
    bottom: 20px;
    left: 10px;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.showroom-overview .show-img i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.showroom-overview .show-img h6 {
    margin-bottom: 0px;
}

.showroom-highlights {
    margin-bottom: 50px;
    background-color: var(--gray-color);
    padding: 50px 0px;
}

.showroom-highlights .card {
    background-color: var(--white);
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-top: 2px solid var(--primary-color);
    margin-bottom: 25px;
}

.showroom-highlights .card h5 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.showroom-highlights .card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.showroom-highlights .card img {
    border-radius: 10px;
}

/*** contact ***/
.contact-section {
    padding: 50px 0;
    background-color: var(--bg-light);
}
.contact-cards
{
    row-gap: 25px;
}
.contact-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-top: 3px solid var(--primary-color);
    margin-bottom: 25px;
    font-size: .85rem;
}

.contact-card .map-container {
    border-radius: 10px;
    overflow: hidden;
}

.contact-card h5 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-card img {
    border-radius: 10px;
}

.contact-form-section {
    padding: 50px 0px;
    background: var(--gray-color);
    padding: 60px 0px;
}

.contact-form-section h2 {
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.Custom-S {
    margin-bottom: 25px;
}

.Custom-S i {
    color: var(--primary-color);
    font-size: 1.5rem;
    background-color: var(--gray-color);
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    border-bottom: 2px solid var(--gray-color);
    padding-bottom: 10px;
    margin-bottom: 35px;
}

.contact-form-wrapper .form-label {
    font-weight: 500;
    font-size: 0.85rem;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border-bottom: 1px solid var(--gray-color);
    background-color: var(--gray-color);
    font-size: 0.85rem;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--secondary-color);
}
/* NTT Decorative Styles */
.sidebar-title-light {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    position: relative;
}
.sidebar-title-light::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}
.decorative-sidebar-list a {
    display: block;
    padding: 10px 0;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--bord-color);
    transition: color 0.3s;
}
.decorative-sidebar-list a:hover,
.decorative-sidebar-list a.active {
    color:var(--secondary-color);
}
.product-grid-card {
    border: 1px solid var(--bord-color);
    padding: 30px;
    text-align: left;
    height: 100%;
    transition: box-shadow 0.3s, border-color 0.3s;
    display: block;
    text-decoration: none;
}
.product-grid-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}
.product-grid-img {
    /* max-height: 200px; */
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
}
.product-grid-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 10px;
}
.product-grid-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 400;
}
.product-grid-card:hover .product-grid-link {
    color: var(--secondary-color);
}

/* Solis Styles */
.solis-web
{
    margin-top:80px;
}
.solis-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.btn-solis {
    background-color:var(--secondary-color);
    color:var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s;
}
.btn-solis:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}
.solis-desc p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.solis-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
}
.solis-list li {
    width: 50%;
    margin-bottom: 15px;
    font-weight: 500;
}
.solis-image-wrap {
    margin-top: 3rem;
    text-align: center;
}
.solis-main-img {
    max-width: 100%;
    height: auto;
}

.solis-page-wrapper {
    position: relative;
    z-index: 1;
}
.solis-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: var(--gray-color);
    z-index: -1;
}
.No
{
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}
/* --- PRELOADER (GSAP CURTAIN) --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transform-origin: top;
}

.preloader-logo {
    width: 180px;
    opacity: 0;
    transform: scale(0.9);
}

/* --- SPLIT TYPE (TEXT ANIMATION UTILITIES) --- */
.line {
    overflow: hidden; /* Important for the staggered slide-up reveal */
    padding-bottom: 0.1em; /* Prevent descenders from clipping */
}

/* --- MOBILE RESPONSIVENESS FIXES --- */
span[data-aos] {
    display: inline-block; /* Essential for transform animations on inline elements */
}
/*** New loader ***/
#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff; /* أو لون الخلفية بتاعك */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* اللوجو */
.preloader-logo {
    position: relative;
    z-index: 2;
}

/* شريط الألوان تحت اللوجو */
.loader-bar {
    position: absolute;
    bottom: 40%; /* تحت اللوجو شوية */
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 15px;
    border-radius: 0px;

    background-image: linear-gradient(
        to right,
        #9aa3a1 0%,
        #9aa3a1 20%,
        #003a5c 20%,
        #003a5c 50%,
        #00827e 50%,
        #00827e 100%
    );

    background-size: 200% 100%;
    animation: moveGradient 1.5s linear infinite;

    z-index: 1;
}

/* حركة الألوان */
@keyframes moveGradient {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* Showcase V2 Custom Styles */
.showcase-v2.section-padding {
    background-color: #fff;
}

.showcase-v2-tag {
    color: #1a424f;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.showcase-v2-title {
    color: #138968;
    font-weight: 800;
    font-size: 40px;
    text-transform: uppercase;
}

.project-card-v2 .project-img-wrap img {
    height: 250px;
    object-fit: cover;
}

.project-card-v2 h4 {
    font-size: 1.1rem;
    color: #1a424f;
}

.project-card-v2 .showcase-v2-cat {
    font-size: 0.85rem;
    color: #138968;
    border-bottom: 3px solid #138968;
}

.showcase-v2-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #138968;
    color: #138968;
    background-color: transparent;
    transition: all 0.3s ease;
}

.showcase-v2-arrow:hover {
    background-color: #138968;
    color: #fff;
}