:root {
    --deep-green: #064420;
    --gold: #cfa84a;
    --cream: #fdfbf7;
    --text-dark: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* //// */
/* --- Global Smooth Scroll Engine --- */
html {

    scroll-behavior: smooth; 
    scroll-padding-top: 100px;
}
html,
body{
    width:100%;
    overflow-x:hidden;
}

section,
header,
footer,
main,
div{
    max-width:100%;
}

body {
    margin: 0;
    padding-top: 70px; /* Prevents text from hiding under the fixed header */
}
/* --- Logo Wrapper Setup --- */
.nav-logo-wrapper {
    display: flex;
    align-items: center; 
    gap: 15px;
    /* cursor: pointer; */
    /* margin-left: -120px;  */
        margin-left:0;
}

/* --- Logo Image Styling --- */
.nav-logo-img {
    height: 45px; 
    width: auto;  
    object-fit: contain;
    margin-left: -20px;
}

/* --- Logo Text Styling --- */
.nav-logo-text {
    /* font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #cda851; 
    letter-spacing: 0.5px;
    white-space: nowrap;  */
     font-size:30px;
    font-weight:700;
    color: #cda851;;
    line-height:1;
}
.nav-sub-text{
    margin-top:6px;      
    font-size:11px;
    font-weight:600;
    color: #cda851;;
    letter-spacing:0.8px;
    text-transform:uppercase;
    line-height:1.3;
}
.nav-logo-content{
    display:flex;
    flex-direction:column;
}
/* ==========================================================================
   --- MOBILE RESPONSIVE TUNING ---
   ========================================================================== */
@media (max-width: 768px) {
    .nav-logo-img {
        height: 38px; 
    }
    
    .nav-logo-text {
        font-size: 1.2rem; 
    }
    
    .nav-logo-wrapper {
        gap: 8px; 
          margin-left: 0;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
}

/* --- Navbar Core Layout Setup --- */
.noble-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #0d4b26; /* Deep Green Branding Theme */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Keeps header always on top of everything */
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.nav-container {
    width: 100%;
    /* max-width: 1300px; */
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling */
.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #cda851; /* Elegant Gold */
    text-decoration: none;
    letter-spacing: 1px;
}

/* Desktop Menu Styling */
.nav-links-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

/* Hover effects for Desktop Links */
.nav-item-link:hover {
    color: #cda851;
}

/* --- Desktop Hamburger Hidden by Default --- */
.nav-hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   --- MOBILE RESPONSIVE ENGINE (Hamburger Menu Animation & Layout) ---
   ========================================================================== */

@media (max-width: 768px) {
    /* Show Hamburger Icon on Mobile Screens */
    .nav-hamburger {
        display: flex;
    }

    /* Transform navigation list into a dropdown menu drawer overlay */
    .nav-links-menu {
        position: absolute;
        top: 70px;
        left: -100%; /* Hides the menu completely out of screen on default state */
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #0b3d1f; /* Slightly darker green for visibility overlay */
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 35px;
        transition: left 0.4s cubic-bezier(0.1, 0.7, 0.6, 1); /* Smooth slide-in transition */
    }

    /* ACTIVE STATE: Triggered via Javascript below to open drawer layout panels */
    .nav-links-menu.active {
        left: 0; /* Brings the menu onto the viewport screen instantly */
    }

    .nav-item-link {
        font-size: 1.2rem; /* Larger font size for comfortable thumb clicks on mobile devices */
    }

    /* Hamburger icon transforms into a neat 'X' cross close sign when active */
    .nav-hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #cda851;
    }
    .nav-hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #cda851;
    }
}

body {
    background-color: var(--cream);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* --- Main Hero Section Container --- */
/* --- Hero Section Structural Reset --- */
.hero-section {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}

/* Two-column master grid for laptop viewport screens */
.hero-upper-container {
    width: 100%;
    display: grid;
    grid-template-columns: 46% 54%; /* Keeps text panel and showcase balanced */
    align-items: center;
    position: relative;
       overflow: hidden;
}
/* .hero-upper-container::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 46%;          
    height: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.15);
    z-index: 2;
    pointer-events: none;
} */
 .hero-right-media::before{
    content: "";
    position: absolute;
    top: 0;
    left: -160px;
    width: 220px;
    height: 100%;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255,255,255,0.98) 20%,
        rgba(255,255,255,0.85) 45%,
        rgba(255,255,255,0.55) 70%,
        rgba(255,255,255,0) 100%
    );
}
 /* .hero-upper-container::after{
    content: "";
    position: absolute;
    top: 0;
    left: 43%;            border position 
    width: 120px;         blur width 
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.85) 20%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
} */

.hero-left-content{
    position: relative;
    z-index: 2;
}

/* Left Content Area Alignment styling */
.hero-left-content {
    padding: 60px 5% 60px 8%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Logo and Branding header layout styles */
.hero-brand-block {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-logo-img {
    width: 85px;
    height: auto;
}

.hero-brand-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0d4b26; /* Deep Green Corporate Tone */
    margin: 0;
    line-height: 1.1;
}

.hero-brand-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #333333;
    margin: 3px 0 0 0;
    letter-spacing: 0.5px;
}

.hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.85rem;
    color: #cda851; /* Gold Accent */
    margin: 4px 0 0 0;
    font-style: italic;
    font-weight: 600;
}

/* Typography styles for core punchlines */
.hero-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #0d4b26;
    margin: 0 0 15px 0;
    font-style: italic;
}

.hero-sub-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.05rem;
    color: #555555;
    margin: 0 0 35px 0;
    line-height: 1.5;
}

/* Bullet Points Grid Arrangement */
.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2x2 inline layout grid mapping */
    gap: 18px 15px;
}

.hero-features-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0d4b26;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    color: #cda851;
    font-weight: 700;
}

/* Right Media Block Container */
.hero-right-media {
    /* width: 100%;
    height: 100%;
    align-self: stretch; */
      position: relative;
    z-index: 1;
   

}

.hero-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FIXED: Text names removed, converted to a beautiful thin green line bar */
.hero-thin-green-bar {
    width: 100%;
    height: 12px; /* Perfect elegant thin height as requested */
    background-color: #0d4b26; /* Clean deep solid green line layout */
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   --- MOBILE & TABLET RESPONSIVE SYSTEM (15% Low Opacity Integrated) ---
   ========================================================================== */

@media (max-width: 992px) {
    /* Shifts grid side-by-side to vertical flow layout on responsive screens */
    .hero-upper-container {
        grid-template-columns: 100%;
        position: relative;
    }

    /* Centers mobile branding and coordinates safe tracking layout */
    .hero-left-content {
        width: 100%;
        padding: 50px 6%;
        text-align: center;
        align-items: center;
        z-index: 3;
    }

    .hero-brand-block {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    /* Background layer modification system for mobile view screens */
    .hero-right-media {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-display-img {
        opacity: 0.15; /* Requested 15% clean ultra-low opacity system */
        mix-blend-mode: multiply;
    }

    .hero-main-title {
        font-size: 2.4rem;
    }

    .hero-sub-title {
        font-size: 0.95rem;
    }

    .hero-features-list {
        grid-template-columns: 100%; /* Rows stack cleanly linearly on small monitors */
        gap: 12px;
        display: inline-flex;
        flex-direction: column;
        text-align: left;
    }
    
    /* Retains the clean elegant thin green divider bar cleanly on mobile viewports */
    .hero-thin-green-bar {
        height: 10px;
        z-index: 4;
    }
}

@media (max-width: 576px) {
    .hero-main-title { font-size: 2rem; }
    .hero-brand-text h1 { font-size: 1.5rem; }
}

/* ///////
section 2
/////// */
/* --- About Us Section Main Container --- */
/* .about-us-section {
    background-color: var(--cream);
    width: 100%;
   
    padding: 35px 6%; 
    display: block;
    box-sizing: border-box;
}

.about-content-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    
    gap: 35px; 
    width: 100%;
}


.about-text-panel {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.about-heading {
    font-family: 'Poppins', Arial, sans-serif;
    
    font-size: 2.1rem; 
    font-weight: 700;
    color: var(--deep-green);
    letter-spacing: 1px;
    margin-bottom: 6px;
}


.about-divider {
    width: 150px;
    height: 3px;
    background-color: var(--gold);
   
    margin-bottom: 20px; 
    position: relative;
}

.about-divider::after {
    content: "◆";
    color: var(--gold);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--cream);
    padding: 0 6px;
    font-size: 0.8rem;
}

.about-paragraph {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.98rem;
    
    line-height: 1.55;
    color: #444444;
    margin-bottom: 12px; 
    font-weight: 400;
}

.about-mission-statement {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.02rem;
    line-height: 1.5;
    color: var(--deep-green);
    font-weight: 700;
    margin-top: 5px;
}

.about-image-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-display-img {
    width: 100%;
    
    max-width: 520px;
    max-height: 340px; 
    border-radius: 8px;
   
    object-fit: cover; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
} */

/* ==========================================================================
   --- Mobile & Tablet View (Responsive Grid Layout) ---
   ========================================================================== */
/* 
@media (max-width: 992px) {
    .about-content-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text-panel {
        align-items: center;
        text-align: center;
        order: 1;
    }

    .about-divider {
        margin: 0 auto 20px auto;
    }

    .about-image-panel {
        order: 2;
    }

    .about-display-img {
        max-width: 420px;
        max-height: 280px;
    }
}

@media (max-width: 576px) {
    .about-us-section {
        padding: 30px 5%;
    }

    .about-heading {
        font-size: 1.8rem;
    }

    .about-divider {
        width: 130px;
    }

    .about-paragraph {
        font-size: 0.92rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .about-mission-statement {
        font-size: 0.95rem;
    }

    .about-display-img {
        max-width: 100%;
        max-height: 240px;
    }
} */
/* --- About Us Section Framework Base --- */
.about-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    background-color: #ffffff; /* Left text area background white */
    overflow: hidden;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* FIXED: Top right border-udan gap illamal otti nirka absolute position */
.about-absolute-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%; /* Covers the right side space on laptops */
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* FIXED: Left side extend aagumbol strong-aga fade out panna ulla Dark Opacity Gradient Mask */
.about-image-blend-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%; 
    height: 100%;
    background: linear-gradient(to left, 
        rgba(255, 255, 255, 0) 0%,        
        rgba(255, 255, 255, 0.2) 65%, 
        rgba(255, 255, 255, 0.75) 75%,    
        rgba(255, 255, 255, 0.98) 80%,  
        rgba(255, 255, 255, 1) 100%     
    );
    z-index: 2;
}

/* Text Grid container layering over the background media elements above */
.about-main-container {
    position: relative;
    /* max-width: 1500px; */
    width: 100%;
    margin: 0 auto;
    padding: 60px 6%;
    z-index: 3;
    box-sizing: border-box;
}

.about-text-panel {
    max-width: 550px; /* Restricts lines from extending over raw food graphics */
    display: flex;
    flex-direction: column;
    text-align: left;
}

.about-main-heading {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d4b26; /* Deep Green typography matching branding */
    letter-spacing: 1px;
    margin: 0 0 6px 0;
}

/* Golden Decorative Divider Line */
.about-main-divider {
    width: 120px;
    height: 3px;
    background-color: #cda851; 
    margin: 0 0 25px 0;
    position: relative;
}

.about-main-divider::after {
    content: "◆";
    color: #cda851;
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 0 6px;
    font-size: 0.8rem;
}

.about-paragraph {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 16px;
    font-weight: 400;
}

.about-mission-statement {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #0d4b26; 
    font-weight: 700;
    margin-top: 10px;
}

/* ==========================================================================
   --- Mobile & Tablet Viewports (Same Low Opacity Concept Layering) ---
   ========================================================================== */

@media (max-width: 992px) {
    .about-section {
        min-height: auto;
    }

    /* Mobile view-il full size block background image with 15% ultra low opacity */
    .about-absolute-img {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        opacity: 0.15; /* Mobile-il mattum light shadow visual background */
        mix-blend-mode: multiply;
    }

    /* Uniform light blend overlay cover for clean text tracking */
    .about-image-blend-overlay {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        background: linear-gradient(to bottom, 
            rgba(255, 255, 255, 0.9) 0%, 
            rgba(255, 255, 255, 0.7) 100%
        );
    }

    /* Padding reset allows texts to seamlessly drop right from the top edge */
    .about-main-container {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .about-text-panel {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .about-main-divider {
        margin: 0 auto 25px auto;
    }

    .about-main-divider::after {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 576px) {
    .about-main-heading {
        font-size: 1.8rem;
    }

    .about-paragraph {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .about-mission-statement {
        font-size: 0.98rem;
    }
}
/* ////////
section 3
//////// */
/* --- Vision & Mission Section Main Container --- */
/* .vision-mission-section {
    background-color: var(--deep-green); 
    width: 100%;
    padding: 40px 6%; 
    display: block;
    box-sizing: border-box;
    overflow: hidden;
}

.vision-content-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; 
    align-items: center;
    gap: 40px;
    width: 100%;
}


.vision-image-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 370px;
    height: 300px;

}

.vision-display-img {
    width: 100%;
    max-width: 460px;
    max-height: 360px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}


.vision-text-panel {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.vision-main-heading {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}


.vision-main-divider {
    width: 220px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 30px auto;
    position: relative;
}

.vision-main-divider::after {
    content: "◆";
    color: var(--gold);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--deep-green);
    padding: 0 8px;
    font-size: 0.8rem;
}

.vision-mission-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 25px;
    align-items: start;
    text-align: left;
}

.vision-icon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.vision-sub-icon {
    font-size: 1.6rem;
    color: var(--gold);
}

.vision-sub-heading {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}


.vision-vertical-line {
    width: 1px;
    background-color: rgba(207, 168, 74, 0.4); 
    align-self: stroke;
    min-height: 180px;
}


.vision-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--cream); 
    font-weight: 400;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--cream);
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.mission-list li::before {
    content: "•";
    color: var(--gold);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
} */

/* ==========================================================================
   --- Mobile & Tablet View (Responsive Grid Layout) ---
   ========================================================================== */

/* @media (max-width: 992px) {
    .vision-content-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

   
    .vision-text-panel {
        order: 1;
    }

    
    .vision-vertical-line {
        display: none;
    }

    .vision-mission-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    
    .vision-image-panel {
        order: 2;
    }

    .vision-display-img {
        max-width: 420px;
        max-height: 280px;
    }
}

@media (max-width: 576px) {
    .vision-mission-section {
        padding: 35px 5%;
    }

    .vision-main-heading {
        font-size: 1.8rem;
    }

    .vision-main-divider {
        width: 160px;
    }

    .vision-sub-heading {
        font-size: 1.1rem;
    }

    .vision-text, .mission-list li {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .vision-display-img {
        max-width: 100%;
        max-height: 220px;
    }
} */
/* --- Vision & Mission Section Framework Base --- */
/* --- Vision & Mission Section Framework Base --- */
.vision-section {
    position: relative;
    width: 100%;
    min-height: 540px;
    background-color: #0d4b26; /* Section background deep green as seen in image_ea2b48.jpg */
    overflow: hidden;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}


.vision-absolute-img {
    position: absolute;
    top: 0;
    left: 0; /* Left side fixed */
    width: 40%; /* Covers the left side space on laptops */
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


.vision-image-blend-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%; 
    height: 100%;
    background: linear-gradient(to right, 
        rgba(13, 75, 38, 0) 0%,         
        rgba(13, 75, 38, 0.25) 25%, 
        rgba(13, 75, 38, 0.8) 55%,     
        rgba(13, 75, 38, 0.98) 82%,     
        rgba(13, 75, 38, 1) 100%        
    );
    z-index: 2;
}

/* Layout container layering completely over the background media elements */
.vision-main-container {
    position: relative;
    /* max-width: 1300px; */
    width: 100%;
    margin: 0 auto;
    padding: 60px 6%;
    z-index: 3;
    box-sizing: border-box;
}

/* Header Text Alignments */
.vision-header-block {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

.vision-main-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #cda851; /* Gold heading style matching image_ea2b48.jpg */
    letter-spacing: 1.5px;
    margin: 0 0 8px 0;
}

/* Golden Decorative Divider Line */
.vision-main-divider {
    width: 160px;
    height: 3px;
    background-color: #cda851;
    margin: 0 auto;
    position: relative;
}

.vision-main-divider::after {
    content: "◆";
    color: #cda851;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0d4b26;
    padding: 0 8px;
    font-size: 0.8rem;
}


.vision-content-row {
    display: flex;
    gap: 40px;
    max-width: 680px; 
    width: 100%;
    margin-left: auto; /* Pushes content strictly to the right side on desktops */
}

.vision-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vision-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.vision-card-icon {
    font-size: 1.2rem;
    color: #cda851;
}

.vision-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #cda851; /* Gold titles as seen in image_ea2b48.jpg */
    margin: 0;
    letter-spacing: 0.5px;
}

.vision-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.94rem;
    line-height: 1.6;
    color: #ffffff; /* White clean readable text paragraphs */
    margin: 0;
    opacity: 0.95;
}

/* Mission Bullet Points Reset */
.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.94rem;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    opacity: 0.95;
}

.mission-list li::before {
    content: "•";
    color: #cda851; /* Gold list markers matching image_ea2b48.jpg */
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* ==========================================================================
   --- Mobile & Tablet Viewports (Concept Low Opacity Setup Fixed) ---
   ========================================================================== */

@media (max-width: 992px) {
    .vision-section {
        min-height: auto;
    }

    .vision-absolute-img {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0.12; 
        mix-blend-mode: luminosity; 
    }

    /* Uniform dark green blend mask over full layout for mobile */
    .vision-image-blend-overlay {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(to bottom, 
            rgba(13, 75, 38, 0.92) 0%, 
            rgba(13, 75, 38, 0.8) 100%
        );
    }

    .vision-main-container {
        padding-top: 45px;
        padding-bottom: 45px;
    }

   
    .vision-content-row {
        max-width: 100%;
        flex-direction: column;
        gap: 30px;
        margin-left: 0;
    }
    
    .vision-card-title {
        justify-content: center;
    }
    
    .vision-text, .mission-list {
        text-align: center;
    }
    
    .mission-list li {
        padding-left: 0;
    }
    
    .mission-list li::before {
        display: none; 
    }
}

@media (max-width: 576px) {
    .vision-main-heading {
        font-size: 1.8rem;
    }

    .vision-card h3 {
        font-size: 1.1rem;
    }

    .vision-text, .mission-list li {
        font-size: 0.9rem;
    }
}
/* ///////
section 4
/////// */
/* --- Manufacturing Section Framework Reset --- */
.manufacturing-section {
    width: 100%;
    background-color: #fbf9f5; /* Light creamy background canvas matching image_b3b01a.png */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

/* Master Grid split between content layout and arced image framing */
.mfg-master-container {
    width: 100%;
    display: grid;
    grid-template-columns: 55% 45%; /* Balances typography canvas and the curved frame */
    align-items: center;
    position: relative;
}

/* Left Content Area Customizations */
.mfg-left-content {
    padding: 60px 5% 60px 8%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-align: center; /* FIXED: Centered text alignments matching image_b3b01a.png */
    align-items: center;
    z-index: 2;
}

.mfg-main-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d4b26; /* Branding Deep Green */
    letter-spacing: 1px;
    margin: 0 0 6px 0;
}

.mfg-main-divider {
    width: 150px;
    height: 2px;
    background-color: #cda851; /* Gold Divider Line */
    margin: 0 auto 25px auto;
    position: relative;
}

.mfg-main-divider::after {
    content: "◆";
    color: #cda851;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fbf9f5;
    padding: 0 8px;
    font-size: 0.8rem;
}

.mfg-intro-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #444444;
    max-width: 650px;
    margin: 0 0 40px 0;
}

/* FIXED: Reconfigured to a beautiful single horizontal row as seen in image_b3b01a.png */
.mfg-icons-horizontal-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Divides into 6 even columns smoothly */
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(13, 75, 38, 0.1);
    border-top: 1px solid rgba(13, 75, 38, 0.1);
    padding: 20px 0;
}

.mfg-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mfg-icon-circle {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 2px solid #0d4b26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.mfg-icon-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #333333;
    line-height: 1.3;
    margin: 0;
}

.mfg-bottom-quote {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.5;
    color: #0d4b26;
    max-width: 600px;
    margin: 0;
}

/* ==========================================================================
   --- FIXED: RIGHT SIDE GOLDEN ARC CURVE MASK SYSTEM (image_b3b01a.png) ---
   ========================================================================== */
.mfg-right-arc-media {
    position: relative;
    width: 100%;
    height: 550px; /* Locks height to keep the arc scale elegant */
    overflow: hidden;
}

/* Golden border vector arc line overlay layout */
.mfg-gold-arc-border {
    position: absolute;
    top: -10%;
    left: -80px; /* Extends outward to curve smoothly inward */
    width: 200px;
    height: 120%;
    border-left: 5px solid #cda851; /* Thicker rich gold curve accent line */
    border-radius: 50% 0 0 50%; /* Pure CSS smooth ellipse curve formula */
    z-index: 3;
    pointer-events: none;
}

/* Container mask mimicking the dynamic curve mask layout in image_b3b01a.png */
.mfg-image-mask-container {
    width: 100%;
    height: 100%;
    /* Clips the left boundary edge of the box along an analytical ellipse route */
    clip-path: ellipse(90% 100% at 95% 50%); 
    position: relative;
    z-index: 2;
}

.mfg-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   --- MOBILE & TABLET RESPONSIVE ENGINE (15% Low Opacity System Included) ---
   ========================================================================== */

@media (max-width: 1100px) {
    /* Compress icons display layout seamlessly on medium screen viewports */
    .mfg-icons-horizontal-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    /* Convert dual column desktop split layout to singular vertical linear card */
    .mfg-master-container {
        grid-template-columns: 100%;
    }

    .mfg-left-content {
        width: 100%;
        padding: 50px 6%;
        z-index: 3;
    }

    /* FIXED: Mobile view resets image frame to an absolute full layout with 15% opacity */
    .mfg-right-arc-media {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    /* Removes desktop specific clipping masks when shifting viewports */
    .mfg-image-mask-container {
        clip-path: none;
    }

    .mfg-gold-arc-border {
        display: none; /* Disables arced line lines on tiny screens to avoid text overlapping issues */
    }

    .mfg-display-img {
        opacity: 0.15; /* Requested 15% ultra low fallback styling for easy screen readability */
        mix-blend-mode: multiply;
    }

    .mfg-icons-horizontal-row {
        grid-template-columns: repeat(2, 1fr); /* Neat double grid alignment layout cards */
        background: rgba(255, 255, 255, 0.7);
        border-radius: 8px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .mfg-main-heading { font-size: 1.8rem; }
    .mfg-intro-text { font-size: 0.92rem; }
    .mfg-icons-horizontal-row { grid-template-columns: 100%; text-align: left; } /* Single row mapping configuration */
    .mfg-icon-card { flex-direction: row; gap: 15px; text-align: left; }
    .mfg-icon-circle { flex-shrink: 0; margin-bottom: 0; }
}

/* ////////
section 5
//////// */
/* --- Certifications Section Main Container --- */
.certifications-section {
    background-color: var(--cream); 
    padding: 35px 6% 0 6%; 
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.certs-content-container {
    /* max-width: 1300px; */
    margin: 0 auto 30px auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; 
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* Left Panel Typography & Logo Layout */
.certs-left-panel {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.certs-main-heading {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--deep-green); 
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

/* Decorative Gold Divider Line */
.certs-main-divider {
    width: 180px;
    height: 3px;
    background-color: var(--gold); 
    margin: 0 auto 20px auto;
    position: relative;
}

.certs-main-divider::after {
    content: "◆";
    color: var(--gold);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--cream);
    padding: 0 8px;
    font-size: 0.8rem;
}

.certs-intro-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #444444;
    margin-bottom: 20px;
    font-weight: 500;
}

.certs-wreath-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.certs-wreath-logo {
    width: 100%;
    max-width: 160px;
    height: auto;
    object-fit: contain;
}

/* Right Panel Certificate Grid Layout */
.certs-grid-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px;
    width: 100%;
}

/* Certificate Card / Box Box-styling */
.cert-card {
    background: #ffffff;
    border: 1px solid rgba(207, 168, 74, 0.3); 
    border-radius: 8px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    min-height: 140px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(207, 168, 74, 0.15);
}

.cert-img-holder {
    width: 100%;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.cert-display-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-dark, #222222);
    line-height: 1.3;
}

/* Bottom Continuous Accent Bar */
.certs-bottom-accent-bar {
    background-color: var(--deep-green);
    margin: 20px -6.5% 0 -6.5%; /* பேடிங்கைத் தாண்டி முழு நீளத்திற்கு வர */
    padding: 18px 4%;
    text-align: center;
    border-top: 3px solid var(--gold);
}

.certs-accent-ticker-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.92rem;
    color: var(--cream);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   --- Mobile & Tablet View (Responsive Grid Layout) ---
   ========================================================================== */

@media (max-width: 992px) {
    .certs-content-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 20px;
    }

  
    .certs-left-panel {
        order: 1;
    }

    .certs-wreath-logo {
        max-width: 130px;
    }

   
    .certs-grid-panel {
        order: 2;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .certifications-section {
        padding: 30px 5% 0 5%;
    }

    .certs-bottom-accent-bar {
        margin: 20px -5.5% 0 -5.5%;
        padding: 14px 4%;
    }

    .certs-main-heading {
        font-size: 1.8rem;
    }

    .certs-main-divider {
        width: 140px;
    }

    .certs-intro-text {
        font-size: 0.92rem;
    }

    
    .cert-card {
        min-height: 120px;
        padding: 10px 6px;
    }

    .cert-img-holder {
        height: 50px;
    }

    .cert-title {
        font-size: 0.7rem;
    }

    .certs-accent-ticker-text {
        font-size: 0.82rem;
        line-height: 1.4;
    }
}

/* ////////
section 6
//////// */
/* 

/* ===============================
CAREERS
===============================*/
/* --- Careers Section Wrapper Framework --- */
.careers-section {
    width: 100%;
    background-color: #0d4b26; /* Deep Green Canvas matching image_b59c37.jpg */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

/* Master Responsive Split Grid Grid */
.careers-master-container {
    width: 100%;
    display: grid;
    grid-template-columns: 55% 45%; 
    align-items: center;
    position: relative;
}

/* Left Content Column Layout Box */
.careers-left-content {
    padding: 65px 6% 65px 8%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-align: left; /* Alignment structured exactly to mirror image_b59c37.jpg layout */
    align-items: flex-start;
    z-index: 2;
}

.careers-main-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #cda851; /* Elegant Contrast Gold Title */
    letter-spacing: 1px;
    margin: 0 0 6px 0;
}

.careers-main-divider {
    width: 110px;
    height: 2px;
    background-color: #cda851; /* Gold Accent Bar matching image_b59c37.jpg */
    margin: 0 0 25px 0;
}

.careers-sub-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
}

.careers-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #eeeeee;
    margin: 0 0 18px 0;
    max-width: 600px;
}

/* Interactive Golden Mailer Action Button Layout */
.careers-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #cda851; /* Base fill matching button in image_b59c37.jpg */
    color: #0d4b26;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    margin-top: 15px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.careers-btn:hover {
    background-color: #e5bd5b;
    transform: translateY(-2px);
}

.careers-btn-icon {
    font-size: 1.1rem;
}

/* ==========================================================================
   --- RIGHT SIDE MIRROR/INVERTED HOLLOW ARC MASK ENGINE ---
   ========================================================================== */
.careers-right-arc-media {
    position: relative;
    width: 100%;
    height: 580px; /* Locked frame height baseline to shape perfect curved ratios */
    overflow: hidden;
}

/* Beautiful custom mirror border arch overlay vector track */
.careers-gold-arc-border-mirror {
    position: absolute;
    top: -10%;
    left: -120px; /* Offset adjustment pulling curve parameters cleanly leftwards */
    width: 240px;
    height: 120%;
    border-right: 5px solid #cda851; /* Mirror setup anchoring curve stroke directly onto right edge profile */
    border-radius: 0 50% 50% 0;
    z-index: 3;
    pointer-events: none;
}

/* Dynamic mirror geometric masking shell profile wrapper */
.careers-image-mask-container-mirror {
    width: 100%;
    height: 100%;
    /* Analytical ellipse mask sculpting mirror layout format from left to right profiles */
    clip-path: ellipse(90% 100% at 95% 50%); 
    position: relative;
    z-index: 2;
}

.careers-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   --- CARRIERS MOBILE RESPONSIVE ENGINE (15% Low-Opacity Canvas System) ---
   ========================================================================== */

@media (max-width: 992px) {
    /* Collapses desktop split screens layout into a single adaptive column panel block */
    .careers-master-container {
        grid-template-columns: 100%;
    }

    .careers-left-content {
        width: 100%;
        padding: 50px 6%;
        z-index: 3;
    }

    /* Flips image container track to adapt into absolute full background shell frame */
    .careers-right-arc-media {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    /* Resets desktop clip-paths completely on smartphone panels */
    .careers-image-mask-container-mirror {
        clip-path: none;
    }

    /* Drops overlapping layout vectors to prevent UI clutter on tight layouts */
    .careers-gold-arc-border-mirror {
        display: none; 
    }

    /* Applies requested 15% clean text fallback clarity style background filter */
    .careers-display-img {
        opacity: 0.15; 
    }
}

@media (max-width: 480px) {
    .careers-main-heading { font-size: 1.9rem; }
    .careers-sub-heading { font-size: 1rem; }
    .careers-text { font-size: 0.9rem; line-height: 1.5; }
    .careers-btn { width: 100%; justify-content: center; font-size: 0.88rem; } /* Expand touch buttons to full width sizes */
}

/* ////////
last
/////// */

/* --- Root Contact Section Reset --- */
.contact-section {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}

/* FIXED: Desktop grid to avoid layout breaking or shifting */
.contact-upper-body {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%; /* Perfect split side by side */
    align-items: center;
}

/* Left side padding space allocation */
.contact-left-content {
    padding: 60px 8% 60px 12%;
    box-sizing: border-box;
}

/* FIXED: Right media panel completely touches right, top, and bottom edges */
.contact-right-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px; /* Tracks left side naturally */
    align-self: stretch;
}

.contact-building-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FIXED: Overlay sits directly on top of the image to ensure accurate fading */
.contact-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soft left-to-right fade out into plain white text canvas */
    /* background: linear-gradient(to right, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.85) 15%,
        rgba(255, 255, 255, 0.3) 45%,
        rgba(255, 255, 255, 0) 0%
    ); */
}

/* Typography and List Elements */
.contact-main-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d4b26;
    letter-spacing: 1px;
    margin: 0 0 6px 0;
}

.contact-main-divider {
    width: 120px;
    height: 3px;
    background-color: #cda851; 
    margin: 0 0 25px 0;
    position: relative;
}

.contact-main-divider::after {
    content: "◆";
    color: #cda851;
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 0 6px;
    font-size: 0.8rem;
}

.contact-intro-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon-box {
    width: 42px;
    height: 42px;
    background-color: #0d4b26; 
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0d4b26;
    margin: 0 0 2px 0;
}

.contact-info-content p {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.92rem;
    color: #555555;
    margin: 0;
}

/* --- Solid Deep Green Footer Bar --- */
.contact-bottom-footer {
    width: 100%;
    background-color: #0d4b26;
    padding: 15px 0;
    box-sizing: border-box;
}

.footer-inner-container {
    /* max-width: 1300px; */
    width: 100%;
    margin: 0 auto;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.footer-inquiry-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    max-width: 75%;
}

.footer-qr-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-qr-img {
    width: 95px; 
    height: 95px;
    background-color: #ffffff;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.footer-qr-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ==========================================================================
   --- MOBILE & TABLET RESPONSIVE ENGINE (15% Low Opacity Concept) ---
   ========================================================================== */

@media (max-width: 992px) {
    /* Stack components linearly on small monitors */
    .contact-upper-body {
        grid-template-columns: 100%;
        position: relative;
    }

    .contact-left-content {
        padding: 45px 6%;
        text-align: center;
        z-index: 3; /* text layered safely above background media wrapper */
    }

    /* Pushes full image to wrap the entire mobile background container */
    .contact-right-media {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: auto;
        z-index: 1;
    }

    .contact-building-img {
        opacity: 0.15; /* FIXED: Requested 15% low opacity */
        mix-blend-mode: multiply;
    }

    /* Modifies left-to-right fade to a uniform top-down white wash background */
    .contact-fade-overlay {
        background: linear-gradient(to bottom, 
            rgba(255, 255, 255, 0.92) 0%, 
            rgba(255, 255, 255, 0.75) 100__
        );
    }

    .contact-main-divider {
        margin: 0 auto 25px auto;
    }

    .contact-main-divider::after {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .contact-info-list {
        align-items: flex-start;
        display: inline-flex;
        text-align: left;
    }

    /* Footer structural reflows */
    .footer-inner-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-inquiry-text {
        max-width: 100%;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-main-heading { font-size: 1.8rem; }
    .contact-intro-text { font-size: 0.92rem; }
    .contact-info-content h3 { font-size: 0.95rem; }
    .contact-info-content p { font-size: 0.88rem; }
}

/* ........... */
.contact-form-container{
    width:100%;
    /* max-width:600px; */
    margin:auto;
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:.3s;
    font-family:inherit;
    box-sizing:border-box;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#0b4227;
    box-shadow:0 0 0 3px rgba(11,66,39,.15);
}

.form-group textarea{
    resize:none;
}

.send-btn{
    width:100%;
    padding:15px;
    border:none;
    background:#0b4227;
    color:#fff;
    font-size:17px;
    font-weight:600;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

.send-btn:hover{
    background:#145b38;
}

/* Mobile */
@media(max-width:768px){

    .contact-form-container{
        padding:25px 20px;
        border-radius:12px;
    }

    .form-group input,
    .form-group textarea{
        padding:14px;
        font-size:15px;
    }

    .send-btn{
        padding:14px;
        font-size:16px;
    }

}


/* ================= FOOTER ================= */

.footer{
    background: #0B4227;   /* Dark Green */
    padding: 22px 8%;
    border-top: 2px solid #D4AF37; /* Gold Line */
}

.footer-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-left{
    color:#F5F5F5;
    font-size:16px;
    font-family:'Poppins',sans-serif;
    font-weight:400;
}

.footer-left strong{
    color:#D4AF37;          /* Gold */
    font-weight:600;
}

.footer-right{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-right a{
    color:#EAEAEA;
    text-decoration:none;
    font-size:16px;
    transition:0.3s ease;
}

.footer-right span{
    color:#D4AF37;
}

/* Hover Effect */
.footer-right a:hover{
    color:#D4AF37;
}

.footer-right a::after{
    content:'';
    display:block;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:0.3s;
    margin-top:2px;
}

.footer-right a:hover::after{
    width:100%;
}

/* Mobile */
@media(max-width:768px){

    .footer{
        padding:18px;
    }

    .footer-container{
        flex-direction:column;
        text-align:center;
    }

    .footer-left{
        font-size:14px;
        line-height:1.6;
    }

    .footer-right{
        justify-content:center;
    }

    .footer-right a{
        font-size:14px;
    }
}

@media (min-width:1600px){

    .hero-main-title{
        font-size:4rem;
    }

    .hero-sub-title{
        font-size:1.2rem;
    }

    .about-main-heading,
    .vision-main-heading,
    .mfg-main-heading,
    .careers-main-heading,
    .certs-main-heading,
    .contact-main-heading{
        font-size:2.8rem;
    }

    .hero-left-content,
    .mfg-left-content,
    .careers-left-content,
    .contact-left-content{
        padding:80px 8%;
    }

}