@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ================= ROOT COLORS ================= */
:root {
    --primary-blue: #0a6c8d;
    --primary-blue-dark: #085a74;
    --white: #ffffff;
    --text-white: #f5f5f5;
    --text-muted: #d9d9d9;
    --accent-red: #E83724;
    --dark: #111111;
}

/* ================= GLOBAL ================= */
* {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
}

/* ================= NAVBAR ================= */
.navbar {
    background: var(--white);
    height: 90px;
    padding: 0;
    z-index: 999;
    position: fixed;
    width: 100%;
}

.navbar-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    font-weight: 800;
    font-size: 20px;
}

.navbar-nav {
    height: 100%;
    align-items: start;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 300;
    color: #414141;
    margin: 0 14px;
    padding: 0;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* ACTIVE UNDERLINE */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -34px;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* SOCIAL ICONS */
.social-icons a {
    margin-left: 33px;
    font-size: 18px;
    color: #414141;
}

/* TOGGLER */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ================= OFFCANVAS DRAWER ================= */
.offcanvas {
    width: 280px;
    padding: 20px;
    background: var(--white);
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
}

.offcanvas .navbar-logo {
    height: 60px;
}

.offcanvas .nav-link {
    font-size: 15px;
    font-weight: 300;
    padding: 10px 0;
    color: #414141;
}
.offcanvas .navbar-nav .nav-link::after{
    
    bottom: 0;
}
/* ================= HERO ================= */
.hero-section {
    min-height: 85vh;
    padding-top: 120px;
    color: var(--text-white);
    position: relative;
    /* background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url('assets/images/banner.png') center/cover no-repeat; */
}

/* HERO CONTENT */
.hero-content h1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero-content p {
    margin: 22px 0;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.3px;
    color: var(--text-muted);
}

/* HERO BUTTONS */
.hero-btn .btn {
    border-radius: 50px;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.4px;
    margin-right: 14px;
    transition: all 0.3s ease;
}

.hero-btn .btn-primary,
.hero-btn .btn-outline-light {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.hero-btn .btn-primary:hover,
.hero-btn .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue-dark);
}

/* ================= HERO CARDS ================= */
.hero-cards {
    display: flex;
    gap: 22px;
    justify-content: flex-end;
}

/* CARD */
.hero-card {
    width: 185px;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    position: relative;
}

/* IMAGE */
.hero-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

/* CARD LABEL */
.hero-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
}

/* LABEL COLORS */
.hero-card:nth-child(1) span {
    background: var(--accent-red);
    color: var(--white);
}

.hero-card:nth-child(2) span,
.hero-card:nth-child(3) span {
    background: var(--dark);
    color: var(--white);
}
.hero-btn{
    gap: 11px;
    display: flex;
    flex-wrap: wrap;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .hero-cards {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 40px;
    }

    .hero-card {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 13px;
    }
    .hero-section {
        padding-top: 122px;
        padding-bottom: 3%;
    }
    .hero-card img {
        height: 244px;
    }
    .navbar-nav {
        height: auto;
        align-items: start;
    }
}
/* ================= ABOUT SECTION ================= */
.about-section {
        padding: 3% 0 0;
    background: var(--white);
    overflow-x: hidden;
}

/* IMAGE GRID */
.about-image-grid {
    position: relative;
    width: 100%;
    aspect-ratio: 52 / 48; /* keeps proportions */
}

/* COMMON IMAGE STYLE */
.about-img {
    position: absolute;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* DESKTOP IMAGE POSITIONS (PERCENT BASED) */
.img-1 {
    top: 0;
    left: 0;
    width: 46%;
    height: 46%;
    border-radius: 0 26px 0 26px;
}

.img-2 {
    top: 10%;
    right: 6%;
    width: 38%;
    height: 38%;
    border-radius: 26px 0 26px 0;
}

.img-3 {
    bottom: 0;
    left: 0;
    width: 48%;
    height: 50%;
    border-radius: 26px 0 26px 0;
}

.img-4 {
    bottom: 8%;
    right: 6%;
    width: 38%;
    height: 38%;
    border-radius: 0 26px 0 26px;
}


/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 991px) {
    .about-image-grid {
        max-width: 420px;
        margin: 0 auto;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .about-image-grid {
        position: static;
        aspect-ratio: unset;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-img {
        position: static;
        width: 100%;
        height: 180px;
    }

    .about-logo {
        display: none;
    }
}

/* CENTER LOGO */
.about-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 16px 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about-logo img {
    width: 65px;
    height: auto;
}


.about-subtitle {
    color: var(--accent-red);
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .about-content h2 {
        font-size: 28px;
    }
}
/* ================= XXL SCREENS (≥1400px) ================= */
/* ================= MISSION & VISION ================= */
.mv-section {
    padding: 3% 0 2%;
    background: var(--white);
}


/* IMAGE */
.mv-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 22px;
}

.mv-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    /*background: #1c2b36;*/
    z-index: 2;
}

.mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TITLE */
.mv-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--accent-red);
    margin-bottom: 10px;
}

/* TEXT */
.mv-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    max-width: 480px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .mv-card {
        max-width: 100%;
    }

    .mv-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .mv-section {
        padding: 3% 0;
    }

    .mv-image {
        height: 200px;
    }
}
/* ================= MESSAGE SECTION ================= */
.message-section {
    padding: 3% 0 3%;
    background-color: #131C23;
    color: var(--text-white);
}

/* LEFT IMAGE */
.message-image {
    width: 100%;
}

.message-image img {
    width: 100%;
    height: auto;
    display: block;
}
.message-subtitle {
    color: var(--accent-red);
    font-size: 20px;
    font-weight: 300;
    display: inline-block;
    margin-bottom: 14px;
}

.message-content h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 22px;
}

.message-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #cfd6dc;
    margin-bottom: 18px;
}

/* LINE IMAGE */
.message-line {
    margin: 35px 0 16px;
}

.message-line img {
    width: 100%;
}

/* NAME */
.message-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .message-section {
        padding: 3% 0;
    }

    .message-content h2 {
        font-size: 28px;
    }

    .message-line img {
        max-width: 300px;
    }
}
/* ================= BUSINESS SECTION ================= */
.business-section {
    padding: 3% 0% 3% 0%;
    background:#F5F5F5;
    overflow-x: hidden;
}

/* HEADER */
.business-header {
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--accent-red);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
}

.business-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
}

.business-header p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* LEFT TABS */
.business-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* BUSINESS ITEM */
.business-item {
    position: relative;
    height: 150px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
}

/* DEFAULT DARK OVERLAY (inactive) */
.business-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* CENTER TEXT */
.business-item span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    z-index: 2;
    padding: 0 16px;
}

/* ACTIVE STATE (RED OVERLAY) */
.business-item.active::before {
        margin: 10px;
    background: rgb(232 55 36 / 50%);
    opacity: 50%;
}


/* RIGHT FEATURE */
.business-feature {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.business-feature::before {
    content: "";
    position: absolute;
    inset: 0;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);

}

.business-feature-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    max-width: 520px;
    color: var(--white);
    z-index: 2;
}

.business-feature-content h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.business-feature-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* BUTTON */
.business-feature-content .btn {
    border-radius: 30px;
    padding: 8px 22px;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .business-feature {
        min-height: 360px;
    }
}

@media (max-width: 576px) {
    .business-header h2 {
        font-size: 26px;
    }

    .business-item {
        height: 120px;
    }
}
/* ================= CAREERS SECTION ================= */
.careers-section {
    padding: 3% 0 3%;
    background: var(--white);
    overflow-x: hidden;
}

/* HEADER */
.careers-header {
    max-width: 760px;
    margin: 0 auto 60px;
}

.careers-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 12px 0 14px;
}

.careers-header p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 26px;
}

/* BUTTON */
.careers-btn {
    border-radius: 30px;
    padding: 8px 26px;
    font-size: 13px;
    border-width: 1px;
}

/* ================= CAREERS GRID ================= */
.careers-grid {
    margin-top: 40px;
    row-gap: 20px;
}

/* IMAGE BOX */
.career-img {
    width: 100%;
    height: 295px;
    overflow: hidden;
    border-radius: 6px;
}

.career-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-fit: cover;
    object-position: top;
}
/* ================= CONTACT CTA ================= */
.contact-cta {
    padding: 3% 0;
    background-color: #131C23;
    color: #ffffff;
}

.contact-cta-content {
    max-width: 80%;
    margin: 0 auto;
}

/* SUBTITLE */
.contact-subtitle {
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    color: var(--accent-red);
    margin-bottom: 18px;
}

/* HEADING */
.contact-cta h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 22px;
    line-height: 1.2;
}

/* TEXT */
.contact-cta p {
    font-size: 20px;
    line-height: 1.8;
    color: #cfd6dc;
    margin: 0 auto 36px;
}

/* CONTACT INFO */
.contact-info a {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 14px;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-phone {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-cta {
        padding: 3% 0;
    }

    .contact-cta h2 {
        font-size: 36px;
    }

    .contact-phone {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .contact-cta h2 {
        font-size: 28px;
    }
    .hero-btn .btn {
 
    padding: 11px 16px;

}
.careers-header {
    
    margin: 0 auto 0px;
}
.careers-grid {
    margin-top: 20px;

}
    .contact-cta p {
        font-size: 15px;
    }
    .contact-cta-content {
    max-width: 100%;
}
.contact-info a {
    font-size: 14px;
}
}
/* ================= FOOTER ================= */
.site-footer {
    background: #FBFBFB;
    padding: 4px 0;
        border-bottom: 2px solid var(--accent-red);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    height: 100px;
    width: auto;
}

.footer-brand span {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

/* CENTER LINKS */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 10%;
}

.footer-links a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* RIGHT SOCIAL */
.footer-social a {
    margin-left: 12%;
    font-size: 18px;
    color: #333;
}

.footer-social a:hover {
    color: var(--accent-red);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-brand {
        justify-content: center;
        margin-bottom: 12px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 14px;
    }

    .footer-social a {
        margin-left: 12px;
    }
}
/* ================= PAGE BANNER ================= */
.page-banner {
    position: relative;
     padding-top: 90px;
    height: 80vh;
    width: 100%;
    /* background:   linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),url('assets/images/banner2.png') center/cover no-repeat; */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.page-banner-content h1 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-banner {
        height: 260px;
    }

    .page-banner-content h1 {
        font-size: 22px;
    }
}
/* ================= ABOUT COMPANY ================= */
.about-company {
    padding: 3%  0;
    background: var(--white);
    overflow-x: hidden;
}

.about-company-intro h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.about-company-intro p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* IMAGE */
/* IMAGE CONTAINER */
.about-company-image {
    position: relative;
    width: 100%;
}

/* MAIN IMAGE */
.about-company-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* LOGO OVERLAY (BOTTOM RIGHT) */
.about-image-logo {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffffff;
    padding: 10px 12px;
}

.about-image-logo img {
    display: block;
}

.about-company-content h2 {
    font-size: 32px;
    font-weight: 600;
}

.about-company-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-company-content h2 {
        font-size: 24px;
    }
    .about-company-content p {
    font-size: 11px;
}
.careers-header h2 {
    font-size: 24px;
}
.careers-section {
    padding: 3% 0;
}
}

/* ================= CORE FOCUS AREAS ================= */
.focus-section {
    padding: 3% 0;
    background: #F5F5F5;
}

/* CARD */
.focus-card {
    display: flex;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

/* REVERSE LAYOUT */
.focus-card.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.focus-image {
    width: 50%;
}

.focus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.focus-content {
    width: 50%;
    background: #0f1a21;
    display: flex;
    align-items: center;
    padding: 30px;
}

.focus-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .focus-card,
    .focus-card.reverse {
        flex-direction: column;
    }

    .focus-image,
    .focus-content {
        width: 100%;
    }

    .focus-content {
        padding: 24px;
    }
}
/* ================= PRIVACY SECTION ================= */
.privacy-section {
    padding: 48px 0 0;
    background: var(--white);
}

/* HEADER */
.privacy-header {
    margin: 0 auto 60px;
}

.privacy-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 12px 0 14px;
}

.privacy-header p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* CONTENT */
.privacy-content {
    margin: 0 auto;
}

.privacy-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0 10px;
    color: #111;
}

.privacy-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .privacy-header h2 {
        font-size: 26px;
    }
    .privacy-section {
        padding: 17px 0;
        background: var(--white);
    }
    .privacy-header {
        margin: 0 auto 1px;
    }
}

/* new css */
.language-dropdown {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-weight: 500;
  cursor: pointer;
}

