/* --- CSS  --- */
:root {
    --primary-blue: #0A2647;
    --secondary-blue: #144272;
    --accent-gold: #C5A059;
    --text-dark: #2C3E50;
    --text-light: #5A6A7E;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --container-width: 1280px;
    --font-heading: 'Playfair', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
   
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

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

/* --- Utility Classes --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding {
    padding: clamp(60px, 8vw, 100px) 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: clamp(40px, 6vw, 60px);
    height: 3px;
    background: var(--accent-gold);
    margin: 10px auto 0;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    padding: 0 15px;
}

.section-subtitle {
    color: #666;
    font-size: clamp(1rem, 3vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: clamp(12px, 3vw, 14px) clamp(24px, 4vw, 32px);
    background-color: var(--accent-gold);
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--accent-gold);
    cursor: pointer;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

/* --- Navigation (Fully Responsive) --- */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: clamp(70px, 10vh, 80px);
    padding: 0 clamp(15px, 4vw, 40px);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
    margin-right: 10px;
}

.logo span { 
    color: var(--accent-gold); 
    display: inline-block;     
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
    transition: 0.3s;
    z-index: 10001;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-toggle.active {
    color: var(--white);
    position: fixed;
    right: 20px;
    transform: rotate(180deg);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 12px;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 70%;
}

/* Language Desktop */
.lang-desktop {
    margin-left: 10px;
}

/* --- Mobile Menu (768px and below) --- */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 38, 71, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        clip-path: circle(0% at 90% 5%);
        transition: 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 10000;
        pointer-events: none;
        margin: 0;
        padding: 20px;
    }
    
    .nav-menu.active {
        clip-path: circle(150% at 90% 5%);
        pointer-events: all;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(30px);
        transition: 0.5s;
        transition-delay: calc(0.1s * var(--i, 0));
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu li:nth-child(1) { --i: 1; }
    .nav-menu li:nth-child(2) { --i: 2; }
    .nav-menu li:nth-child(3) { --i: 3; }
    .nav-menu li:nth-child(4) { --i: 4; }
    .nav-menu li:nth-child(5) { --i: 5; }
    .nav-menu li:nth-child(6) { --i: 6; }
    .nav-menu li:nth-child(7) { --i: 7; }
    .nav-menu li:nth-child(8) { --i: 8; }
    
    .nav-link {
        font-size: 1.3rem;
        color: var(--white);
        padding: 10px 20px;
    }
    
    .nav-link::after {
        background: var(--accent-gold);
        bottom: 0;
    }
    
    .nav-link:hover {
        color: var(--accent-gold);
    }
}

/* Disable Scroll */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* --- Hero Section  --- */
#hero {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(rgba(10, 38, 71, 0.8), rgba(10, 38, 71, 0.6));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 100px 0 60px;
}

.hero-content {
    width: 100%;
    padding: 0 15px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.hero-buttons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
}

/* --- About Section  --- */
#about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(30px, 6vw, 60px);
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: clamp(70px, 8vw, 100px);
    height: clamp(70px, 8vw, 100px);
    border-top: 5px solid var(--accent-gold);
    border-left: 5px solid var(--accent-gold);
    z-index: -1;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 5vw, 2rem);
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
    text-indent: 40px;
    font-size: clamp(0.95rem, 3vw, 1rem);
}

/* --- Mission & Vision  --- */
#mission-vision {
    background-color: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(30px, 5vw, 40px);
}

.mv-card {
    background: var(--white);
    padding: clamp(30px, 5vw, 40px);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    height: 100%;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent-gold);
}

.mv-icon {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.mv-card h4 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.mv-card p {
    text-align: justify;
    text-indent: 40px;
    font-size: clamp(0.95rem, 3vw, 1rem);
}

/* --- Services Section  --- */
#services {
    background-color: #fff;
    padding: clamp(60px, 8vw, 80px) 0;
    position: relative;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(40px, 6vw, 60px);
    padding: 0 15px;
}

.services-intro p {
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.8;
    color: #555;
    padding: clamp(15px, 4vw, 20px);
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.services-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: clamp(30px, 5vw, 40px);
    margin-top: 40px;
    border-left: 4px solid #D4AF37;
}

.info-box {
    padding: clamp(20px, 4vw, 25px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #eee;
}

.info-box h4 {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.1rem, 3.5vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.info-box h4 i {
    color: #D4AF37;
    font-size: 1.2rem;
}

.info-box p {
    color: #666;
    font-size: clamp(0.95rem, 3vw, 1rem);
    line-height: 1.6;
    margin: 0;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    position: relative;
    height: clamp(200px, 30vw, 250px);
    overflow: hidden;
}

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

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-content {
    padding: clamp(20px, 4vw, 25px);
}

.service-card-content h3 {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.service-card-content h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #D4AF37;
    bottom: 0;
    left: 0;
}

.service-card-content p {
    color: #666;
    font-size: clamp(0.95rem, 3vw, 1rem);
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: justify;
    text-indent: 40px;
}

/* --- Stats Section (Responsive) --- */
#stats {
    background: linear-gradient(rgba(10, 38, 71, 0.95), rgba(10, 38, 71, 0.95));
    background-attachment: fixed;
    background-size: cover;
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(30px, 5vw, 40px);
}

.stat-item h3 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* --- Products Section  --- */
#products {
    background-color: #fff;
    padding: clamp(50px, 7vw, 80px) 0;
}

.single-column-products {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.product-card-single {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.product-card-single:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.product-row {
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
}

.product-image-col {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

.product-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: clamp(350px, 45vw, 400px);
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.product-card-single:hover .product-img {
    transform: scale(1.05);
}

.product-category-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(212, 175, 55, 0.9);
    color: #fff;
    padding: clamp(6px, 2vw, 8px) clamp(15px, 3vw, 20px);
    border-radius: 30px;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-content-col {
    flex: 0 0 55%;
    max-width: 55%;
    padding: clamp(30px, 5vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #D4AF37;
}

.product-description p {
    color: #666;
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.product-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.1rem, 3.5vw, 1.2rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list li {
    color: #555;
    font-size: clamp(0.95rem, 3vw, 1rem);
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.product-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* --- CSR Section --- */
#csr {
    background-color: #f8f9fa;
    padding: clamp(60px, 8vw, 80px) 0;
}

.csr-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(40px, 6vw, 60px);
    padding: 0 15px;
}

.csr-intro p {
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.8;
    color: #555;
}

.csr-activity-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.csr-desc {
    color: #666;
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 0;
    text-align: justify;
    text-indent: 30px;
}

/* --- Careers Section  --- */
#careers .card {
    border-radius: 16px;
    transition: all 0.3s ease;
}

#careers .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.job-requirements-text ul,
.job-requirements-text ol {
    padding-left: 20px;
    margin-bottom: 0;
}

.job-requirements-text li {
    margin-bottom: 5px;
}

/* --- Contact Section  --- */
#contact {
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(30px, 5vw, 60px);
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info {
    background: var(--primary-blue);
    color: var(--white);
    padding: clamp(30px, 6vw, 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: clamp(20px, 4vw, 30px);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: clamp(20px, 4vw, 30px);
    gap: 15px;
}

.info-item i {
    color: var(--accent-gold);
    font-size: clamp(1.1rem, 3vw, 1.2rem);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-form {
    padding: clamp(30px, 6vw, 50px);
}

.form-group {
    margin-bottom: 20px;
}

.form-control,
.form-select {
    width: 100%;
    padding: clamp(12px, 3vw, 15px);
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition);
    font-size: clamp(0.95rem, 3vw, 1rem);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(10, 38, 71, 0.05);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* --- Footer  --- */
footer {
    background-color: var(--secondary-blue);
    color: var(--white);
    padding: clamp(40px, 6vw, 60px) 0 clamp(20px, 3vw, 30px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: clamp(30px, 5vw, 40px);
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-col h5 {
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: clamp(0.9rem, 2.5vw, 0.95rem);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}






/* Bootstrap 5 Grid Fixes */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* Utility Classes */
.h-100 { height: 100%; }
.w-100 { width: 100%; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }
.fw-bold { font-weight: 700; }
.fw-normal { font-weight: 400; }
.bg-white { background-color: #fff; }
.bg-light { background-color: #f8f9fa; }
.shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075); }
.shadow { box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); }
.rounded-4 { border-radius: 1rem; }
.overflow-hidden { overflow: hidden; }

/* --- IMAGE SIZE CONTROL FOR ALL DEVICES --- */
.service-card-image img,
.product-img,
.gallery-img,
.about-img img,
.csr-activity-card img,
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* About section image */
.about-img img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    width: auto;
    margin: 0 auto;
}

/* Product image */
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== DESKTOP LARGE (1200px and above) ===== */


.container {
    max-width: 1200px;
}

/* ----- PRODUCTS SECTION ----- */
.product-row {
    display: flex;
    flex-wrap: nowrap;
    min-height: 450px;
}

.product-image-col {
    flex: 0 0 45%;
    max-width: 45%;
}

.product-content-col {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 50px;
}

.product-image-wrapper {
    min-height: 450px;
    max-height: 500px;
}

.product-title {
    font-size: 2rem;
}

/* ----- SERVICES SECTION----- */
#services .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.service-card-image {
    height: 240px;
}

/* ----- CSR SECTION ----- */
#csr .row:has(.col-md-6) {
    display: flex !important;
    flex-wrap: nowrap !important;
}

#csr .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

/* Left Column */
#csr .col-md-6:first-child {
    padding-right: 20px;
}

#csr .col-md-6:first-child .row.g-2 {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -5px !important;
    margin-left: -5px !important;
}

/* Main image */
#csr .col-md-6:first-child .col-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
}

#csr .col-md-6:first-child .col-12 .img-wrapper {
    height: 350px !important;
    width: 100% !important;
    margin-bottom: 10px !important;
}

/* Sub images */
#csr .col-md-6:first-child .col-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
}

#csr .col-md-6:first-child .col-4 .img-wrapper {
    height: 150px !important;
    width: 100% !important;
}

/* Right Column */
#csr .col-md-6:last-child {
    display: flex !important;
    align-items: center !important;
    padding-left: 20px;
}

#csr .col-md-6:last-child .p-4 {
    padding: 40px !important;
    width: 100%;
}

#csr .col-md-6:last-child h4 {
    font-size: 1.8rem !important;
    font-family: 'Playfair Display', serif !important;
    color: #0A2647 !important;
    margin-bottom: 20px !important;
}

#csr .divider-sm {
    width: 70px !important;
    height: 4px !important;
    background: #C5A059 !important;
    margin: 0 0 25px 0 !important;
}

#csr .csr-desc {
    text-align: justify !important;
    line-height: 1.8 !important;
    font-size: 1.05rem !important;
    color: #555 !important;
}

/* ----- WORK SAFETY SECTION  ----- */
.py-5 .row.g-5 {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.py-5 .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

/* Left Column */
.py-5 .col-lg-6:first-child {
    padding-right: 25px;
}

.py-5 .col-lg-6:first-child .row.g-2 {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -10px !important;
    margin-left: -10px !important;
}

/* Main image */
.py-5 .col-lg-6:first-child .col-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin-bottom: 15px;
}

.py-5 .col-lg-6:first-child .col-12 .img-wrapper,
.py-5 .col-lg-6:first-child img[style*="height: 350px"] {
    height: 350px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 12px;
}

/* Sub images -  */
.py-5 .col-lg-6:first-child .col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.py-5 .col-lg-6:first-child .col-6 .img-wrapper,
.py-5 .col-lg-6:first-child img[style*="height: 200px"] {
    height: 200px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 10px;
}

/* Right Column */
.py-5 .col-lg-6:last-child {
    padding-left: 25px;
}

.py-5 .col-lg-6:last-child .row.g-3 {
    display: flex !important;
    flex-wrap: wrap !important;
}

.py-5 .col-lg-6:last-child .col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

.py-5 .col-lg-6:last-child .col-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

/* Info boxes */
.py-5 .col-lg-6:last-child .p-3.bg-white.border.rounded.shadow-sm {
    padding: 20px !important;
    height: 100%;
    border: 1px solid #eee !important;
    border-radius: 10px !important;
}

/* Check list */
.py-5 .col-lg-6:last-child .list-unstyled li {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 20px !important;
}

.py-5 .col-lg-6:last-child .bg-success {
    background-color: #C5A059 !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 15px !important;
    flex-shrink: 0 !important;
    color: white !important;
    font-weight: bold !important;
}

/* Title */
.py-5 .container.text-center h1.fw-bold {
    font-size: 2.5rem !important;
    font-family: 'Playfair Display', serif !important;
    color: #0A2647 !important;
}

.py-5 .container.text-center .mx-auto.mb-4 {
    width: 70px !important;
    height: 4px !important;
    background: #C5A059 !important;
}

/* ----- ABOUT SECTION - ----- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ----- MISSION SECTION ----- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ----- STATS SECTION  ----- */
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
}

/* ----- CONTACT SECTION ----- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

/* ----- FOOTER ----- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    text-align: left;
}


/* ===== DESKTOP SMALL (992px - 1199px) ===== */

@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    
    .logo span {
        display: none !important;
    }
    
    .logo {
        font-size: 1.5rem !important;
    }
    
    /* ----- NAVIGATION  ----- */
    .mobile-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        clip-path: none !important;
        height: auto !important;
        width: auto !important;
        pointer-events: all !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        gap: 5px !important;
    }
    
    .nav-link {
        font-size: 0.8rem !important;
        color: var(--text-dark) !important;
        padding: 5px 8px !important;
    }
    
    /* ----- LANGUAGE ----- */
    #lang-desktop {
        display: block !important;
        color: var(--accent-gold) !important;

    }
    
    .mobile-lang {
        display: none !important;
    }
    
    /* ----- PRODUCTS SECTION ----- */
    .product-row {
        min-height: 400px;
    }
    
    .product-image-wrapper {
        min-height: 400px !important;
        max-height: 450px !important;
    }
    
    .product-content-col {
        padding: 40px !important;
    }
    
    .product-title {
        font-size: 1.8rem !important;
    }
    
    /* ----- SERVICES SECTION ----- */
    .service-card-image {
        height: 200px;
    }
    
    .service-card-content h3 {
        font-size: 1.2rem;
    }
    .service-card-content p {
       text-indent: 40px;
     
    
    }
    
    /* ----- CSR SECTION ----- */
    #csr .col-md-6:first-child .col-12 .img-wrapper {
        height: 300px !important;
    }
    
    #csr .col-md-6:first-child .col-4 .img-wrapper {
        height: 130px !important;
    }
    
    #csr .col-md-6:last-child .p-4 {
        padding: 35px !important;
    }
    
    #csr .col-md-6:last-child h4 {
        font-size: 1.6rem !important;
    }
    
    /* ----- WORK SAFETY SECTION - ----- */
    .py-5 .col-lg-6:first-child .col-12 .img-wrapper,
    .py-5 .col-lg-6:first-child img[style*="height: 350px"] {
        height: 300px !important;
    }
    
    .py-5 .col-lg-6:first-child .col-6 .img-wrapper,
    .py-5 .col-lg-6:first-child img[style*="height: 200px"] {
        height: 170px !important;
    }
    
    /* ----- STATS SECTION -  ----- */
    .stats-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-around !important;
        gap: 15px !important;
    }
    
    .stat-item h3 {
        font-size: 2.2rem !important;
    }
    
    .stat-item p {
        font-size: 0.8rem !important;
    }
    
    /* ----- ABOUT SECTION -  ----- */
    .about-grid {
        gap: 40px;
    }
    
    .about-img::before {
        width: 80px;
        height: 80px;
    }
    
    /* ----- MISSION SECTION - ----- */
    .mv-grid {
        gap: 30px;
    }
    
    /* ----- CONTACT SECTION -  ----- */
    .contact-info {
        padding: 40px;
    }
    
    .contact-form {
        padding: 40px;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
    }
    
    /* ----- FOOTER  ----- */
    .footer-grid {
        gap: 30px;
    }
}


/* ===== TABLET (768px - 991px) ===== */

@media (max-width: 991px) and (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
  
    .logo span {
        display: inline-block !important;  
    }
    
    .logo {
        font-size: 1.2rem !important;  
    }
    
    /* ----- HAMBURGER MENU  ----- */
    .mobile-toggle {
        display: flex !important;
        color: var(--primary-blue);
    }
    
    .mobile-toggle.active {
        color: var(--white);
        position: fixed;
        right: 20px;
        z-index: 10001;
    }
    
    /* Navigation Menu - Mobile Style */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(10, 38, 71, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 25px !important;
        clip-path: circle(0% at 90% 5%) !important;
        transition: 0.6s cubic-bezier(0.65, 0, 0.35, 1) !important;
        z-index: 10000 !important;
        pointer-events: none !important;
        margin: 0 !important;
        padding: 20px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-menu.active {
        clip-path: circle(150% at 90% 5%) !important;
        pointer-events: all !important;
    }
    
    .nav-menu li {
        opacity: 0 !important;
        transform: translateY(30px) !important;
        transition: 0.5s !important;
        transition-delay: calc(0.1s * var(--i, 0)) !important;
    }
    
    .nav-menu.active li {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .nav-menu li:nth-child(1) { --i: 1; }
    .nav-menu li:nth-child(2) { --i: 2; }
    .nav-menu li:nth-child(3) { --i: 3; }
    .nav-menu li:nth-child(4) { --i: 4; }
    .nav-menu li:nth-child(5) { --i: 5; }
    .nav-menu li:nth-child(6) { --i: 6; }
    .nav-menu li:nth-child(7) { --i: 7; }
    .nav-menu li:nth-child(8) { --i: 8; }
    
    .nav-link {
        font-size: 1.2rem !important;
        color: var(--white) !important;
        padding: 10px 20px !important;
    }
    
    .nav-link::after {
        background: var(--accent-gold) !important;
    }
    
    .nav-link:hover {
        color: var(--accent-gold) !important;
    }
    
    /* ----- LANGUAGE - Hamburger Menu ----- */
.nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Tablet Language Dropdown */
.lang-tablet {
    display: block !important;
}

.lang-tablet .dropdown .btn-light {
    padding: 5px 12px !important;
    font-size: 0.75rem !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 20px !important;
    color: #c5a059 !important;
}

.lang-tablet .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    margin-top: 5px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border: none !important;
    background: #fff !important;
    min-width: 130px !important;
    z-index: 10001 !important;
}

.lang-tablet .dropdown-item {
    padding: 8px 16px !important;
    font-size: 0.8rem !important;
}

/* Hamburger Toggle */
.mobile-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px;
    height: 40px;
}

/* Desktop Language - disable */
.lang-desktop {
    display: none !important;
}


.mobile-lang {
    display: none !important;
}
    /* ----- LANGUAGE - Mobile Style ----- */
    .lang-desktop {
        display: none !important;
    }
    
    .mobile-lang {
        display: block !important;
    }
    
    .mobile-lang .d-flex {
        display: flex !important;
        gap: 15px !important;
        justify-content: center !important;
    }
    
    .mobile-lang .btn-outline-light {
        color: white !important;
        border-color: white !important;
        padding: 8px 25px !important;
        font-size: 0.9rem !important;
        border-radius: 30px !important;
    }
    
    .mobile-lang .btn-outline-light:hover {
        background: var(--accent-gold) !important;
        border-color: var(--accent-gold) !important;
    }
    
    /* ----- BODY NO-SCROLL ----- */
    body.no-scroll {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }

    /* ----- PRODUCTS SECTION - Tablet ----- */
    .product-card-single {
        margin-bottom: 30px !important;
        border-radius: 16px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.06) !important;
    }
    
    .product-row {
        flex-direction: column !important;
    }
    
    /* Image Column */
    .product-image-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .product-image-wrapper {
        min-height: 280px !important;
        max-height: 300px !important;
        width: 100% !important;
        background-color: #f8f8f8 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px !important;  
    }
    
    .product-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important; 
        object-position: center !important;
        transition: transform 0.5s ease !important;
    }
    
    .product-category-label {
        top: 15px !important;
        left: 15px !important;
        padding: 5px 14px !important;
        font-size: 0.75rem !important;
        z-index: 10 !important;
    }
    
    /* Content Column */
    .product-content-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 25px !important;
    }
    
    .product-title {
        font-size: 1.5rem !important;
        margin-bottom: 12px !important;
        padding-bottom: 10px !important;
    }
    
    .product-title::after {
        width: 45px !important;
        height: 3px !important;
    }
    
    .product-description p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
        text-align: justify !important;
        text-indent: 0 !important;
    }
    
    .product-details h4 {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
        padding-bottom: 6px !important;
    }
    
    .product-list li {
        font-size: 0.9rem !important;
        padding: 6px 0 !important;
        padding-left: 22px !important;
    }
    
    .product-list li:before {
        font-size: 0.9rem !important;
    }
    
    /* ----- SERVICES SECTION - Tablet 2 column ----- */
    #services .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-content h3 {
        font-size: 1.2rem;
    }
    
    .service-card-content p {
        text-indent: 30px !important;
    }
    
    /* ----- SERVICES INFO ----- */
      
    
     .services-info .info-box p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        text-align: justify !important;
        text-justify: inter-word !important;
        margin-bottom: 0 !important;
        color: #555 !important;
        letter-spacing: 0.3px !important;  
        word-break: break-word !important; 
        text-indent: 20px;
    }

   
    /* ===== CSR SECTION  ===== */
  
    
    
    /* CSR Card */
    #csr .row:has(.col-md-6) {
        display: flex !important;
        flex-direction: column !important;  
        gap: 20px !important;
        margin-bottom: 40px !important;
        background: #fff !important;
        border-radius: 20px !important;
        padding: 20px !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
    }
    
    
    #csr .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    

    #csr .col-md-6:first-child {
        padding-right: 0 !important;
    }
    
    /* Image Row */
    #csr .col-md-6:first-child .row.g-2 {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: -5px !important;
    }
    
    /* Main Image */
    #csr .col-md-6:first-child .col-12 {
        padding: 5px !important;
    }
    
    #csr .col-md-6:first-child .col-12 .img-wrapper {
        height: 280px !important;
        width: 100% !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
    }
    
    /* Sub Images */
    #csr .col-md-6:first-child .col-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
        padding: 5px !important;
    }
    
    #csr .col-md-6:first-child .col-4 .img-wrapper {
        height: 100px !important;
        width: 100% !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05) !important;
    }
    
    /* Images */
    #csr .gallery-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transition: transform 0.5s ease !important;
    }
    
    .img-wrapper:hover .gallery-img {
        transform: scale(1.1) !important;
    }
    
    /* ===== RIGHT COLUMN ===== */
    #csr .col-md-6:last-child {
        padding-left: 0 !important;
        display: block !important;  
    }
    
    #csr .col-md-6:last-child .p-4 {
        padding: 20px 10px !important;
        width: 100% !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    /* Title */
    #csr .col-md-6:last-child h4 {
        font-size: 1.4rem !important;
        font-family: 'Playfair Display', serif !important;
        color: #0A2647 !important;
        margin-bottom: 12px !important;
        font-weight: 700 !important;
    }
    
    /* Divider */
    #csr .divider-sm {
        width: 60px !important;
        height: 3px !important;
        background: #C5A059 !important;
        margin: 0 0 15px 0 !important;
    }
    
    /* Description */
    #csr .csr-desc {
        text-align: justify !important;
        line-height: 1.7 !important;
        font-size: 0.95rem !important;
        color: #555 !important;
        text-indent: 30px;
    }
    

    /* ===== WORK SAFETY SECTION - TABLET ===== */

    
    /* Main Row */
    .py-5 .row.g-5 {
        display: flex !important;
        flex-direction: column !important;  
        gap: 25px !important;
        margin-bottom: 40px !important;
        background: #fff !important;
        border-radius: 20px !important;
        padding: 20px !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
    }
    

    .py-5 .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* ===== LEFT COLUMN - Images  ===== */
    .py-5 .col-lg-6:first-child {
        padding-right: 0 !important;
    }
    
    /* Image Row */
    .py-5 .col-lg-6:first-child .row.g-2 {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: -5px !important;
    }
    
    /* Main Image */
    .py-5 .col-lg-6:first-child .col-12 {
        padding: 5px !important;
    }
    
    .py-5 .col-lg-6:first-child .col-12 .img-wrapper,
    .py-5 .col-lg-6:first-child img[style*="height: 350px"] {
        height: 280px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 16px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
    }
    
    /* Sub Images  */
    .py-5 .col-lg-6:first-child .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 5px !important;
    }
    
    .py-5 .col-lg-6:first-child .col-6 .img-wrapper,
    .py-5 .col-lg-6:first-child img[style*="height: 200px"] {
        height: 140px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05) !important;
    }
    
    /* ===== RIGHT COLUMN - Content ===== */
    .py-5 .col-lg-6:last-child {
        padding-left: 0 !important;
    }
    
    /* Content Wrapper */
    .py-5 .col-lg-6:last-child .p-4 {
        padding: 10px 5px !important;
        background: transparent !important;
    }
    
    /* Info Boxes Row */
    .py-5 .col-lg-6:last-child .row.g-3 {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: -5px !important;
    }
    
    /* Info Boxes */
    .py-5 .col-lg-6:last-child .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 5px !important;
    }
    
    .py-5 .col-lg-6:last-child .col-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 5px !important;
    }
    
    /* Info Box Styling */
    .py-5 .col-lg-6:last-child .p-3.bg-white.border.rounded.shadow-sm {
        padding: 18px !important;
        height: 100% !important;
        border: 1px solid #eee !important;
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.03) !important;
    }
    
    .py-5 .col-lg-6:last-child .p-3.bg-white.border.rounded.shadow-sm h6 {
        color: #C5A059 !important;
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
        letter-spacing: 1px !important;
    }
    
    .py-5 .col-lg-6:last-child .p-3.bg-white.border.rounded.shadow-sm p {
        font-size: 0.85rem !important;
        margin-bottom: 0 !important;
        color: #666 !important;
    }
    
    /* ===== H4 + Description ===== */
    .py-5 .col-lg-6:last-child h4.fw-bold {
        font-size: 1.3rem !important;
        font-family: 'Playfair Display', serif !important;
        color: #0A2647 !important;
        margin: 20px 0 10px 0 !important;
        padding: 0 5px !important;
    }
    
    .py-5 .col-lg-6:last-child p.text-muted.small.mb-4 {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: #666 !important;
        margin-bottom: 20px !important;
        padding: 0 5px !important;
    }
    
    /* ===== Check List ===== */
    .py-5 .col-lg-6:last-child .list-unstyled {
        padding: 0 5px !important;
    }
    
    .py-5 .col-lg-6:last-child .list-unstyled li {
        display: flex !important;
        align-items: flex-start !important;
        margin-bottom: 15px !important;
        gap: 12px !important;
    }
    
    .py-5 .col-lg-6:last-child .bg-success {
        background-color: #C5A059 !important;
        width: 22px !important;
        height: 22px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        color: white !important;
        font-size: 0.8rem !important;
    }
    
    .py-5 .col-lg-6:last-child .list-unstyled li strong {
        font-size: 0.9rem !important;
        display: block !important;
        margin-bottom: 3px !important;
    }
    
    .py-5 .col-lg-6:last-child .list-unstyled li p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        color: #777 !important;
        margin-bottom: 0 !important;
    }
    
    /* ===== Title ===== */
    .py-5 .container.text-center h1.fw-bold {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .py-5 .container.text-center .mx-auto.mb-4 {
        width: 60px !important;
        height: 3px !important;
        margin-bottom: 20px !important;
    }
    
    .py-5 .container.text-center p.text-muted.mx-auto {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* ----- STATS SECTION - Tablet  ----- */
    #stats .stats-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 30px 0 !important;
    }
    
    #stats .stat-item {
        flex: 0 0 auto !important;
        width: auto !important;
        padding: 0 2px !important;
    }
    
    #stats .stat-item h3 {
        font-size: 1.2rem !important;
        margin-bottom: 5px !important;
        white-space: nowrap !important;
    }
    
    #stats .stat-item p {
        font-size: 0.5rem !important;
        /* white-space: nowrap !important; */
        letter-spacing: 1px !important;
    }
    
    /* ----- ABOUT SECTION - Tablet (2 columns) ----- */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .about-img::before {
        width: 60px;
        height: 60px;
        top: -10px;
        left: -10px;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    /* ----- MISSION & VISION ----- */
    .mv-grid {
        display: flex !important;
        flex-direction: column !important;  /* 2 columns > 1 column */
        gap: 25px !important;
    }
    
    .mv-card {
        padding: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .mv-card h4 {
        font-size: 1.3rem !important;
        margin-bottom: 15px;
    }
    
    .mv-card p {
        font-size: 0.95rem !important;
        text-indent: 30px !important;
    }
    
    .mv-icon {
        font-size: 2rem !important;
        margin-bottom: 15px;
    }
    
    /* ----- CONTACT SECTION - Tablet (2 columns) ----- */
    .contact-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 25px;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 30px;
    }
    
  
    /* ===== CAREER SECTION - TABLET ===== */

    
    #careers .row {
        display: flex !important;
        flex-direction: column !important;  /* 2 columns > 1 column */
        gap: 25px !important;
    }
    
    #careers .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    #careers .card {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 16px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.06) !important;
    }
    
    #careers .card-body {
        padding: 25px !important;
    }
    
    #careers .card-body h4 {
        font-size: 1.3rem !important;
        color: #b08d4a !important;
        margin-bottom: 10px !important;
    }
    
    #careers .badge {
        display: inline-block !important;
        background: #f8f4eb !important;
        color: #666 !important;
        padding: 5px 12px !important;
        font-size: 0.8rem !important;
        border-radius: 20px !important;
        margin-bottom: 15px !important;
    }
    
    #careers .job-requirements-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: #666 !important;
        margin-bottom: 20px !important;
    }
    
    #careers .job-requirements-text ul,
    #careers .job-requirements-text ol {
        padding-left: 20px !important;
        margin-bottom: 0 !important;
    }
    
    #careers .job-requirements-text li {
        margin-bottom: 5px !important;
    }
    
    /* Form */
    #careers form {
        margin-top: 15px !important;
    }
    
    #careers .form-group {
        margin-bottom: 15px !important;
    }
    
    #careers .form-control-sm {
        padding: 10px !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
        border: 1px solid #ddd !important;
    }
    
    #careers .btn {
        background-color: #b08d4a !important;
        color: white !important;
        padding: 12px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
    }
    
    /* ----- FOOTER - Tablet (3 columns) ----- */
    .footer-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 25px;
    }
    
    .footer-col .logo {
        font-size: 1.1rem;
    }
    /* ----- HERO SECTION ----- */
    #hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem !important;  
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1rem !important;   
        max-width: 600px;
        margin-bottom: 30px;
    }
    
    .hero-buttons .btn {
        padding: 10px 28px !important;
        font-size: 0.9rem !important;
    }
}


/* ===== MOBILE (576px - 767px) ===== */

@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* ----- HERO ----- */
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* ----- ABOUT & MISSION - Mobile (1 column) ----- */
    .about-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img {
        order: -1;
    }
    
    /* ----- SERVICES - Mobile (1 column) ----- */
    #services .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .services-info .row {
        display: flex;
        flex-direction: column;
    }

    /* ===== PRODUCTS SECTION - MOBILE ===== */

    
    .product-card-single {
        margin-bottom: 30px !important;
        border-radius: 16px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.06) !important;
        background: #fff !important;
        overflow: hidden !important;
    }
    
    .product-row {
        display: flex !important;
        flex-direction: column !important;  
        gap: 0 !important;
    }
    
    /* ----- Image Column  ----- */
    .product-image-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .product-image-wrapper {
        min-height: 250px !important;
        max-height: 280px !important;
        width: 100% !important;
        background-color: #f8f8f8 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 15px !important;
    }
    
    .product-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important; 
        object-position: center !important;
    }
    
    .product-category-label {
        position: absolute !important;
        top: 15px !important;
        left: 15px !important;
        background: rgba(212, 175, 55, 0.9) !important;
        color: #fff !important;
        padding: 5px 12px !important;
        font-size: 0.7rem !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
        z-index: 10 !important;
    }
    
    /* ----- Content Column  ----- */
    .product-content-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 20px !important;
    }
    
    .product-title {
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        color: #000 !important;
        margin-bottom: 12px !important;
        padding-bottom: 8px !important;
        position: relative !important;
    }
    
    .product-title::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 40px !important;
        height: 3px !important;
        background: #D4AF37 !important;
    }
    
    .product-description p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
        text-align: justify !important;
        color: #666 !important;
    }
    
    .product-details h4 {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #333 !important;
        margin-bottom: 12px !important;
        padding-bottom: 6px !important;
        border-bottom: 1px solid #eee !important;
    }
    
    .product-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .product-list li {
        color: #555 !important;
        font-size: 0.85rem !important;
        padding: 6px 0 !important;
        padding-left: 22px !important;
        position: relative !important;
        border-bottom: 1px dashed #f0f0f0 !important;
    }
    
    .product-list li:before {
        content: '✓' !important;
        position: absolute !important;
        left: 0 !important;
        color: #D4AF37 !important;
        font-weight: bold !important;
    }
    
    .product-list li:last-child {
        border-bottom: none !important;
    }
    
    /* ----- CSR - Mobile (1 column) ----- */
    #csr .row:has(.col-md-6) {
        flex-direction: column !important;
    }
    
    #csr .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    #csr .col-md-6:first-child {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    #csr .col-md-6:first-child .col-12 .img-wrapper {
        height: 250px !important;
    }
    
    #csr .col-md-6:first-child .col-4 .img-wrapper {
        height: 100px !important;
    }
    
    #csr .col-md-6:last-child {
        padding-left: 0;
    }
    
    /* ----- WORK SAFETY - Mobile (1 column) ----- */
    .py-5 .row.g-5 {
        flex-direction: column !important;
    }
    
    .py-5 .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .py-5 .col-lg-6:first-child {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .py-5 .col-lg-6:first-child .col-12 .img-wrapper,
    .py-5 .col-lg-6:first-child img[style*="height: 350px"] {
        height: 250px !important;
    }
    
    .py-5 .col-lg-6:first-child .col-6 .img-wrapper,
    .py-5 .col-lg-6:first-child img[style*="height: 200px"] {
        height: 130px !important;
    }
    
    .py-5 .col-lg-6:last-child {
        padding-left: 0;
    }
    
    /* ----- STATS - Mobile (2 columns) ----- */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .stat-item h3 {
        font-size: 1.5rem !important;
    }
    .stat-item p{
        font-size: 0.5rem !important;
    }
    
    /* ----- CONTACT - Mobile (1 column) ----- */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info {
        border-radius: 16px 16px 0 0;
    }
    
    /* ----- CAREERS - Mobile (1 column) ----- */
    #careers .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* ----- FOOTER - Mobile (1 column) ----- */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    .footer-col:nth-child(3) {
    display: none !important;
}
}


/* ===== SMALL MOBILE (375px - 575px) ===== */

@media (max-width: 575px) {
    .container {
        padding: 0 10px !important;
    }
    .logo {
        font-size: 0.85rem !important;
    }
    
    /* Mobile Language Item */
    .mobile-lang-item {
        list-style: none !important;
        margin-top: 30px !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .mobile-lang-item .btn-light {
        background: transparent !important;
        border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
        color: white !important;
        padding: 8px 25px !important;
        border-radius: 30px !important;
        font-size: 0.9rem !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
    }
    
    .mobile-lang-item .btn-light i {
        font-size: 0.9rem !important;
        color: white !important;
    }
    
    .mobile-lang-item .btn-light span {
        color: white !important;
    }
    
    .mobile-lang-item .btn-light:hover {
        background: var(--accent-gold) !important;
        border-color: var(--accent-gold) !important;
    }
    
    .mobile-lang-item .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 90% !important;
        margin: 10px auto !important;
        background: white !important;
        border-radius: 12px !important;
    }
    
    /* Navbar Language disable */
    .lang-tablet {
        display: none !important;
    }
          
    
    
    
    /* ----- HERO SECTION ----- */
    #hero {
        min-height: 70vh;
        padding: 80px 0 50px;
    }
    
    .hero-content h1 {
        font-size: 1.3rem !important;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 0.85rem !important;
        margin-bottom: 25px;
    }
    
    .hero-buttons .btn {
        padding: 8px 24px !important;
        font-size: 0.8rem !important;
    }
    
    /* ----- SECTION HEADER ----- */
    .section-header h2 {
        font-size: 1.5rem !important;
    }
    
    .section-header p {
        font-size: 0.85rem !important;
    }
    
    /* ----- ABOUT SECTION ----- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-img::before {
        width: 50px;
        height: 50px;
        top: -10px;
        left: -10px;
    }
    
    .about-text h3 {
        font-size: 1.4rem !important;
    }
    
    .about-text p {
        text-indent: 0 !important;
        font-size: 0.9rem !important;
    }
    
    /* ----- MISSION & VISION ----- */
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mv-card {
        padding: 25px !important;
    }
    
    .mv-card h4 {
        font-size: 1.2rem !important;
    }
    
    .mv-card p {
        text-indent: 0 !important;
        font-size: 0.85rem !important;
    }
    
    /* ----- SERVICES CARDS ----- */
    #services .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .service-card-image {
        height: 180px !important;
    }
    
    .service-card-content {
        padding: 18px !important;
    }
    
    .service-card-content h3 {
        font-size: 1.1rem !important;
    }
    
    .service-card-content p {
        text-indent: 0 !important;
        font-size: 0.85rem !important;
    }
    
    /* ----- SERVICES INFO ----- */
    .services-info {
        padding: 20px !important;
    }
    
    .services-info .row {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .services-info .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .services-info .info-box {
        padding: 20px !important;
    }
    
    .services-info .info-box h4 {
        font-size: 1rem !important;
    }
    
    .services-info .info-box p {
        font-size: 0.85rem !important;
    }
    
    /* ----- PRODUCTS SECTION ----- */
    .product-card-single {
        margin-bottom: 25px !important;
    }
    
    .product-image-wrapper {
        min-height: 200px !important;
        max-height: 220px !important;
        padding: 10px !important;
    }
    
    .product-category-label {
        top: 10px !important;
        left: 10px !important;
        padding: 4px 10px !important;
        font-size: 0.65rem !important;
    }
    
    .product-content-col {
        padding: 15px !important;
    }
    
    .product-title {
        font-size: 1.1rem !important;
    }
    
    .product-title::after {
        width: 35px !important;
        height: 2px !important;
    }
    
    .product-description p {
        font-size: 0.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .product-details h4 {
        font-size: 0.95rem !important;
    }
    
    .product-list li {
        font-size: 0.8rem !important;
        padding: 5px 0 !important;
        padding-left: 20px !important;
    }
    
    /* ----- CSR SECTION ----- */
    #csr .row:has(.col-md-6) {
        padding: 15px !important;
        gap: 15px !important;
    }
    
    #csr .col-md-6:first-child .col-12 .img-wrapper {
        height: 200px !important;
    }
    
    #csr .col-md-6:first-child .col-4 .img-wrapper {
        height: 70px !important;
    }
    
    #csr .col-md-6:last-child .p-4 {
        padding: 10px 5px !important;
    }
    
    #csr .col-md-6:last-child h4 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }
    
    #csr .divider-sm {
        width: 50px !important;
        height: 2px !important;
        margin-bottom: 12px !important;
    }
    
    #csr .csr-desc {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }
    
    /* ----- WORK SAFETY SECTION ----- */
    .py-5 .row.g-5 {
        padding: 15px !important;
        gap: 20px !important;
    }
    
    .py-5 .col-lg-6:first-child .col-12 .img-wrapper,
    .py-5 .col-lg-6:first-child img[style*="height: 350px"] {
        height: 200px !important;
    }
    
    .py-5 .col-lg-6:first-child .col-6 .img-wrapper,
    .py-5 .col-lg-6:first-child img[style*="height: 200px"] {
        height: 100px !important;
    }
    
    .py-5 .col-lg-6:last-child .p-3.bg-white.border.rounded.shadow-sm {
        padding: 15px !important;
    }
    
    .py-5 .col-lg-6:last-child h4.fw-bold {
        font-size: 1.1rem !important;
        margin: 15px 0 8px !important;
    }
    
    .py-5 .col-lg-6:last-child p.text-muted.small.mb-4 {
        font-size: 0.8rem !important;
    }
    
    .py-5 .col-lg-6:last-child .list-unstyled li {
        margin-bottom: 12px !important;
        gap: 10px !important;
    }
    
    .py-5 .col-lg-6:last-child .list-unstyled li strong {
        font-size: 0.85rem !important;
    }
    
    .py-5 .col-lg-6:last-child .list-unstyled li p {
        font-size: 0.75rem !important;
    }
    
    .py-5 .container.text-center h1.fw-bold {
        font-size: 1.5rem !important;
    }
    
    /* ----- STATS SECTION ----- */
    #stats .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px 0 !important;
    }
    
    #stats .stat-item h3 {
        font-size: 1rem !important;
    }
    
    #stats .stat-item p {
        font-size: 0.5rem !important;
    }
    
    /* ----- CAREER SECTION ----- */
    #careers .card-body {
        padding: 20px !important;
    }
    
    #careers .card-body h4 {
        font-size: 1.1rem !important;
    }
    
    #careers .badge {
        font-size: 0.7rem !important;
        padding: 4px 10px !important;
    }
    
    #careers .job-requirements-text {
        font-size: 0.8rem !important;
    }
    
    #careers .form-control-sm {
        padding: 8px !important;
        font-size: 0.8rem !important;
    }
    
    #careers .btn {
        padding: 10px !important;
        font-size: 0.8rem !important;
    }
    
    /* ----- CONTACT SECTION ----- */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info {
        padding: 25px !important;
        border-radius: 16px 16px 0 0 !important;
    }
    
    .contact-info h3 {
        font-size: 1.3rem !important;
        margin-bottom: 20px !important;
    }
    
    .info-item {
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    
    .info-item i {
        font-size: 1rem !important;
    }
    
    .info-item div {
        font-size: 0.85rem !important;
    }
    
    .contact-form {
        padding: 25px !important;
    }
    
    .form-control,
    .form-select {
        padding: 10px !important;
        font-size: 0.85rem !important;
    }
    
    /* ----- FOOTER - 1col ----- */
    footer {
        padding: 30px 0 15px !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .footer-col {
        text-align: center !important;
    }
    
    .footer-col:first-child .logo {
        font-size: 1.2rem !important;
        justify-content: center !important;
    }
    
    .footer-col:first-child p {
        font-size: 0.8rem !important;
        max-width: 100% !important;
    }
    
    .footer-col h5 {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
    }
    
    .footer-col ul li a {
        font-size: 0.8rem !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    .social-links a {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }
    
    .copyright {
        font-size: 0.7rem !important;
        padding-top: 15px !important;
    }

  
    /* ===== MOBILE - NAVBAR & HAMBURGER ===== */
   
    
    .nav-container {
        display: flex !important;
        justify-content: space-between!important;
        align-items: center !important;
        padding: 0 10px !important;
        height: 55px !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .nav-right {
        display: flex !important;
        align-items: center !important;
        gap: 2px !important;
        position: relative !important;
        right: 0 !important;
    }
    
    .mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 1.1rem !important;
        color: var(--primary-blue) !important;
        position: relative !important;
        right: 0 !important;
    }
    
    .lang-tablet {
        display: none !important;
    }
}



