:root {
    --green: #1a5c28;
    --gold: #c9a227;
    --dark-green: #143d1c;
    --light-green: #e8f5e9;
    --white: #ffffff;
    --text-dark: #222222;
    --text-muted: #555555;
    --border: #e0e0e0;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}
/*.container-section{  */
/*    max-width: 1140px;           */
/*}  */

/* ===== TOP BAR ===== */  
.topbar {
    background: var(--green);
    color: #fff;
    font-size: 13px;
    padding: 7px 0;
}

.topbar a {
    text-decoration: none;
    color: #debf62;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.topbar a:hover {
    color: var(--gold);
}

.topbar .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: #debf62;
    color: #1a5c28;
    transition: background 0.3s;
    font-size: 14px;
}

.topbar .social-icons a:hover {
    background: var(--gold);
}

.topbar .info-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.topbar .info-items span {
    color: #debf62;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== NAVBAR ===== */
.navbar-main {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    width: 180px;
}

.navbar-main .nav-link {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.4px;
    color: var(--green) !important;
    text-transform: uppercase;
    padding: 8px 12px !important;
    position: relative;
    transition: color 0.3s;
}

.navbar-main .nav-link.active,
.navbar-main .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.navbar-main .nav-link:hover::after {
    width: calc(100% - 24px);
}

/* Desktop right wrap — stacked */
.navbar-right-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.btn-enquire {
    text-align: center;
    width: 100%;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    font-size: 14px;
    padding: 9px 22px;
    border: none;
    transition: background 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-enquire:hover {
    background: var(--gold);
    color: #fff;
}

.lang-select {
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    padding: 9px 22px;
    color: var(--text-dark);
    cursor: pointer;
    width: 100%;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile right wrap — enquire + lang stacked */
.mobile-right-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.mobile-right-wrap .btn-enquire {
    font-size: 13px;
    padding: 7px 14px;
    white-space: nowrap;
}

.mobile-right-wrap .lang-select {
    width: 100%;
    font-size: 12px;
    padding: 4px 8px;
}

/* ===== HERO VIDEO ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
   background-color: #040202;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
  font-family: "Poppins", Sans-serif;
    font-size: 50px;
    font-weight: 600;  
    color: #DEBF62;
}

.hero-content h2 {
  font-family: "Poppins", Sans-serif;
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: #FFFFFF;
}

.hero-content h3 {
  font-family: "Poppins", Sans-serif;
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: #DEBF62;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== INTRO SECTION ===== */
.intro-text-block {
    padding: 50px 0 30px;
    background: #fff;
}

.intro-text-block p {
    font-size: 16px;
    color: #000;
    line-height: 24px;
    text-align: justify;
}

.intro-features-bg {
    background-image: url('../img/Proven-supply.avif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
}

.intro-features-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.intro-features-inner {
    position: relative;
    z-index: 2;
}

.intro-feat-card {
    box-shadow: 0 0px 12px #debf62e6;
    border-radius: 14px;
    padding: 32px 28px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
    height: 100%;
}

.intro-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    color: #fff;
}

.intro-feat-item:last-child {
    margin-bottom: 0;
}

.intro-feat-item i {
    color: var(--gold);
    font-size: 25px;
    margin-top: 2px;
    flex-shrink: 0;
}

.intro-feat-item span {
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.5;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #026932;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

/* ===== PRODUCT CARDS ===== */
.products-section {
    padding: 70px 0;
    background: #fff;
}

.product-card { 
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-img-wrap {
    overflow: hidden;
}

.product-card img {
    width: 100%;  
    object-fit: cover;
    /*transition: transform 0.4s ease;*/
    display: block;
}
   
.product-card:hover img {
    /*transform: scale(1.06);*/
}

.product-card .card-body {
    padding: 16px;
    flex: 1;
}

.product-card h5 {
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #026932;
    margin-bottom:20px;  
    text-align:center; 
}

/* ===== PRODUCT TABLE — EXACT MATCH SS ===== */
.product-table {
    width: 100%;
    font-size: 13.5px;
    border-collapse: collapse;
    border: 1px solid #cec6c6;
}

.product-table tr:nth-child(odd) td {
    background: #f0f0f0;
}

.product-table tr:nth-child(even) td {
    background: #ffffff;
}

.product-table tr td {
    color: #000;
    padding: 13px 14px;
    border: 1px solid #cec6c6;
    vertical-align: middle;
    line-height: 1.45;
}

.product-table tr td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 40%;
}

.product-table tr td:last-child {
    color: #000;
}

/* ===== CARD ACTIONS — buttons with gold shadow ===== */
.card-actions {
    display: flex;
    gap: 10px;
    padding: 16px 16px 18px;
    background: #f8f8f8;
    margin-top: auto;
    justify-content: center;
}

.btn-quote {
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    padding: 10px 22px;
    /*flex: 1;*/
    transition: background 0.3s, box-shadow 0.3s;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0px 0px 10px 0px #DEBF62;
    cursor: pointer;
}

.btn-quote:hover {
    background: var(--dark-green);
    color: #fff;
    box-shadow: 0 6px 18px rgba(201, 162, 39, 0.70);
}

.btn-call {
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    padding: 10px 22px;
    flex: 1;
    transition: background 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.50);
    cursor: pointer;
}

.btn-call:hover {
    background: var(--dark-green);
    color: #fff;
    box-shadow: 0 6px 18px rgba(201, 162, 39, 0.70);
}

/* ===== WHY AROK ===== */
.why-section {
    position: relative;
    padding: 80px 0;
    background: url('../img/Proven-supply.avif') center/cover no-repeat fixed;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(30, 20, 0, 0.80));
}

.why-section .inner {
    position: relative;
    z-index: 2;
}

.why-section .section-title {
    color: #fff;
    text-align: center;
    display: block;
}

.why-section .section-divider {
    background: var(--gold);
}

.why-card {
    border: 1.5px solid rgba(201, 162, 39, 0.4);
    border-radius: 12px;
    padding: 19px 6px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    height: 100%;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.why-card:hover {
    box-shadow: 0 4px 12px #debf626b;
    background: rgba(201, 162, 39, 0.12);
    transform: translateY(-6px);
    border-color: var(--gold);
}

.why-card .why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card .why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card p {
    font-family: "Poppins", Sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
}

.anim-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-visible {
    opacity: 1 !important;
    transform: none !important;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.about-card {
    box-shadow: 0 0px 12px #debf62e6;
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.about-card img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    margin-bottom: 14px;
}

.about-card h5 {
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #026932;
}

.about-card p {
    text-align: justify;
    font-size: 16px;
    color: #000;
    line-height: 1.75;
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 70px 0;
    background: #fff;
}

.service-card {
    background: var(--light-green);
    border-radius: 8px;
    padding: 36px 28px;
    height: 100%;
    border-left: 4px solid var(--green);
    transition: background 0.3s, transform 0.3s;
}

.service-card:hover {
    background: var(--green);
    transform: translateY(-5px);
}

.service-card:hover h5,
.service-card:hover p {
    color: #fff;
}

.service-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 18px;
}

.service-card:hover img {
    filter: brightness(0) invert(1);
}

.service-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 14px;
    transition: color 0.3s;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    transition: color 0.3s;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 70px 0;
    background: #f4f4f4;
}

.team-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
}

.team-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ===== CSR SECTION ===== */
.csr-section {
    padding: 70px 0;
    background: #fdfaf5;
}

.csr-text-card {
    border: 1.5px solid #e8d9a0;
    border-radius: 14px;
    padding: 40px 36px;
    height: 100%;
    display: flex;
    align-items: center;
}

.csr-text-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.9;
    text-align: justify;
    margin: 0;
}

.csr-slider-card {
    border: 1.5px solid #e8d9a0;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    min-height: 340px;
    position: relative;
}

.csr-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.csr-slide {
    min-width: 100%;
    height: 340px;
}

.csr-slide img {
    width: 100%;
}

.csr-prev,
.csr-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csr-prev {
    left: 10px;
}

.csr-next {
    right: 10px;
}

.csr-prev:hover,
.csr-next:hover {
    background: var(--gold);
    color: #fff;
}

/* ===== INTERNATIONAL SECTION ===== */
.intl-section .section-title {
    color: #fff;
}

.intl-section .section-divider {
    background: var(--gold);
}

.intl-section p {
    text-align: justify;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.85;
}

.intl-section img {
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== CERTIFICATIONS ===== */
.cert-section {
    background: #f9f9f9;
    padding: 50px 0;
}

.cert-logo {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s;
    height: 100px;
}

.cert-logo:hover {
    transform: scale(1.05);
}

.cert-logo img {
    max-height: 70px;
    max-width: 140px;
    object-fit: contain;
}

/* ===== CONTACT ===== */
.contact-box {
    padding: 80px 0;
    background: url('../img/contact-banner.jpeg') center/cover no-repeat fixed !important;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 15, 0.65);
}

.contact-inner {
    position: relative;
    z-index: 2;
}

.contact-box {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    padding: 44px 40px;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.contact-box .form-control,
.contact-box .form-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    padding: 12px 16px;
    margin-bottom: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-box .form-control:focus,
.contact-box .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26, 92, 40, 0.12);
    outline: none;
}

.contact-box .form-control::placeholder {
    color: #aaa;
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-box .form-control::placeholder {
    font-size: 13.5px;
}

.btn-submit {
    width: 100px !important;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px;
    border: none;
    border-radius: 8px;
    width: 100%;
    transition: background 0.3s;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: var(--gold);
    color: #fff;
}

/* ===== FOOTER ===== */
.footer-info {
    background-color: #026932;
    padding: 50px 0 30px;
    color: #c9a227;
}

.footer-info h6 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info p,
.footer-info li {
    font-weight: 500;
    color: #c9a227;
    font-size: 16;
    line-height: 1.8;
}

.footer-info a {
    font-weight: 500;
    color: #c9a227;
    text-decoration: none;
}

.footer-info a:hover {
    font-weight: 500;
    color: var(--gold);
}

.footer-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info ul li a::before {
    color: var(--gold);
}

.social-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: #c9a227;
    color: #026932;
    margin-right: 8px;
    font-size: 16px;
    transition: background 0.3s;
}

.social-footer a:hover {
    background: var(--gold);
}

footer.bottom {
    background: var(--dark-green);
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 0;
    font-size: 13px;
    text-align: center;
}

footer.bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    border: none;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.scroll-top:hover {
    background: var(--gold);
}

.scroll-top.show {
    display: flex;
}

/* ===== RESPONSIVE ===== */
@media(max-width:991px) {
    .topbar .info-items {
        justify-content: center;
    }

    .hero-section {
        height: 70vh;
    }
}

@media(max-width:768px) {
    .topbar {
        display: none;
        font-size: 11px;
    }

    .hero-section {
        height: 60vh;
        min-height: 420px;
    }

    .contact-box {
        padding: 30px 20px;
    }
}

.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: left;
}

.custom-list i {
    font-size: 16px;
    font-weight: 600;
    color: #c9a227;
}

.custom-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.our-service-bg {
    background-image: url('../img/our-service.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
}

.our-service-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Large desktops (1400px+) */
@media (min-width: 1400px) {
    .topbar {
        padding: 8px 0;
    }

    .topbar .info-items span,
    .topbar a {
        font-size: 15px;
    }

    .topbar .info-items {
        gap: 24px;
    }

    .navbar-brand img {
        width: 200px;
    }

    .navbar-main .nav-link {
        font-size: 16px;
        padding: 8px 14px !important;
    }

    .btn-enquire {
        font-size: 15px;
        padding: 10px 26px;
    }

    .lang-select {
        font-size: 14px;
        padding: 10px 14px;
    }
}

/* Standard desktops (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .navbar-brand img {
        width: 180px;
    }

    .navbar-main .nav-link {
        font-size: 15px;
        padding: 8px 10px !important;
    }

    .btn-enquire {
        font-size: 14px;
        padding: 9px 20px;
    }

    .lang-select {
        font-size: 13px;
        padding: 9px 10px;
    }

    .topbar .info-items {
        gap: 18px;
    }

    .topbar .info-items span,
    .topbar a {
        font-size: 14px;
    }
}

/* Small desktops / large laptops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-brand img {
        width: 155px;
    }

    .navbar-main .nav-link {
        font-size: 13px;
        padding: 8px 7px !important;
        letter-spacing: 0.2px;
    }

    .btn-enquire {
        font-size: 12px;
        padding: 8px 14px;
        white-space: nowrap;
    }

    .lang-select {
        font-size: 12px;
        padding: 8px 8px;
    }

    .navbar-right-wrap {
        gap: 5px;
    }

    .topbar .info-items {
        gap: 12px;
    }

    .topbar .info-items span,
    .topbar a {
        font-size: 13px;
    }

    .topbar .social-icons a {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}

/* Tablets / landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .topbar {
        display: block;
        padding: 6px 0;
    }

    .topbar .info-items {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .topbar .info-items span,
    .topbar a {
        font-size: 12px;
    }

    .topbar .social-icons {
        justify-content: center;
        margin-top: 4px;
    }

    .topbar .social-icons a {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .navbar-brand img {
        width: 150px;
    }

    .navbar-main {
        padding: 6px 0;
    }

    .mobile-right-wrap {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .mobile-right-wrap .btn-enquire {
        font-size: 12px;
        padding: 7px 12px;
    }

    .mobile-right-wrap .lang-select {
        font-size: 12px;
        padding: 6px 8px;
        width: auto;
    }

    #navMenu .navbar-nav {
        padding: 10px 0;
    }

    #navMenu .nav-link {
        font-size: 14px;
        padding: 8px 12px !important;
        border-bottom: 1px solid #f0f0f0;
    }

    #navMenu .navbar-right-wrap {
        display: none !important;
    }
}

/* Extra wide / 4K (1600px+) */
@media (min-width: 1600px) {

    .topbar .info-items span,
    .topbar a {
        font-size: 16px;
    }

    .topbar .info-items {
        gap: 30px;
    }

    .topbar .social-icons a {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .navbar-brand img {
        width: 200px;
    }

    .navbar-main .nav-link {
        font-size: 16px;
        padding: 8px 12px !important;
    }

    .btn-enquire {
        font-size: 16px;
        padding: 11px 30px;
    }

    .lang-select {
        font-size: 15px;
        padding: 10px 16px;
    }
}

/* Prevent navbar collapse overflow on mid-sizes */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        align-items: center;
    }

    .navbar-right-wrap {
        flex-shrink: 0;
        min-width: 140px;
    }

    .navbar-nav {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 59px;
        width: 110px;
    }
}  
/* ===== INTRO FEATURES ANIMATION ===== */
.intro-anim[data-anim="left"] {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro-anim[data-anim="right"] {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro-anim.intro-anim-visible {
    opacity: 1;
    transform: translateX(0);
}

.btn-submit {
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    padding: 10px 22px;
    /*flex: 1;*/
    transition: background 0.3s, box-shadow 0.3s;
    text-decoration: none;
    text-align: center;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0px 0px 10px 0px #DEBF62;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #DEBF62;
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(201, 162, 39, 0.70);
}
 
      #google_translate_element { display:none !important; }
      .goog-te-banner-frame { display:none !important; }
      .skiptranslate { display:none !important; }        
      body { top:0 !important; }
      #goog-gt-tt { display:none !important; }
      .goog-tooltip { display:none !important; }
      .goog-text-highlight { background:none !important; box-shadow:none !important; }
  