/* Thin (100) */
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}

/* Extra Light (200) */
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-ExtraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
}

/* Light (300) */
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

/* Regular (400) */
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

/* Medium (500) */
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

/* SemiBold (600) */
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}

/* Bold (700) */
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

/* ExtraBold (800) */
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
}

/* Black (900) */
@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../font/Montserrat-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}

* {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    overflow-x:hidden;
}

main {
    padding: 0 20px;
}

/* =============================
           HEADER DEFAULT (TRANSPARENT)
           ============================= */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    transition: all 250ms ease;
    background: transparent;
    /* initially transparent */
    color: #fff;
    /* white text */
}

/* INNER AREA */
.nav-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: inherit;
}

.logo-mark {
    width: 15%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand .line1 {
    font-weight: 700;
    font-size: 13px;
    color: #ff8a00;
}

.brand .line2 {
    font-size: 12px;
    color: #fff;
}

.nav-link-about {
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
}

/* =============================
           HEADER WHEN SCROLLED
           ============================= */
header.scrolled {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    color: #222;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
header.scrolled .logo-mark{
    width:10%;
}

header.scrolled .nav-link-about {
    color: #ffffff;
}

header.scrolled .brand .line2 {
    color: #222;
}

/* =============================
              HERO SECTION
        ============================= */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: flex-end;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../image/Banner.png);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .7));
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
    padding: 50px 20px;
    color: #fff;
}

.hero-title {
    font-size: 36px;
    line-height: 70px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 400;
}

.first-section h2 {
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
}

.first-section p {
    text-align-last: center;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
}

.logo-section {
    max-width: 1650px;
    margin: 0 auto;
}

/* --- Custom column class for 5 items per row --- */
.img-card {
    flex: 0 0 20% !important;
    max-width: 20% !important;
    text-align: center;
}

/* Image only — no background, no box */
.logo-card {
    padding: 0;
    background: none !important;
    border-radius: 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card img {
    width: 100%;
    object-fit: cover;
}

.about-section-main {
    max-width: 1650px;
    margin: 0 auto;
}

.logo-caption a {
    margin-top: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    line-height: 30px;
    color: #231f20;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
}

.about-section {
    background: #231f20;
    padding: 80px 120px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;

}

.about-image {
    width: 30%;
    border-radius: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.about-content {
    width: 60%;
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    text-align: justify;
}
.mobile-testi{
    display:none;
}
.mobile-testi img{
    width:100%;
}
/* SECTION */
.testimonial-section {
    position: relative;
    height: 65vh;
    background: url("../image/32.png") no-repeat center/cover;
    overflow: hidden;
    margin: 50px 0;
}

/* DARK TEXTURE OVERLAY */
.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
}

/* CONTAINER */
.testimonial-wrap {
    position: relative;
    z-index: 2;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: flex-end;
    padding: 40px 20px 10px;
}

/* LEFT CONTENT */
.testimonial-left {
    flex: 1;
    color: #fff;
    max-width: 70%;
    margin: 0 auto;
}

/* TEXT SLIDER */
.testimonial-left p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    text-align: left;
}

/* RIGHT IMAGE (STATIC) */
.testimonial-right {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
}

.testimonial-right img {
    height: 100%;
    object-fit: cover;
}

/* DOTS POSITION LIKE IMAGE */
.owl-dots {
    position: absolute;
    right: 0;
    bottom: 0;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    background: #888;
    display: block;
    border-radius: 50%;
    margin: 6px;
}

.owl-dot.active span {
    background: #fff;
}

/* Footer Section */
.footer-section {
    padding: 30px 0 0;
    background-color: #ffffff;
}

/* .footer-main-container {
    max-width: 1650px;
    margin: 0 auto;
} */

/* Left Title */
.footer-title {
    font-size: 60px;
    line-height: 60px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 500;
    overflow:hidden;
}

/* Center Content */
.footer-name {
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 500;
}

.footer-role {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 500;

}

/* Right Content */
.footer-contact {
    font-size: 18px;
    line-height: 36px;
    color: #000000;
    font-weight: 500;
    text-decoration: none;
}

.footer-contact {
    margin-bottom: 0 !important;
}

.footer-bottom {
    padding-top: 15px;
    border-top: 2px solid #000000;
    margin-top: 30px;
}

/* Bottom Section */
.footer-bottom p {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    font-weight: 500;
}

.footer-bottom a {
    text-decoration: none;
    color: #EF7F1A;
}

@media (max-width: 1500px) {
    .about-image {
        width: 40%;
    }

    .about-section {
        padding: 60px 40px;
    }
}

@media (max-width: 1024px) {
    .about-section {
        flex-wrap: wrap;
    }

    .about-image {
        width: 80%;
    }

    .about-content {
        width: 100%;
        text-align: left;
    }
}

/* Tablet: 3 per row */
@media (max-width: 991px) {
    .img-card {
        flex: 0 0 33.33% !important;
        max-width: 33.33% !important;
    }

    .about-section {
        padding: 35px;
    }

    .testimonial-section {
        height: auto;
    }

    .testimonial-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-left {
        max-width: 100%;
    }

    .testimonial-right {
        position: relative;
        height: auto;
        margin-top: 30px;
    }

    .testimonial-right img {
        width: 100%;
        height: auto;
    }

    .owl-dots {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-title {
        font-size: 32px;
        line-height: 35px;
    }

}

/* Mobile: 2 per row */
@media (max-width: 575px) {
    .mobile-testi{
        display:block;
    }
    .testimonial-section {
    position: relative;
    /*height: 65vh;*/
    background: #000000;
    overflow: hidden;
    margin: 0 0 10px;
}
    .logo-mark {
        width: 30%;
    }
    header.scrolled .logo-mark {
        width: 30%;
    }
    header nav{
        width:100%;
    }
    .nav-link-about {
        font-size:16px;
    }
    .img-card {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .about-section {
        padding: 25px;
        border-radius: 30px;
    }
    .logo-caption a{
        font-size:12px;
    }
}