html{
scroll-behavior:smooth;
}



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

body{
    background:#f4faf6;
    color:#333;
    line-height:1.7;
}


.container{
    width: 100%;
    max-width: 1200px;
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}






h1, h2, h3, h4 {
    font-family: var(--font-heading);
}

body, p, li {
    font-family: var(--font-sans);
}




/* ================= HEADER ================= */

.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

/* Glass Effect */
.glass-header {
    background: rgba(11, 130, 78, 0.85); /* Dark green transparent */
    backdrop-filter: blur(10px);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin-left: 0;
    margin-right: auto;
}

/* Flex Layout */
.header-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Logo Section */
.logo {
    display: flex;
    gap: 12px;
    text-decoration: none;
    margin-right: 40px;
    align-items: center;
    margin-left: 0;
}

.logo img {
    height: 70px;
    width: auto;
}

/* Company Text */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.company-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.company-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #d4d4d4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list li a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    transition: 0.3s ease;
}

.nav-list li a:hover {
    color: #a5d6a7; /* Soft green hover */
}
/* Default transparent glass - light and subtle initially */
.glass-header {
    background: rgba(120, 150, 140, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Header when scrolling - becomes darker */
.main-header.scrolled {
    /* darker green on scroll */
    background: rgba(15, 61, 46, 0.85);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
}

/* Layout */
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 6px;
    object-fit: cover;
}

/* Navigation */
.nav-list {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-list a {
    text-decoration: none;
    color: #e6f5ea;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

/* Underline animation */
.nav-list a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: #74c69d;
    transition: 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: #b7e4c7;
}

/* ================= HERO SECTION ================= */

.hero {
    position: relative;
    height: 100vh;
    background: url('../images/hero-bg.png') center center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    content-visibility: auto;
    will-change: background-image;
}

/* Utility hidden class and thank-you message styling */
.hidden {
    display: none !important;
}
.thank-you {
    padding: 20px;
    background: #e6f5ea;
    border: 1px solid #74c69d;
    margin-top: 20px;
    border-radius: 6px;
}

/* Supplier section heading color */
#become-supplier .supplier-content h2 {
    color: #2e7d32; /* less dark green */
}

.hero {
    padding-top: 120px;
}

/* ===== Overlay ===== */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* subtle green gradient overlay to slightly darken bright images while keeping them visible */
    background: linear-gradient(
        rgba(16, 85, 60, 0.30),
        rgba(10, 60, 45, 0.38)
    );
    z-index: 1;
}

/* Hide legacy overlay node if present to avoid stacking overlays */
.hero-overlay { display: none; }

/* ===== Hero Content ===== */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;  /* Controls spacing between heading, tagline & button */

    max-width: 800px;
    padding: 0 20px;
}

/* ================= CONTACT HERO BACKGROUND ================= */
.contact-hero{
    position:relative;
    min-height:60vh;
    padding-top:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background-color: #4a8872;
    background-image: url("../images/contact-us-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    overflow:hidden;
    content-visibility: auto;
    will-change: background-image;
}

.contact-hero .overlay{
    position:absolute;
    inset:0;
    background: rgba(6,30,22,0.02);
    z-index:1;
}

.contact-hero .hero-content{ z-index:2; padding:40px 20px; max-width:1000px; }


/* ===== Heading ===== */
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

/* ===== Tagline ===== */
.hero-content p {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}

/* ===== Button Container ===== */
.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-buttons a {
    text-align: center;
}

/* ===== Primary Button ===== */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #10553c;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.btn-primary:hover {
    background-color: #e6e6e6;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #14532d;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #0f422d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}



/* ================= SECTIONS ================= */
.section-padding{
    padding:90px 0;
}

.section-header{
    text-align:center;
    font-size: x-large;
    margin-bottom:50px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-box{
    background:#fff;
    padding:35px;
    border-radius:8px;
    text-align:center;
}

/* ================= PRODUCT PAGE SECTIONS ================= */
.rice-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f7faf3 0%, #eef6ed 100%);
    content-visibility: auto;
}

.section-title {
    font-size: 2.8rem;
    color: #14532d;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    max-width: 840px;
    margin: 0 auto 42px;
    color: #46634d;
    text-align: center;
    font-size: 1rem;
    line-height: 1.75;
}

.rice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.rice-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rice-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
}

.rice-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.rice-card h3 {
    margin: 20px 20px 12px;
    color: #14532d;
    font-size: 1.5rem;
    line-height: 1.2;
}

.rice-card p {
    margin: 0 20px 20px;
    color: #4a5b48;
    line-height: 1.75;
    font-size: 0.97rem;
}

.rice-card ul {
    list-style: none;
    margin: 0;
    padding: 0 20px 24px;
}

.rice-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #2f3f32;
    font-size: 0.96rem;
}

.rice-card ul li::before {
    content: "▹";
    position: absolute;
    left: 0;
    top: 0;
    color: #15803d;
    font-size: 0.9rem;
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
}

.rice-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.rice-table th,
.rice-table td {
    padding: 18px 20px;
    text-align: left;
    vertical-align: middle;
}

.rice-table thead th {
    background: #14532d;
    color: #ffffff;
    font-weight: 700;
}

.rice-table tbody tr:nth-child(even) {
    background: #f4faf6;
}

.rice-table tbody td {
    border-top: 1px solid #e6ede5;
    color: #304231;
}

@media (max-width: 992px) {
    .rice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .rice-grid {
        grid-template-columns: 1fr;
    }

    .rice-card img {
        height: 220px;
    }

    .rice-table {
        min-width: 100%;
    }
}

/* ================= PRODUCT CAROUSEL ================= */
.carousel-item{
text-decoration: none !important;
color: inherit;
}
.product-carousel{
    color: #000000;
    font-size:x-large;
    background:#eaf6ef;
    padding:50px 0;
    position: relative;
    content-visibility: auto;
}

.carousel-wrapper{
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.carousel-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    color: #22563b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 20;
}

.carousel-arrow:hover{
    transform: translateY(-50%) scale(1.05);
    background: rgba(255,255,255,1);
}

.carousel-arrow--prev{ left: 10px; }
.carousel-arrow--next{ right: 10px; }

@media (max-width: 768px) {
    .carousel-arrow { display: none; }
    .carousel-wrapper { padding: 0 8px; }
}

.carousel-track{
    display:flex;
    gap:25px;
    scroll-snap-type: x mandatory;
}

.carousel-item{
    min-width:250px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background:#ffffff;
    border-radius:10px;
    text-align:center;
    padding:20px;
}

/* 🔥 FORCE PRODUCT NAME TO BE VISIBLE */
.carousel-item h4,
.carousel-item p,
.carousel-item span {
    color:#000000 !important;   /* Pure Black */
    font-weight:600;
}

.carousel-item {
    text-align: center;
}

.carousel-item img {
    /* uniform square container so all products appear same size */
    width: 220px;
    height: 220px;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, filter 0.4s ease;
}


/* ===== PREMIUM FULL CARD HOVER EFFECT ===== */

.carousel-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Image Styling */
.carousel-item img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    object-position: center center;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Product Name */
.carousel-item h4 {
    margin-top: 18px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1f3d2b;
    transition: color 0.3s ease;
}

/* 🔥 SOFT FULL CARD HOVER EFFECT */
.carousel-item:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* Slight image zoom and brightness boost on hover */
.carousel-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.08);
}

/* Title color change */
.carousel-item:hover h4 {
    color: #145c3a;   /* softer green */
}



/* ================= CERTIFICATIONS ================= */
.certifications{
    content-visibility: auto;
    font-size: 1rem;
}

.cert-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.certifications .cert-grid {
    align-items: center;
}

.certifications .cert-grid img {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 140px;
    margin: 0 auto;
    height: auto;
}

.cert-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
    background: transparent;
    box-shadow: none;
    border: none;
}

.cert-preview-item img {
    border-radius: 20px;
    border: 1px solid rgba(15, 61, 46, 0.08);
    background: transparent;
}

.cert-preview-item .cert-caption {
    margin-top: 0;
    font-size: 0.95rem;
    line-height: 1.3;
}
.cert-preview-item .cert-caption a {
    color: #3c1a80;
    text-decoration: none;
    font-weight: 600;
}

.cert-preview-item .cert-caption a:hover,
.cert-preview-item .cert-caption a:focus {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .cert-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .cert-preview-item .cert-caption {
        font-size: 0.88rem;
        max-width: 180px;
    }

    .certifications .cert-grid img {
        max-width: 140px;
        max-height: 110px;
    }
}

.cert-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 24px 0 32px;
    z-index: 2000;
    pointer-events: none;
}

.cert-modal.visible {
    display: flex;
    pointer-events: auto;
}

.cert-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    transition: opacity 0.35s ease;
}

.cert-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    width: min(85vw, calc(92vh * 0.707));
    max-width: 92vw;
    min-width: 320px;
    gap: 16px;
    padding: 26px 24px 24px;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.cert-modal.visible .cert-modal-content {
    opacity: 1;
    transform: scale(1);
}

.cert-modal-frame {
    width: 100%;
    max-height: 92vh;
    padding: 8px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cert-modal-frame img {
    max-height: 90vh;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.cert-modal-title {
    color: #f1f5f2;
    background: rgba(18, 24, 22, 0.65);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    max-width: 90%;
}

.cert-modal-close,
.cert-modal-arrow {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, opacity 0.22s ease;
    z-index: 2002;
}

.cert-modal-close:hover,
.cert-modal-arrow:hover {
    transform: translateY(-1px) scale(1.02);
    background: rgba(255, 255, 255, 1);
}

.cert-modal-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    line-height: 1;
    padding: 0;
}

.cert-modal-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
}

.cert-modal-arrow--prev {
    left: 16px;
}

.cert-modal-arrow--next {
    right: 16px;
}

@media (max-width: 720px) {
    .cert-modal-content {
        width: min(92vw, calc(92vh * 0.707));
    }

    .cert-modal-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .cert-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -18px;
        right: -18px;
    }

    .cert-modal-arrow--prev {
        left: -20px;
    }

    .cert-modal-arrow--next {
        right: -20px;
    }

    .cert-modal-title {
        font-size: 0.88rem;
        padding: 8px 14px;
    }
}

@media (max-width: 600px) {
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cert-preview-item {
        padding: 0 10px;
    }

    .cert-preview-item .cert-caption {
        font-size: 0.84rem;
        margin-top: 10px;
    }
}

.cert-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 18px 18px 24px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 91, 45, 0.08);
    border: 1px solid rgba(15, 61, 46, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    color: inherit;
    min-height: 360px;
    cursor: pointer;
    border: none;
    overflow: hidden;
}

.cert-card:hover,
.cert-card.active {
    transform: translateY(-8px);
    box-shadow: 0 26px 55px rgba(12, 91, 45, 0.18);
    border-color: rgba(15, 61, 46, 0.24);
    background: #f4fbf4;
}

.cert-card.active {
    box-shadow: 0 28px 64px rgba(12, 91, 45, 0.24);
}

.cert-card:focus-visible {
    outline: 3px solid rgba(22, 93, 51, 0.35);
    outline-offset: 3px;
}

.cert-card img{
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(15, 61, 46, 0.08);
    background: #f6faf7;
}

.preview-back {
    margin-top: 18px;
    display: none;
}


.cert-preview {
    margin-top: 40px;
    padding: 36px 24px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 48px rgba(12, 91, 45, 0.08);
    border: 1px solid rgba(15, 61, 46, 0.1);
}

.preview-header {
    text-align: center;
    margin-bottom: 30px;
}

.preview-header h2 {
    font-size: 2.15rem;
    color: #0c6b3f;
    margin-bottom: 14px;
}

.preview-header p {
    color: #3e563d;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

.preview-card {
    display: flex;
    justify-content: center;
}

.preview-card img {
    width: 100%;
    max-width: 980px;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(15, 61, 46, 0.12);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.cert-thumb {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #eef7ee;
    border: 1px solid rgba(15, 61, 46, 0.08);
}

.pdf-thumb i {
    font-size: 3.1rem;
    color: #c53030;
}

.cert-card h3 {
    font-size: 1.35rem;
    color: #0c6b3f;
    margin: 0;
}

.cert-card p {
    color: #2d4732;
    line-height: 1.8;
    font-size: 0.98rem;
    margin: 0;
}
.cert-details {
    max-width: 860px;
    margin: 50px auto 0;
    padding: 0 15px;
}

.cert-details h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 2.6rem;
    line-height: 1.05;
    color: #103821;
}

.cert-details ul {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    display: block;
    text-align: left;
    width: min(740px, 100%);
}

.cert-details ul li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 30px;
    color: #1d3f2a;
    font-size: 1.18rem;
    line-height: 2.1;
}

.cert-details ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.9rem;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #14532d;
}









/* ================= ABOUT PREVIEW ================= */

.about-preview {
    padding: 90px 0;
    content-visibility: auto;
    background: #f4f9f5;
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    color: #0c6b3f;
    margin-bottom: 10px;
}

.about-text .tagline {
    font-weight: 500;
    color: #666;
    margin-bottom: 20px; 
}

.about-text p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-text .tagline {
    text-shadow: none !important;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #0c6b3f;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #094d2c;
}

/* IMAGE SIDE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
}











/* ================= PREMIUM GLASS FOOTER ================= */

.premium-footer {
    position: relative;
    background: linear-gradient(135deg, #0a5c3e 0%, #0d4a2f 50%, #082d1e 100%);
    padding: 80px 0 0 0;
    color: #fff;
    overflow: hidden;
}

/* Container to control width */
.footer-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= GLASS CARD ================= */

.footer-grid {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;

    padding: 50px 60px;

    display: grid;
    /* let grid auto‑fit columns instead of fixed fractions */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
    grid-auto-rows: auto;

    gap: 50px;
    margin-bottom: 40px;

    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================= COLUMN TITLES ================= */

.footer-column h3 {
    margin-bottom: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 18px;
}

/* ================= LINKS ================= */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 22px;
}

.footer-links li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #5fdb8a;
    font-size: 14px;
}

.footer-links a {
    text-decoration: none;
    color: #c1f0d6;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

/* ================= CONTACT INFO ================= */

.contact-info p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #d8f7e8;
    line-height: 1.6;
}

.contact-info p i {
    min-width: 20px;
    text-align: center;
}

.icon {
    margin-right: 8px;
}

/* ================= LOGO ================= */

.footer-logo {
    width: 110px;
    margin-bottom: 18px;
}

/* ================= TAGLINE ================= */

.footer-tagline {
    font-size: 15px;
    font-weight: 500;
    color: #e6e6e6;
    line-height: 1.7;
    max-width: 280px;
    font-family: 'Montserrat', sans-serif;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
    text-align: center;
    padding: 22px 0;
    background: #0a5c3e;
    color: #fff;
    /* edge‑to‑edge bar */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    font-size: 13px;
    letter-spacing: 0.5px;
}    

/* ================= RESPONSIVE ================= */

@media (max-width: 992px){

    .footer-grid{
        /* keep auto‑fit behaviour but reduce padding/gap */
        padding:40px;
        gap:40px;
    }

}

@media (max-width: 600px){

    .footer-grid{
        /* one column naturally when space is tight */
        padding:30px;
    }

    .footer-tagline{
        max-width:100%;
    }

}

.footer-links a:hover{
    color:#ffffff;
    padding-left:6px;
    text-shadow:0 0 6px rgba(95,219,138,0.6);
}


/* ================= OTHER SITE RESPONSIVE ================= */

@media(max-width:768px){

    .nav-list{
        flex-direction:column;
        gap:15px;
    }

    .hero{
        padding:120px 0 80px;
    }

    .animated-heading{
        font-size:32px;
    }

    .hero-buttons{
        flex-direction:column;
    }
}


/* ================= MOBILE MENU ================= */

@media (max-width: 768px) {

    .menu-toggle {
        display: block !important;
    }

    .nav-list {
        display: none;
    }

    .nav-list.active {
        display: flex;
        flex-direction: column;
        gap: 16px;
        background: rgba(15,61,46,0.95);
        padding: 16px;
        position: absolute;
        right: 20px;
        top: 68px;
        border-radius: 10px;
    }

}










/* ================= GLASS HEADER ================= */

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}











/* ================= SCROLL REVEAL ================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
    content-visibility: auto;
}

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



.btn-primary {
    background: #fff;
    color: #0f3d2e;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2ecc71;
    color: #fff;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.6);
    transform: translateY(-3px);
}








/* ===============================
   BECOME SUPPLIER SECTION
================================= */

.become-supplier-section {
    position: relative;
    padding: 100px 0;
    /* use become supplier background image (spaces percent-encoded) */
    background-image: url("../images/become\ supplier\ bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    content-visibility: auto;
    will-change: background-image;
}

.become-supplier-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* stronger overlay for better text contrast */
    background: linear-gradient(
        rgba(6, 35, 24, 0.65),
        rgba(8, 55, 35, 0.55)
    );
    z-index: 1;
}

.supplier-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.supplier-content h2 {
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.supplier-content p,
.supplier-benefits li {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.supplier-benefits li::before {
    color: #99f7a8;
}

/* LEFT CONTENT */
.supplier-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.supplier-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
}

.supplier-benefits {
    list-style: none;
    padding: 0;
}

.supplier-benefits li {
    font-size: 16px;
    margin-bottom: 15px;
    color: #1f2937;
    position: relative;
    padding-left: 28px;
}

/* Professional Check Icon */
.supplier-benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #15803d;
    font-weight: bold;
}

.supplier-benefits {
    max-width: 540px;
    margin: 0 auto;
}

/* RIGHT FORM CARD */
.supplier-form-wrapper {
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* FORM */
.supplier-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.supplier-form input,
.supplier-form textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.45);
    color: #1c1c1c;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Input Hover + Focus */
.supplier-form input:focus,
.supplier-form textarea:focus {
    outline: none;
    border-color: #15803d;
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
    background: rgba(255, 255, 255, 0.65);
}

/* Submit Button */
.btn-submit {
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #14532d, #15803d);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Button Hover */
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(21, 128, 61, 0.3);
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 992px) {
    .become-supplier-section {
        padding: 60px 0;
    }

    .supplier-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .supplier-content {
        text-align: center;
        padding: 0 15px;
    }

    .supplier-content h2 {
        font-size: 32px;
    }

    .supplier-content p {
        max-width: 620px;
        margin: 0 auto 28px;
    }

    .supplier-benefits {
        padding: 0;
        max-width: 620px;
        margin: 0 auto 20px;
    }

    .supplier-benefits li {
        padding-left: 0;
        text-align: left;
        max-width: 100%;
        margin: 0 auto 12px;
    }

    .supplier-benefits li::before {
        position: static;
        margin-right: 8px;
    }

    .supplier-form-wrapper {
        padding: 30px 20px;
        width: min(100%, 720px);
        margin: 0 auto;
    }

    .supplier-form input,
    .supplier-form textarea,
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .supplier-content h2 {
        font-size: 28px;
    }

    .supplier-content,
    .supplier-form-wrapper {
        padding: 0 12px;
    }

    .supplier-form-wrapper {
        padding: 22px 16px;
        width: 100%;
        margin: 0 auto;
    }

    .supplier-form input,
    .supplier-form textarea {
        font-size: 15px;
    }

    .btn-submit {
        padding: 14px;
    }
}















/* ===== FOOTER LINK HOVER EFFECT ===== */

footer a {
    color: #dcdcdc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Smooth underline animation */
footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #0c6b3f;
    transition: width 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

footer a:hover::after {
    width: 100%;
}












/* ==============================
   ROYAL HARVEST SOFT LUXURY THEME
============================== */

/* Typography and base layout reset (use fonts loaded in HTML head) */
:root{
    --font-sans: 'Lato', 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: linear-gradient(180deg, #f6fbf6, #eef7ee);
    color: #113223;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Container (slightly narrower on large screens) */
/* increase width to reduce empty gutter and add a bit of horizontal padding so
   elements always align with the viewport edges on wide layouts */
.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ================= HERO SECTION ================= */

.about-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/farm-field.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.36),
        rgba(0, 0, 0, 0.30)
    );
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 6px 18px rgba(0,0,0,0.55);
    animation: fadeDown 1.2s ease;
}

.cert-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/Certifications bg.png') center center/cover no-repeat;
    overflow: hidden;
}

.cert-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.45)
    );
    z-index: 1;
}

.cert-hero .container {
    position: relative;
    z-index: 2;
}

.cert-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #ffffff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
    animation: fadeDown 1.2s ease;
}

.cert-hero .tagline {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #f4fbf7;
    text-shadow: 0 4px 12px rgba(0,0,0,0.45);
    animation: fadeUp 1.4s ease;
}

/* ================= CONTENT SECTION ================= */

.about-content {
    padding: 120px 0;
}

.about-block {
    margin-bottom: 70px;
    padding: 40px;
    border-radius: 20px;

    /* solid white card for clear separation from light background */
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);

    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(40px);
}

.about-block.active {
    opacity: 1;
    transform: translateY(0);
}

.about-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.about-block h2 {
    margin-bottom: 20px;
    font-weight: 700;
    color: #14532d; /* darker green for visibility */
}

.about-block p {
    margin-bottom: 15px;
    color: #1f2937; /* dark text for readability */
}

/* ================= MISSION LIST ================= */

.mission-list {
    list-style: none;
}

.mission-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #1f2937; /* dark text for readability */
}

.mission-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #95d5b2;
    font-weight: bold;
}

/* ================= FEATURES GRID ================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.feature-box {
    padding: 25px;
    border-radius: 15px;
    background: rgba(183, 228, 199, 0.1);
    border: 1px solid rgba(183, 228, 199, 0.25);
    transition: 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    background: rgba(183, 228, 199, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.feature-box h3 {
    margin-bottom: 10px;
    color: #14532d; /* darker green for better contrast */
    font-weight: 700;
}

/* ================= COMMITMENT SECTION ================= */

.commitment {
    background: linear-gradient(135deg, rgba(183,228,199,0.12), rgba(183,228,199,0.05));
}

/* ================= ANIMATIONS ================= */

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-block {
        padding: 25px;
    }
}












/* ================= BECOME SUPPLIER SECTION ================= */

.become-supplier-section{
    padding: 100px 0;
    /* background intentionally left to image defined earlier to avoid overrides */
}

/* Grid Layout */
.supplier-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.supplier-content{
    position: relative;
    z-index: 2;
}

.supplier-content h2{
    font-size: 42px;
    font-weight: 700;
    color: #ffffff !important;
    /* reduced shadow for clarity */
    text-shadow: 0 2px 6px rgba(0,0,0,0.32);
}
.supplier-content p{
    font-size: 16px;
    color: #e4f3e5;
    text-shadow: 0 1px 8px rgba(0,0,0,0.14);
    line-height: 1.7;
    margin-bottom: 25px;
}

.supplier-benefits{
    list-style: none;
    padding: 0;
}

.supplier-benefits li{
    margin-bottom: 15px;
    font-size: 16px;
    color: #d8eed8;
    text-shadow: 0 1px 8px rgba(0,0,0,0.12);
    font-weight: 500;
}

/* RIGHT FORM */
.supplier-form-wrapper{
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.supplier-form-wrapper:hover{
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

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

.supplier-form label{
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.supplier-form input,
.supplier-form select,
.supplier-form textarea{
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.35);
    font-size: 14px;
    transition: 0.3s ease;
    outline: none;
    background: rgba(255,255,255,0.45);
    color: #1c1c1c;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.supplier-form input:focus,
.supplier-form select:focus,
.supplier-form textarea:focus{
    background: rgba(255,255,255,0.65);
    border-color: #0c6b3f;
    box-shadow: 0 0 0 3px rgba(12,107,63,0.12);
    background: rgba(255,255,255,0.85);
}

/* Submit Button */
.btn-submit{
    width: 100%;
    padding: 14px;
    background: #0c6b3f;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit:hover{
    background: #094d2d;
    transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px){
    .supplier-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .supplier-content h2{
        font-size: 32px;
    }
}

@media(max-width: 576px){
    .become-supplier-section{
        padding: 60px 20px;
    }

    .supplier-form-wrapper{
        padding: 20px;
        width: 100%;
        margin: 0 auto;
    }
}











/* ================= CONTACT HERO (duplicate - DISABLED) ================= */
/*
.contact-hero {
    position: relative;
    min-height: 60vh;
    margin-top: 80px;
    background: none;
    display: flex;
    align-items: center;
    color: #fff;
}

.contact-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(6,30,22,0.05);
    top: 0;
    left: 0;
    z-index: 1;
}
*/

.hero-content {
    position: relative;
    width: 90%;
    margin: auto;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #d4f5dd;
}

/* ================= CONTACT CARDS ================= */
.contact-cards {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 260px;
    padding: 22px 24px;
    border-radius: 15px;
    text-align: left;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.contact-card-info {
    flex: 1;
    min-width: 0;
}

.contact-card i {
    font-size: 32px;
    margin-bottom: 0;
    color: #a8ffb0;
}

.contact-card-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.contact-card-info p,
.contact-card-info a {
    margin: 0;
    font-size: 14px;
    color: #e6ffe9;
    line-height: 1.4;
    white-space: nowrap;
}

.contact-card-info a {
    color: inherit;
    text-decoration: none;
}

.contact-card-info a:hover {
    text-decoration: underline;
}

.contact-card.call-card .contact-card-header {
        justify-content: flex-start;
    }

    .contact-card.call-card .contact-card-header i {
        order: 0;
    }

    .contact-card.call-card .contact-card-header .contact-card-info {
        order: 1;
        flex: 1;
        min-width: 0;
    }









@media (max-width: 768px) {
    .contact-hero {
        padding-top: 80px;
        padding-bottom: 40px;
        min-height: auto;
        background-position: center top;
    }

    .contact-hero .hero-content {
        padding: 30px 18px;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .contact-cards {
        flex-direction: column;
        gap: 18px;
        margin-top: 28px;
    }

    .contact-card {
        min-width: 100%;
        padding: 24px;
    }

    .contact-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .contact-card.call-card .contact-card-header {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .contact-card {
        padding: 20px;
        border-radius: 14px;
    }
}

/* ================= BECOME SUPPLIER ================= */
.become-supplier {
    position: relative;
    padding: 100px 0;
    background: url('images/farm-field.jpg') center/cover no-repeat;
    color: #fff;
}
