﻿/* =========================================================
01. GLOBAL VARIABLES
========================================================= */

:root {
    --primary: #1f6b45;
    --primary-dark: #154d32;
    --accent: #d8a94d;
    --dark: #10231a;
    --text: #526057;
    --light: #f7faf8;
    --white: #ffffff;
}


/* =========================================================
02. GLOBAL / BODY
========================================================= */

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--dark);
}

a {
    text-decoration: none;
}


/* =========================================================
03. COMMON SECTION
========================================================= */

section {
    padding: 100px 0;
}


/* =========================================================
04. COMMON SECTION HEADING
========================================================= */

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

    .section-heading h2,
    .intro-section h2 {
        color: var(--navy);
        font-size: clamp(36px, 5vw, 54px);
        font-weight: 700;
        margin-bottom: 20px;
    }

        .section-heading h2 span,
        .intro-section h2 span {
            color: var(--blue);
        }

    .section-heading p,
    .intro-section p {
        color: var(--text);
        font-size: 17px;
        line-height: 1.8;
    }


/* =========================================================
05. PF INTERNATIONAL COLOR VARIABLES
========================================================= */

:root {
    --navy: #0b2347;
    --blue: #123d73;
    --gold: #c9a24d;
    --light: #f6f8fb;
    --dark: #101828;
    --text: #536071;
}


/* =========================================================
06. NAVBAR / HEADER
========================================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #edf1ee;
}

.navbar {
    min-height: 82px;
}

/* =========================================================
6.01 NAVBAR PREMIUM HOVER
========================================================= */

.navbar-nav .nav-link {
    position: relative;
    padding: 10px 18px;
    margin: 0 3px;
    border-radius: 25px;
    transition: all 0.3s ease;
}


    /* ONLY WHEN CURSOR IS ON MENU */

    .navbar-nav .nav-link:hover {
        color: var(--navy) !important;
        background: rgba(212, 175, 55, 0.12);
        transform: scale(1.08) translateY(-2px);
        border: 1px solid rgba(212, 175, 55, 0.55);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    }


    /* Gold underline */

    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 5px;
        width: 0;
        height: 2px;
        background: var(--gold);
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 50%;
    }
/* =========================================================
   PF INTERNATIONAL - NAVBAR LOGO
========================================================= */
/* ==============================
   NAVBAR BRAND
================================ */

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    height: 68px;
}

/* ==============================
   PF COMPLETE EMBLEM
   PF + WORLD + LEAF + SHIP
================================ */

.pf-logo {
    width: 70px;
    height: 70px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}


    /* Original image */

    .pf-logo img {
        position: absolute;
        width: 95px;
        height: 95px;
        max-width: none;
        left: -10px;
        top: -10px;
        object-fit: contain;
    }

/* ==============================
   BRAND INFORMATION
================================ */

.brand-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}


/* PF INTERNATIONAL */

.brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #b8872c;
    white-space: nowrap;
}

    .brand-name span {
        color: #071b3d;
        font-weight: 700;
    }


/* IMPORT EXPORT */

.brand-tagline {
    margin-top: 7px;
    font-family: Arial, sans-serif;
    font-size: 7px;
    letter-spacing: 1.7px;
    color: #071b3d;
    white-space: nowrap;
}

    .brand-tagline b {
        color: #b8872c;
        margin: 0 3px;
    }


/* CONNECTING QUALITY */

.brand-trust {
    margin-top: 6px;
    font-family: Arial, sans-serif;
    font-size: 6px;
    letter-spacing: 1.5px;
    color: #071b3d;
    white-space: nowrap;
}
/* =========================================================
 08  MOBILE NAVBAR - HAMBURGER RIGHT
========================================================= */
/* =========================================================
   SMALL PREMIUM HAMBURGER
========================================================= */

.custom-toggler {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 22px;
}

    .custom-toggler span {
        display: block;
        width: 22px;
        height: 2px;
        background: #07382a;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

.navbar-toggler {
    border: none !important;
    padding: 7px;
    box-shadow: none !important;
}

    .navbar-toggler:focus {
        box-shadow: none !important;
    }


/* =========================================================
   08. MOBILE NAVBAR - HAMBURGER RIGHT
========================================================= */

/* Small Premium Hamburger */

.custom-toggler {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 22px;
}

    .custom-toggler span {
        display: block;
        width: 22px;
        height: 2px;
        background: #07382a;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

.navbar-toggler {
    border: none !important;
    padding: 7px;
    box-shadow: none !important;
}

    .navbar-toggler:focus {
        box-shadow: none !important;
    }


/* =========================================================
   08.1 MOBILE - KEEP HAMBURGER ON TOP RIGHT
========================================================= */

@media (max-width: 991.98px) {

    .main-header .navbar > .container {
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }

    /* Logo stays on left */
    .main-header .navbar-brand {
        margin-right: 0 !important;
        flex: 0 1 auto !important;
    }

    /* 3-line hamburger stays on TOP RIGHT */
    .main-header .navbar-toggler {
        margin-left: auto !important;
        margin-right: 0 !important;
        order: 2 !important;
        flex-shrink: 0 !important;
        position: relative !important;
        z-index: 9999 !important;
    }

    /* Menu comes BELOW logo + hamburger */
    .main-header .navbar-collapse {
        order: 3 !important;
        flex-basis: 100% !important;
        width: 100% !important;
    }
}
/* =========================================================
   MOBILE MENU - RIGHT SIDE + TOP ALIGNMENT
========================================================= */

@media (max-width: 991.98px) {

    .main-header .navbar .container {
        display: flex;
        align-items: center;
    }

    /* Hamburger right side */
    .main-header .navbar-toggler {
        margin-left: auto !important;
        margin-right: 0 !important;
        order: 2;
    }

    .main-header .navbar-brand {
        margin-right: 0;
    }

    /* Menu items start from top */
    .main-header .navbar-collapse {
        width: 100%;
        margin-top: 15px;
    }

    .main-header .navbar-nav {
        width: 100%;
        margin-top: 0 !important;
        padding-top: 0 !important;
        align-items: stretch !important;
    }

        .main-header .navbar-nav .nav-item {
            width: 100%;
            margin-top: 0 !important;
        }

        .main-header .navbar-nav .nav-link {
            width: 100%;
        }
}

/* =========================================================
08. NAVIGATION LINKS
========================================================= */

.nav-link {
    color: #33443b !important;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 13px !important;
    transition: 0.3s ease;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary) !important;
    }


/* =========================================================
09. NAVBAR CUSTOM BUTTON
========================================================= */

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    padding: 12px 21px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

    .btn-primary-custom:hover {
        background: var(--primary-dark);
        color: var(--white);
        transform: translateY(-2px);
    }

    .btn-primary-custom i {
        margin-left: 6px;
    }


/* =========================================================
10. WHATSAPP FLOATING BUTTON
========================================================= */

.whatsapp-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    font-size: 27px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: 0.3s ease;
}

    .whatsapp-btn:hover {
        color: white;
        transform: scale(1.08);
    }


/* =========================================================
11. INTRODUCTION SECTION
========================================================= */

.intro-section {
    background: white;
}

    .intro-section .section-tag {
        color: var(--blue);
    }

.learn-more-btn {
    display: inline-block;
    margin-top: 15px;
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.intro-card {
    padding: 60px 45px;
    background: var(--light);
    border-left: 5px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.intro-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.intro-card h3 {
    color: var(--navy);
    font-size: 30px;
}

.intro-card p {
    margin-bottom: 0;
}

.brand-title {
    display: block;
    color: var(--gold);
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* =========================================================
12. SERVICES SECTION
========================================================= */

.services-section {
    background: var(--light);
}

.service-card {
    height: 100%;
    padding: 40px 30px;
    background: white;
    border: 1px solid #e5eaf0;
    transition: .3s ease;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
        border-color: var(--gold);
    }

.service-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text);
    line-height: 1.7;
}


/* =========================================================
   PREMIUM PRODUCTS SECTION
========================================================= */

.products-section {
    padding: 100px 0;
    background: #f8faf7;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.premium-product-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(7, 56, 42, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    height: 100%;
}


    /* Card hover */

    .premium-product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(7, 56, 42, 0.16);
    }


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.premium-product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #eef3ef;
}


    /* Image */

    .premium-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    }


/* Image zoom */

.premium-product-card:hover
.premium-product-image img {
    transform: scale(1.10);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.product-overlay {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
}


    /* Premium badge */

    .product-overlay span {
        display: inline-block;
        padding: 7px 13px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.92);
        color: #07382A;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1.5px;
        backdrop-filter: blur(8px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
        transform: translateY(8px);
        opacity: 0;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }


/* Badge animation */

.premium-product-card:hover
.product-overlay span {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   IMAGE SHINE
========================================================= */

.premium-product-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.25), transparent );
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    pointer-events: none;
}


/* Shine on hover */

.premium-product-card:hover
.premium-product-image::after {
    left: 130%;
}


/* =========================================================
   PRODUCT BOTTOM
========================================================= */

.premium-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 22px 22px 24px;
    background: #ffffff;
}


    .premium-product-bottom h3 {
        margin: 0;
        color: #07382A;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: 0.2px;
    }


/* =========================================================
   VIEW MORE BUTTON
========================================================= */

.product-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 30px;
    text-decoration: none;
    color: #ffffff;
    background: #07382A;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}


    /* Arrow */

    .product-view-btn span {
        font-size: 17px;
        line-height: 10px;
        transition: transform 0.3s ease;
    }


    /* Button hover */

    .product-view-btn:hover {
        color: #ffffff;
        background: #D4AF37;
        transform: translateX(2px);
        box-shadow: 0 7px 18px rgba(212, 175, 55, 0.30);
    }


        /* Arrow animation */

        .product-view-btn:hover span {
            transform: translateX(5px);
        }


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .products-section {
        padding: 70px 0;
    }

    .premium-product-image {
        height: 250px;
    }

    .premium-product-bottom {
        padding: 18px;
    }

        .premium-product-bottom h3 {
            font-size: 18px;
        }

    .product-view-btn {
        padding: 8px 13px;
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .premium-product-image {
        height: 230px;
    }

    .premium-product-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-view-btn {
        width: 100%;
        justify-content: center;
    }
}



/* =========================================================
   PREMIUM WHY US CARD
========================================================= */

.why-card {
    position: relative;
    height: 100%;
    padding: 38px 30px;
    background: linear-gradient( 145deg, #ffffff, #f5f9f6 );
    border: 1px solid rgba(7, 56, 42, 0.10);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(4, 45, 32, 0.07);
    transition: all 0.4s ease;
}


    /* Premium top line */

    .why-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: var(--gold);
        transform: translateX(-50%);
        transition: width 0.4s ease;
    }


    /* Soft glow */

    .why-card::after {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        right: -80px;
        bottom: -80px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.07);
        transition: all 0.4s ease;
    }


    /* Hover */

    .why-card:hover {
        transform: translateY(-10px);
        border-color: rgba(212, 175, 55, 0.45);
        box-shadow: 0 22px 45px rgba(4, 45, 32, 0.13), 0 0 25px rgba(212, 175, 55, 0.10);
    }


        .why-card:hover::before {
            width: 70%;
        }


        .why-card:hover::after {
            width: 230px;
            height: 230px;
        }


    /* Title */

    .why-card h3 {
        position: relative;
        z-index: 2;
        color: #07382a;
        font-size: 22px;
        font-weight: 750;
        margin-bottom: 12px;
        transition: 0.3s ease;
    }


    .why-card:hover h3 {
        color: #a47b12;
    }


    /* Text */

    .why-card p {
        position: relative;
        z-index: 2;
        color: #6d7c74;
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
    }
/* =========================================================
15. CTA / CALL TO ACTION SECTION
========================================================= */

.cta-section {
    background: var(--navy);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: auto;
}

.light-tag {
    color: var(--gold);
}

.cta-content h2 {
    color: white;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.15;
    margin-bottom: 20px;
}

    .cta-content h2 span {
        color: var(--gold);
    }

.cta-content p {
    color: #d7dfeb;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
}

    .cta-button:hover {
        background: white;
        color: var(--navy);
    }


/* =========================================================
16. AGRICULTURAL HERO SECTION
========================================================= */

.pf-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #163f32;
    color: #fff;
}


/* =========================================================
17. HERO AGRICULTURAL BACKGROUND
========================================================= */

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/image/Agriculture2.jpeg');
    background-size: cover;
    background-position: center;
    animation: farmZoom 18s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes farmZoom {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}


/* =========================================================
18. HERO DARK OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(7, 38, 29, 0.94) 0%, rgba(11, 52, 39, 0.82) 40%, rgba(9, 45, 34, 0.45) 75%, rgba(7, 35, 28, 0.35) 100% );
    z-index: 1;
}


/* =========================================================
19. HERO SUNLIGHT EFFECT
========================================================= */

.sun-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    top: -180px;
    background: radial-gradient( circle, rgba(255, 205, 90, 0.22), transparent 70% );
    border-radius: 50%;
    animation: sunlight 7s ease-in-out infinite alternate;
    z-index: 2;
}

@keyframes sunlight {

    from {
        opacity: .4;
        transform: scale(1);
    }

    to {
        opacity: .8;
        transform: scale(1.15);
    }
}


/* =========================================================
20. HERO CONTAINER
========================================================= */

.hero-container {
    position: relative;
    z-index: 5;
}


/* =========================================================
21. HERO MAIN CONTENT
========================================================= */

.hero-content {
    max-width: 720px;
    padding: 80px 0;
}


/* =========================================================
22. HERO TOP TAG
========================================================= */

.hero-tag {
    display: inline-flex;
    padding: 9px 18px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    color: #f4c75b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    animation: fadeUp .9s ease both;
}


/* =========================================================
23. HERO HEADING
========================================================= */

.hero-content h1 {
    font-size: clamp(45px, 6vw, 78px);
    line-height: 1.02;
    font-weight: 700;
    margin: 0 0 25px;
    letter-spacing: -2px;
    animation: fadeUp 1s ease .15s both;
}

    .hero-content h1 span {
        display: block;
        color: #f4c75b;
    }


/* =========================================================
24. HERO DESCRIPTION
========================================================= */

.hero-text {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 30px;
    animation: fadeUp 1s ease .3s both;
}


/* =========================================================
25. HERO FARM TO GLOBAL FLOW
========================================================= */

.hero-flow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
    animation: fadeUp 1s ease .45s both;
}

    .hero-flow .flow-item {
        display: flex;
        align-items: center;
        gap: 7px;
        color: #fff;
    }

        .hero-flow .flow-item span {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 50%;
            backdrop-filter: blur(5px);
            font-size: 18px;
        }

        .hero-flow .flow-item small {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, .8);
        }

    .hero-flow .flow-line {
        width: 28px;
        height: 1px;
        background: rgba(244, 199, 91, .6);
    }


/* =========================================================
26. HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeUp 1s ease .6s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 170px;
    padding: 15px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s ease;
}

.primary-btn {
    background: #f4c75b;
    color: #173c30;
}

    .primary-btn:hover {
        background: #fff;
        color: #173c30;
        transform: translateY(-3px);
    }

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, .7);
    color: #fff;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(8px);
}

    .secondary-btn:hover {
        background: #fff;
        color: #173c30;
        transform: translateY(-3px);
    }


/* =========================================================
27. HERO RIGHT SIDE VISUAL
========================================================= */

.hero-visual {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: visualAppear 1.2s ease .3s both;
}


/* =========================================================
28. HERO IMAGE CARD
========================================================= */

.visual-card {
    position: relative;
    width: 360px;
    height: 440px;
    border-radius: 180px 180px 25px 25px;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, .8);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    transform: rotate(3deg);
    background: #fff;
}

/* =========================================================
29. HERO CARD IMAGE
========================================================= */

.visual-image {
    position: absolute;
    inset: 0;
    background-image: linear-gradient( to bottom, transparent 30%, rgba(7, 40, 30, .9) ), url('/image/Agriculture2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: imageMove 12s ease-in-out infinite alternate;
}

@keyframes imageMove {

    from {
        background-position: center;
    }

    to {
        background-position: 55% center;
    }
}

/* =========================================================
30. HERO CARD CONTENT
========================================================= */

.visual-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 2;
}

    .visual-content span {
        font-size: 10px;
        letter-spacing: 2px;
        color: #f4c75b;
        font-weight: 700;
    }

    .visual-content h3 {
        margin: 8px 0 0;
        font-size: 35px;
        line-height: 1.05;
        color: #fff;
    }


/* =========================================================
31. GLOBAL REACH BADGE
========================================================= */

.global-badge {
    position: absolute;
    right: 0;
    bottom: 55px;
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #173c30;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
    animation: floatingBadge 4s ease-in-out infinite;
}

    .global-badge span {
        font-size: 28px;
    }

    .global-badge strong {
        color: #f4c75b;
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .global-badge small {
        font-size: 9px;
        letter-spacing: 2px;
        color: #fff;
    }


/* =========================================================
32. FLOATING AGRICULTURAL LEAVES
========================================================= */

.floating-leaves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.leaf {
    position: absolute;
    opacity: .35;
    font-size: 30px;
    filter: blur(.2px);
}

.leaf-1 {
    left: 8%;
    top: 20%;
    animation: leafFloat 7s ease-in-out infinite;
}

.leaf-2 {
    left: 30%;
    top: 75%;
    animation: leafFloat 9s ease-in-out infinite reverse;
}

.leaf-3 {
    right: 15%;
    top: 18%;
    animation: leafFloat 8s ease-in-out infinite;
}

.leaf-4 {
    right: 35%;
    bottom: 15%;
    animation: leafFloat 10s ease-in-out infinite reverse;
}

.leaf-5 {
    left: 48%;
    top: 12%;
    animation: leafFloat 6s ease-in-out infinite;
}

.leaf-6 {
    right: 8%;
    bottom: 30%;
    animation: leafFloat 11s ease-in-out infinite reverse;
}


/* =========================================================
33. LEAF ANIMATION
========================================================= */

@keyframes leafFloat {

    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(25px, -20px) rotate(20deg);
    }

    100% {
        transform: translate(-10px, 15px) rotate(-10deg);
    }
}


/* =========================================================
34. HERO FADE-UP ANIMATION
========================================================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
35. HERO VISUAL APPEAR ANIMATION
========================================================= */

@keyframes visualAppear {

    from {
        opacity: 0;
        transform: translateX(50px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}


/* =========================================================
36. GLOBAL BADGE FLOATING ANIMATION
========================================================= */

@keyframes floatingBadge {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* =========================================================
37. HERO BOTTOM CURVE
========================================================= */

.hero-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    clip-path: ellipse(70% 60% at 50% 100%);
    z-index: 6;
}


/* =========================================================
38. PRODUCTION FLOW SECTION
========================================================= */

.production-section {
    background: #f6f8fb;
    overflow: hidden;
}

/* Main Slider */

.production-flow {
    display: flex;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    /* IMPORTANT */
    overflow-x: auto;
    overflow-y: hidden;
    /* First card ला पूर्ण जागा */
    padding: 20px 20px 35px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* Slider सुरुवात पहिल्या card पासून */
    scroll-snap-type: x proximity;
}

    /* First & Last card ला extra space */

    .production-flow .flow-item:first-child {
        margin-left: 5px;
    }

    .production-flow .flow-item:last-child {
        margin-right: 5px;
    }

    /* =========================================================
PRODUCTION CARD
========================================================= */

    .production-flow .flow-item {
        flex: 0 0 170px;
        width: 170px;
        min-width: 170px;
        min-height: 210px;
        background: #ffffff;
        padding: 28px 18px;
        box-sizing: border-box;
        text-align: center;
        border-top: 4px solid var(--gold);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        scroll-snap-align: start;
        transition: 0.3s ease;
    }

        /* Hover */

        .production-flow .flow-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
        }

    /* =========================================================
PRODUCTION ICON
========================================================= */

    .production-flow .flow-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
        margin: 0 auto 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #eef3f8;
        color: var(--navy);
        font-size: 28px;
    }

    /* =========================================================
PRODUCTION TITLE
========================================================= */

    .production-flow .flow-item h3 {
        margin: 0 0 8px;
        color: var(--navy);
        font-size: 17px;
        line-height: 1.3;
        font-weight: 700;
        overflow-wrap: break-word;
    }

    /* =========================================================
PRODUCTION DESCRIPTION
========================================================= */

    .production-flow .flow-item p {
        margin: 0;
        color: var(--text);
        font-size: 13px;
        line-height: 1.55;
        overflow-wrap: break-word;
    }

    /* =========================================================
FLOW ARROW
========================================================= */

    .production-flow .flow-line {
        flex: 0 0 35px;
        width: 35px;
        min-width: 35px;
        height: 2px;
        align-self: center;
        background: var(--gold);
        position: relative;
    }

        /* Arrow Head */

        .production-flow .flow-line::after {
            content: "›";
            position: absolute;
            right: -4px;
            top: -15px;
            font-size: 28px;
            line-height: 1;
            color: var(--gold);
        }

    /* =========================================================
SLIDER SCROLLBAR
========================================================= */

    .production-flow::-webkit-scrollbar {
        height: 7px;
    }

    .production-flow::-webkit-scrollbar-track {
        background: #e9edf2;
        border-radius: 10px;
    }

    .production-flow::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 10px;
    }

        .production-flow::-webkit-scrollbar-thumb:hover {
            background: var(--blue);
        }


/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

    .production-flow {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* =========================================================
MOBILE PRODUCTION FLOW
========================================================= */

@media (max-width: 768px) {

    .production-flow {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        overflow: visible;
        padding: 10px 20px 30px;
        scroll-snap-type: none;
    }

        .production-flow .flow-item {
            width: 100%;
            min-width: 100%;
            flex: none;
            min-height: auto;
            padding: 25px 20px;
            margin: 0 !important;
        }

        /* Mobile Arrow */

        .production-flow .flow-line {
            flex: none;
            width: 2px;
            min-width: 2px;
            height: 35px;
            margin: 0 auto;
            background: var(--gold);
        }

            .production-flow .flow-line::after {
                content: "↓";
                right: auto;
                left: -8px;
                top: 10px;
                font-size: 24px;
            }
}


/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .production-flow {
        padding-left: 15px;
        padding-right: 15px;
    }

        .production-flow .flow-item {
            padding: 22px 16px;
        }

        .production-flow .flow-icon {
            width: 58px;
            height: 58px;
            min-width: 58px;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .production-flow .flow-item h3 {
            font-size: 16px;
        }

        .production-flow .flow-item p {
            font-size: 13px;
            line-height: 1.5;
        }
}
/* =========================================================
39. ABOUT US SECTION
========================================================= */

.about-section {
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}


/* =========================================================
40. ABOUT IMAGE WRAPPER
========================================================= */

.about-image-wrapper {
    position: relative;
    padding: 20px;
    width: 100%;
}

    .about-image-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 75%;
        height: 75%;
        border: 2px solid var(--gold);
        z-index: 0;
        pointer-events: none;
    }


/* =========================================================
41. ABOUT IMAGE BOX
========================================================= */

.about-image-box {
    position: relative;
    width: 100%;
    background: #f5f7fa;
    border-radius: 18px;
    padding: 10px;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}


/* =========================================================
42. ABOUT MAIN IMAGE
========================================================= */

.about-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
    z-index: 1;
}


/* =========================================================
43. ABOUT EXPERIENCE BADGE
========================================================= */

.about-experience {
    position: absolute;
    right: -5px;
    bottom: 25px;
    width: 145px;
    height: 145px;
    background: var(--navy);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    border: 5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

    .about-experience strong {
        color: var(--gold);
        font-size: 38px;
        line-height: 1;
        font-weight: 700;
    }

    .about-experience span {
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-top: 7px;
        text-transform: uppercase;
    }


/* =========================================================
44. ABOUT CONTENT
========================================================= */

.about-section .section-tag {
    display: inline-block;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-section h2 {
    color: var(--navy);
    font-size: clamp(35px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 25px;
}

    .about-section h2 span {
        color: var(--blue);
    }

.about-section p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro {
    font-size: 18px !important;
    color: #354456 !important;
    font-weight: 500;
    line-height: 1.7 !important;
}


/* =========================================================
45. ABOUT HIGHLIGHTS
========================================================= */

.about-highlights {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-highlight {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.highlight-icon {
    min-width: 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef3f8;
    color: var(--gold);
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.about-highlight h4 {
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px;
}

.about-highlight p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    color: #667085 !important;
}


/* =========================================================
46. ABOUT BUTTON
========================================================= */

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 30px;
    padding: 14px 25px;
    background: var(--navy);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .about-button:hover {
        background: var(--gold);
        color: var(--navy);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

/* =========================================================
47. PREMIUM FOOTER
========================================================= */

.main-footer {
    position: relative;
    background: radial-gradient( circle at 90% 15%, rgba(212, 175, 55, 0.10), transparent 28% ), radial-gradient( circle at 10% 90%, rgba(20, 100, 70, 0.16), transparent 30% ), linear-gradient( 135deg, #041f17, #07382a 50%, #021812 );
    color: #b8c6bd;
    padding: 70px 0 25px;
    overflow: hidden;
}


    /* Premium Gold Top Line */

    .main-footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient( 90deg, transparent, var(--gold), transparent );
    }


    /* Decorative Circle */

    .main-footer::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        right: -180px;
        bottom: -200px;
        border: 1px solid rgba(212, 175, 55, 0.12);
        border-radius: 50%;
        pointer-events: none;
    }


/* =========================================================
FOOTER BRAND
========================================================= */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}


.footer-logo {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient( 135deg, #0a4a35, #07382a );
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25), 0 0 15px rgba(212, 175, 55, 0.12);
    transition: all .35s ease;
}


.footer-brand:hover .footer-logo {
    transform: translateY(-3px) rotate(4deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.30), 0 0 20px rgba(212, 175, 55, 0.25);
}


.footer-brand strong {
    display: block;
    color: white;
    letter-spacing: 1px;
    font-size: 17px;
}


.footer-brand span {
    display: block;
    font-size: 11px;
    color: var(--gold);
    margin-top: 4px;
    letter-spacing: 1.5px;
}


/* =========================================================
FOOTER DESCRIPTION
========================================================= */

.footer-description {
    max-width: 450px;
    line-height: 1.8;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
}


/* =========================================================
FOOTER HEADINGS
========================================================= */

.main-footer h5 {
    position: relative;
    display: inline-block;
    color: white;
    font-size: 16px;
    margin-bottom: 23px;
    font-weight: 700;
}


    /* Gold underline */

    .main-footer h5::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 30px;
        height: 2px;
        background: var(--gold);
        border-radius: 10px;
    }


/* =========================================================
48. FOOTER LINKS
========================================================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}


    .footer-links li {
        margin-bottom: 10px;
    }


    .footer-links a {
        color: #aebdb4;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }


        .footer-links a:hover {
            color: var(--gold);
            transform: translateX(6px);
        }


/* =========================================================
49. FOOTER CONTACT
========================================================= */

.footer-contact p {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 13px;
    color: #b8c6bd;
}


.footer-contact i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 9px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.10);
    color: var(--gold);
    font-size: 13px;
}


.main-footer hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    margin: 45px 0 20px;
}


/* =========================================================
OFFICE HOURS
========================================================= */

.office-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}


    .office-hours li {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        padding: 5px 0;
        color: #aebdb4;
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }


        .office-hours li:last-child {
            border-bottom: none;
        }


        .office-hours li span:last-child {
            color: var(--gold);
            font-weight: 600;
            white-space: nowrap;
        }


/* =========================================================
50. FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


    .footer-bottom p {
        margin: 0;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
    }


/* =========================================================
51. FOOTER SOCIAL LINKS
========================================================= */

.social-links {
    display: flex;
    gap: 10px;
}


    .social-links a {
        width: 37px;
        height: 37px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(212, 175, 55, 0.25);
        border-radius: 50%;
        color: #b8c6bd;
        background: rgba(255, 255, 255, 0.04);
        text-decoration: none;
        transition: all 0.35s ease;
    }


        .social-links a:hover {
            background: var(--gold);
            color: #07382a;
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
        }


/* =========================================================
MOBILE FOOTER
========================================================= */

@media (max-width: 768px) {

    .main-footer {
        padding: 55px 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-description {
        max-width: 100%;
    }
}

/* =========================================================
   FINAL RESPONSIVE FIX
   Footer + WhatsApp + Social Icons
   ========================================================= */

/* Prevent horizontal screen cutting */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* =========================================================
   FOOTER - SAFE WIDTH
========================================================= */

.main-footer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}


    /* Make footer columns fit inside screen */

    .main-footer .container {
        width: 100%;
        max-width: 1320px;
        box-sizing: border-box;
    }


/* =========================================================
   FOOTER CONTENT
========================================================= */

.footer-description {
    max-width: 450px;
    overflow-wrap: anywhere;
    word-break: normal;
}


/* Footer links should never create horizontal scroll */

.footer-links,
.footer-contact,
.office-hours {
    max-width: 100%;
}


    /* Long email / phone / text */

    .footer-contact p {
        max-width: 100%;
        overflow-wrap: anywhere;
    }


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


/* Social icons stay inside screen */

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .main-footer {
        padding: 60px 0 25px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom {
        flex-wrap: wrap;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .main-footer {
        padding: 50px 0 25px;
    }

        .main-footer .container {
            width: 100%;
            padding-left: 20px;
            padding-right: 20px;
        }


        /* Footer columns */

        .main-footer [class*="col-"] {
            width: 100%;
            max-width: 100%;
        }


    /* Footer bottom */

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 18px;
    }


    /* Social icons */

    .social-links {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }


        .social-links a {
            flex: 0 0 37px;
        }


    /* Footer text */

    .footer-description {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
    }


    .footer-contact p {
        font-size: 13px;
        line-height: 1.6;
    }


    .office-hours li {
        gap: 10px;
        flex-wrap: wrap;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .main-footer {
        padding: 45px 0 25px;
    }


        .main-footer .container {
            padding-left: 16px;
            padding-right: 16px;
        }


    .footer-brand {
        gap: 10px;
    }


    .footer-logo {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }


    .footer-brand strong {
        font-size: 16px;
    }


    .footer-brand span {
        font-size: 9px;
    }


    .main-footer h5 {
        font-size: 15px;
    }


    .footer-links a {
        font-size: 13px;
    }


    .footer-bottom p {
        font-size: 11px;
        line-height: 1.6;
    }


    /* Social icons */

    .social-links {
        gap: 8px;
    }


        .social-links a {
            width: 36px;
            height: 36px;
            flex: 0 0 36px;
        }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .main-footer .container {
        padding-left: 12px;
        padding-right: 12px;
    }


    .social-links {
        gap: 6px;
    }


        .social-links a {
            width: 34px;
            height: 34px;
            flex-basis: 34px;
        }


    .footer-bottom p {
        font-size: 10px;
    }
}



/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */

.whatsapp-float,
.whatsapp-btn {
    position: fixed !important;
    right: 18px !important;
    bottom: 18px !important;
    width: 52px;
    height: 52px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 99999 !important;
    border-radius: 50%;
    box-sizing: border-box;
}


/* Mobile */

@media (max-width: 768px) {

    .whatsapp-float,
    .whatsapp-btn {
        right: 15px !important;
        bottom: 15px !important;
        width: 52px;
        height: 52px;
    }
}


/* Small mobile */

@media (max-width: 480px) {

    .whatsapp-float,
    .whatsapp-btn {
        right: 12px !important;
        bottom: 12px !important;
        width: 50px;
        height: 50px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .whatsapp-float {
        display: flex !important;
        right: 15px !important;
        bottom: 18px !important;
        width: 52px;
        height: 52px;
        font-size: 25px;
        z-index: 99999 !important;
    }
}
/* =========================================================
52. TABLET RESPONSIVE - NAVBAR
========================================================= */

@media (max-width: 991px) {

    .navbar {
        min-height: 72px;
    }

    .navbar-collapse {
        padding: 20px 0;
    }

    .nav-link {
        padding: 11px 0 !important;
    }

    .nav-item.ms-lg-3 {
        margin-left: 0 !important;
    }

    .btn-primary-custom {
        display: inline-block;
    }
}


/* =========================================================
53. TABLET RESPONSIVE - HERO
========================================================= */

@media (max-width: 991px) {

    .hero-content {
        padding: 110px 0 40px;
        text-align: center;
        margin: auto;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-flow {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: 500px;
    }
}


/* =========================================================
54. LARGE TABLET - ABOUT
========================================================= */

@media (max-width: 1199px) {

    .about-section {
        padding: 85px 0;
    }

    .about-image-wrapper {
        padding: 15px;
    }

    .about-experience {
        width: 130px;
        height: 130px;
        right: -2px;
        bottom: 20px;
    }

        .about-experience strong {
            font-size: 34px;
        }
}


/* =========================================================
55. TABLET - ABOUT
========================================================= */

@media (max-width: 991px) {

    .about-section {
        padding: 75px 0;
    }

    .about-image-wrapper {
        max-width: 750px;
        margin: 0 auto 50px;
        padding: 15px;
    }

    .about-image-box {
        padding: 8px;
        border-radius: 16px;
    }

    .about-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .about-experience {
        width: 125px;
        height: 125px;
        right: 0;
        bottom: 15px;
    }

        .about-experience strong {
            font-size: 32px;
        }

    .about-section h2 {
        font-size: 42px;
    }
}


/* =========================================================
56. MOBILE - GENERAL
========================================================= */

@media (max-width: 768px) {

    .hero-section {
        min-height: 600px;
        background-position: center;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-text p {
        font-size: 16px;
    }

    section {
        padding: 70px 0;
    }

    .intro-card {
        padding: 35px 25px;
    }

    .product-image {
        height: 230px;
    }
}


/* =========================================================
57. MOBILE - PRODUCTION FLOW
========================================================= */

@media (max-width: 768px) {

    .production-flow {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        overflow: visible;
        padding: 10px 15px 30px;
    }

        .production-flow .flow-item {
            width: 100%;
            max-width: 100%;
            min-width: 0;
            min-height: auto;
            padding: 25px 20px;
            box-sizing: border-box;
            overflow: hidden;
        }

        .production-flow .flow-icon {
            width: 60px;
            height: 60px;
            min-width: 60px;
            min-height: 60px;
            margin-bottom: 15px;
            font-size: 25px;
        }

        .production-flow .flow-item h3 {
            font-size: 17px;
            line-height: 1.4;
            margin-bottom: 8px;
            overflow-wrap: break-word;
        }

        .production-flow .flow-item p {
            font-size: 13px;
            line-height: 1.6;
            overflow-wrap: anywhere;
        }

        /* Vertical Arrow */

        .production-flow .flow-line {
            width: 2px;
            min-width: 2px;
            height: 35px;
            margin: 0 auto;
            align-self: auto;
        }

            .production-flow .flow-line::after {
                content: "↓";
                right: auto;
                left: 50%;
                top: 8px;
                transform: translateX(-50%);
                font-size: 24px;
                line-height: 1;
                color: var(--gold);
            }
}


/* =========================================================
58. MOBILE - ABOUT
========================================================= */

@media (max-width: 767px) {

    .about-section {
        padding: 60px 0;
    }

    .about-image-wrapper {
        padding: 10px;
        margin-bottom: 40px;
    }

        .about-image-wrapper::before {
            width: 70%;
            height: 70%;
            border-width: 1.5px;
        }

    .about-image-box {
        padding: 6px;
        border-radius: 14px;
    }

    .about-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
    }

    .about-experience {
        width: 105px;
        height: 105px;
        right: -2px;
        bottom: 10px;
        border-width: 4px;
    }

        .about-experience strong {
            font-size: 27px;
        }

        .about-experience span {
            font-size: 9px;
            letter-spacing: 1px;
            margin-top: 5px;
        }

    .about-section .section-tag {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .about-section h2 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .about-section p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-intro {
        font-size: 17px !important;
        line-height: 1.65 !important;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 25px;
    }

    .about-highlight {
        gap: 12px;
    }

    .highlight-icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .about-highlight h4 {
        font-size: 15px;
    }

    .about-highlight p {
        font-size: 13px !important;
    }

    .about-button {
        width: 100%;
        margin-top: 25px;
        padding: 14px 20px;
    }
}


/* =========================================================
59. SMALL MOBILE - NAVBAR / WHATSAPP / FOOTER
========================================================= */

@media (max-width: 576px) {

    .brand-icon {
        width: 39px;
        height: 39px;
        font-size: 18px;
    }

    .brand-logo strong {
        font-size: 18px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }

    .main-footer {
        padding: 50px 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}


/* =========================================================
60. SMALL MOBILE - HERO
========================================================= */

@media (max-width: 576px) {

    .pf-hero {
        min-height: auto;
    }

    .hero-content {
        padding: 110px 20px 30px;
    }

    .hero-tag {
        font-size: 9px;
        letter-spacing: 1px;
        padding: 8px 13px;
    }

    .hero-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Hero Flow */

    .hero-flow {
        gap: 5px;
        margin-bottom: 25px;
    }

        .hero-flow .flow-item {
            flex-direction: column;
            gap: 4px;
        }

            .hero-flow .flow-item span {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }

            .hero-flow .flow-item small {
                font-size: 8px;
            }

        .hero-flow .flow-line {
            width: 12px;
        }

    /* Hero Buttons */

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
    }

    /* Hero Visual */

    .hero-visual {
        height: 430px;
        margin-top: 10px;
        padding-bottom: 60px;
    }

    .visual-card {
        width: 270px;
        height: 350px;
    }

    .visual-content h3 {
        font-size: 28px;
    }

    .global-badge {
        width: 95px;
        height: 95px;
        right: 20px;
        bottom: 65px;
    }

        .global-badge span {
            font-size: 22px;
        }

        .global-badge strong {
            font-size: 10px;
        }

        .global-badge small {
            font-size: 7px;
        }

    .hero-bottom {
        height: 35px;
    }
}


/* =========================================================
61. SMALL MOBILE - ABOUT
========================================================= */

@media (max-width: 480px) {

    .about-section {
        padding: 50px 0;
    }

    .about-image-wrapper {
        padding: 7px;
        margin-bottom: 35px;
    }

    .about-image-box {
        padding: 5px;
        border-radius: 12px;
    }

    .about-image {
        border-radius: 8px;
    }

    .about-experience {
        width: 90px;
        height: 90px;
        right: -3px;
        bottom: 5px;
        border-width: 3px;
    }

        .about-experience strong {
            font-size: 23px;
        }

        .about-experience span {
            font-size: 8px;
            letter-spacing: .8px;
        }

    .about-section h2 {
        font-size: 30px;
    }

    .about-section p {
        font-size: 14px;
        line-height: 1.65;
    }

    .about-intro {
        font-size: 16px !important;
    }

    .about-button {
        font-size: 14px;
        padding: 13px 18px;
    }
}


/* =========================================================
62. REDUCE MOTION / ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}


/* =========================================================
63. EXTRA SMALL MOBILE - PRODUCTION FLOW
========================================================= */

@media (max-width: 480px) {

    .production-flow {
        padding-left: 12px;
        padding-right: 12px;
    }

        .production-flow .flow-item {
            padding: 22px 16px;
        }

        .production-flow .flow-icon {
            width: 55px;
            height: 55px;
            min-width: 55px;
            min-height: 55px;
            font-size: 23px;
        }

        .production-flow .flow-item h3 {
            font-size: 16px;
            line-height: 1.35;
        }

        .production-flow .flow-item p {
            font-size: 12.5px;
            line-height: 1.55;
        }
}
/* =========================================================
   PREMIUM CTA SECTION
========================================================= */

.cta-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient( 135deg, rgba(4, 45, 32, 0.97), rgba(7, 70, 48, 0.95) );
    overflow: hidden;
}


    /* Decorative circles */

    .cta-section::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border: 1px solid rgba(212, 175, 55, 0.25);
        border-radius: 50%;
        top: -160px;
        right: -100px;
    }


    .cta-section::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        border: 1px solid rgba(212, 175, 55, 0.18);
        border-radius: 50%;
        bottom: -130px;
        left: -80px;
    }


/* CTA Content */

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    text-align: center;
    padding: 65px 45px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25), inset 0 0 40px rgba(255, 255, 255, 0.03);
}


    /* Section Tag */

    .cta-content .light-tag {
        display: inline-block;
        color: var(--gold);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 3px;
        margin-bottom: 20px;
        padding: 8px 18px;
        border: 1px solid rgba(212, 175, 55, 0.45);
        border-radius: 30px;
        background: rgba(212, 175, 55, 0.08);
    }


    /* Heading */

    .cta-content h2 {
        color: white;
        font-size: 46px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
    }


        .cta-content h2 span {
            color: var(--gold);
        }


    /* Paragraph */

    .cta-content p {
        max-width: 650px;
        margin: 0 auto 32px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 17px;
        line-height: 1.8;
    }


/* Contact Button */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--gold);
    color: #07382a;
    border: 2px solid var(--gold);
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


    .cta-button:hover {
        background: transparent;
        color: var(--gold);
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.30);
    }


/* =========================================================
   MOBILE CTA
========================================================= */

@media (max-width: 768px) {

    .cta-section {
        padding: 70px 15px;
    }

    .cta-content {
        padding: 45px 22px;
        border-radius: 24px;
    }

        .cta-content h2 {
            font-size: 32px;
        }

        .cta-content p {
            font-size: 15px;
        }

    .cta-button {
        padding: 13px 25px;
    }
}
/* =========================================================
   OFFICE HOURS
========================================================= */

.office-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .office-hours li {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 5px 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

        .office-hours li:last-child {
            border-bottom: none;
        }

        .office-hours li span:last-child {
            color: var(--gold);
            font-weight: 600;
            white-space: nowrap;
        }

/* =========================================================
   GLOBAL TEXT STYLE
========================================================= */

/* Normal text */
body {
    font-size: 16px;
    font-weight: 500;
}


/* Paragraphs */
p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
}


/* Headings */
h1 {
    font-weight: 800;
}

h2 {
    font-weight: 800;
}

h3 {
    font-weight: 750;
}

h4,
h5,
h6 {
    font-weight: 700;
}


/* Navigation */
.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
}


/* Buttons */
button,
.btn,
.cta-button {
    font-weight: 700;
}

/* =========================================================
   PREMIUM SERVICES CARDS
========================================================= */

.services-section {
    position: relative;
    background: #f8faf8;
}


/* Service Card */

.service-card {
    position: relative;
    height: 100%;
    padding: 42px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(7, 56, 42, 0.10);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(4, 45, 32, 0.07);
}


    /* Top Gold Line */

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: var(--gold);
        transform: translateX(-50%);
        transition: width 0.4s ease;
    }


    /* Soft Background Glow */

    .service-card::after {
        content: "";
        position: absolute;
        width: 140px;
        height: 140px;
        right: -70px;
        top: -70px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.08);
        transition: all 0.4s ease;
    }


    /* Hover */

    .service-card:hover {
        transform: translateY(-12px);
        border-color: rgba(212, 175, 55, 0.45);
        box-shadow: 0 20px 45px rgba(4, 45, 32, 0.14), 0 0 25px rgba(212, 175, 55, 0.10);
    }


        .service-card:hover::before {
            width: 70%;
        }


        .service-card:hover::after {
            width: 220px;
            height: 220px;
        }


/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient( 135deg, #07382a, #0a513b );
    border: 1px solid rgba(212, 175, 55, 0.5);
    font-size: 34px;
    box-shadow: 0 10px 25px rgba(4, 45, 32, 0.18);
    transition: all 0.4s ease;
}


.service-card:hover .service-icon {
    transform: translateY(-5px) rotate(-5deg) scale(1.08);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(4, 45, 32, 0.25), 0 0 18px rgba(212, 175, 55, 0.20);
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.service-card h3 {
    position: relative;
    z-index: 2;
    color: #07382a;
    font-size: 23px;
    font-weight: 750;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}


.service-card:hover h3 {
    color: #a47b12;
}


/* =========================================================
   SERVICE DESCRIPTION
========================================================= */

.service-card p {
    position: relative;
    z-index: 2;
    color: #68776f;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .service-card {
        padding: 35px 25px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
    }

    .service-card h3 {
        font-size: 21px;
    }
}
/* =========================================================
   MOBILE SERVICE CARD EFFECT
========================================================= */

@media (max-width: 768px) {

    .service-card:active {
        transform: translateY(-8px) scale(1.02);
        border-color: rgba(212, 175, 55, 0.55);
        box-shadow: 0 18px 35px rgba(4, 45, 32, 0.16), 0 0 20px rgba(212, 175, 55, 0.12);
    }

        .service-card:active::before {
            width: 70%;
        }

        .service-card:active .service-icon {
            transform: rotate(-5deg) scale(1.08);
            border-radius: 50%;
        }

        .service-card:active h3 {
            color: #a47b12;
        }
}
/* =========================================================
   PREMIUM LIGHT BACKGROUND + SUBTLE ANIMATION
========================================================= */

/* Main sections */
.intro-section,
.services-section,
.products-section,
.production-section,
.about-section,
.why-section {
    position: relative;
    overflow: hidden;
    background: #f8faf9;
}


    /* Soft animated background glow */

    .intro-section::before,
    .services-section::before,
    .products-section::before,
    .production-section::before,
    .about-section::before,
    .why-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.055);
        filter: blur(5px);
        top: -180px;
        right: -150px;
        animation: sectionGlow 12s ease-in-out infinite alternate;
        pointer-events: none;
    }


    /* Second soft green glow */

    .intro-section::after,
    .services-section::after,
    .products-section::after,
    .production-section::after,
    .about-section::after,
    .why-section::after {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(7, 56, 42, 0.035);
        filter: blur(10px);
        bottom: -150px;
        left: -120px;
        animation: sectionGlow2 15s ease-in-out infinite alternate;
        pointer-events: none;
    }


    /* Keep content above background */

    .intro-section .container,
    .services-section .container,
    .products-section .container,
    .production-section .container,
    .about-section .container,
    .why-section .container {
        position: relative;
        z-index: 2;
    }


/* =========================================================
   BACKGROUND ANIMATION
========================================================= */

@keyframes sectionGlow {

    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40px, 30px) scale(1.08);
    }

    100% {
        transform: translate(20px, 60px) scale(0.95);
    }
}


@keyframes sectionGlow2 {

    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(35px, -25px) scale(1.08);
    }

    100% {
        transform: translate(60px, -50px) scale(0.95);
    }
}


/* =========================================================
   PRODUCTS → PRODUCTION FLOW GAP
========================================================= */

/* Products section bottom space कमी */

.products-section {
    padding-bottom: 45px !important;
}


/* Production section top space कमी */

.production-section {
    padding-top: 45px !important;
}

/* =========================================================
   LOGIN MENU
========================================================= */

.login-menu-item {
    margin-left: 10px;
}


.login-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    color: #07382a !important;
    font-size: 15px;
    font-weight: 700;
    padding: 9px 14px !important;
    border-radius: 10px;
    transition: all 0.3s ease;
}


    .login-link i {
        font-size: 18px;
        color: var(--gold);
        transition: 0.3s ease;
    }


    .login-link:hover {
        background: rgba(212, 175, 55, 0.10);
        transform: translateY(-2px);
    }


        .login-link:hover i {
            transform: scale(1.1);
        }

/* =========================================================
   FINAL MOBILE RESPONSIVE FIX
   Purpose:
   - Mobile 100% zoom वर website पूर्ण दिसावी
   - Horizontal scroll बंद
   - Footer cut होऊ नये
   - WhatsApp button visible राहावा
   - Social icons पूर्ण दिसावेत
========================================================= */

/* ---------- GLOBAL FIX ---------- */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* ---------- ALL ELEMENTS ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* ---------- MOBILE ---------- */

@media (max-width: 100%) {

    /* Prevent any section from becoming wider than screen */

    section,
    header,
    footer,
    main,
    .container,
    .container-fluid {
        max-width: 100%;
    }


    /* ---------- FOOTER ---------- */

    .main-footer {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }


        /* Footer columns */

        .main-footer .row {
            margin-left: 0;
            margin-right: 0;
        }


        .main-footer .col,
        .main-footer [class*="col-"] {
            max-width: 100%;
        }


    /* Footer description */

    .footer-description {
        width: 100%;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }


    /* Footer contact */

    .footer-contact {
        max-width: 100%;
        overflow: hidden;
    }


        .footer-contact p {
            max-width: 100%;
            overflow-wrap: anywhere;
            word-break: break-word;
        }


    /* ---------- OFFICE HOURS ---------- */

    .office-hours {
        width: 100%;
        max-width: 100%;
    }


        .office-hours li {
            width: 100%;
            max-width: 100%;
            flex-wrap: wrap;
        }


    /* ---------- FOOTER BOTTOM ---------- */

    .footer-bottom {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }


        .footer-bottom p {
            max-width: 100%;
            overflow-wrap: anywhere;
        }


    /* ---------- SOCIAL ICONS ---------- */

    .social-links {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }


        .social-links a {
            flex-shrink: 0;
        }


    /* ---------- WHATSAPP BUTTON ---------- */

    .whatsapp-float,
    .whatsapp-btn {
        position: fixed;
        right: 15px !important;
        bottom: 18px !important;
        width: 52px;
        height: 52px;
        max-width: 52px;
        max-height: 52px;
        z-index: 99999 !important;
        flex-shrink: 0;
    }


    /* ---------- IMAGES ---------- */

    img {
        max-width: 100%;
        height: auto;
    }


    /* ---------- TEXT ---------- */

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    a {
        overflow-wrap: break-word;
    }


    /* ---------- BUTTONS ---------- */

    button,
    .btn,
    .cta-button,
    .about-button {
        max-width: 100%;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    /* Smaller side spacing */

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }


    /* Footer */

    .main-footer {
        padding-left: 0;
        padding-right: 0;
    }


    /* Footer bottom */

    .footer-bottom {
        align-items: center;
        text-align: center;
    }


    /* Social icons */

    .social-links {
        justify-content: center;
        width: 100%;
    }


    /* WhatsApp */

    .whatsapp-float,
    .whatsapp-btn {
        right: 14px !important;
        bottom: 15px !important;
        width: 50px;
        height: 50px;
    }
}/*
 =========================================================
   MOBILE FOOTER - EXTRA BOTTOM SPACE
   Prevent social icons / footer bottom from being hidden
========================================================= 

@media (max-width: 768px) {

    .main-footer {
         Footer च्या खाली extra जागा 
        padding-bottom: 100px !important;
         iPhone safe area साठी 
        padding-bottom: calc(100px + env(safe-area-inset-bottom)) !important;
    }

     Footer bottom ला थोडी additional spacing 
    .footer-bottom {
        padding-bottom: 15px;
    }

     Social icons पूर्ण दिसण्यासाठी 
    .social-links {
        margin-bottom: 10px;
    }
}*/


 /*=========================================================
   VERY SMALL MOBILE
========================================================= 

@media (max-width: 480px) {

    .main-footer {
        padding-bottom: calc(110px + env(safe-area-inset-bottom)) !important;
    }

    .footer-bottom {
        gap: 20px;
    }

    .social-links {
        margin-bottom: 10px;
    }
}*/
/* =========================================================
   MOBILE SOCIAL MENU
========================================================= */

/* Desktop वर hide */
.mobile-social-menu {
    display: none;
}


/* Mobile वर show */
@media (max-width: 991px) {

    .mobile-social-menu {
        display: block;
        margin-top: 15px;
    }

    .mobile-social-links {
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .mobile-social-links a {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(212, 175, 55, 0.35);
            border-radius: 50%;
            color: var(--gold);
            background: rgba(255, 255, 255, 0.05);
            text-decoration: none;
            transition: all 0.3s ease;
        }

            /* Instagram Original Gradient */
            .mobile-social-links a.instagram {
                background: linear-gradient( 45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5 );
                color: #ffffff;
                border: none;
            }

                .mobile-social-links a.instagram:hover {
                    transform: translateY(-2px) scale(1.05);
                }

            .mobile-social-links a:hover {
                background: var(--gold);
                color: #07382a;
                transform: translateY(-2px);
            }
}
/* =========================================================
   WHATSAPP - ORIGINAL COLOR
========================================================= */

.mobile-social-links a.whatsapp {
    background: #25D366;
    color: #ffffff;
    border: none;
}

    .mobile-social-links a.whatsapp:hover {
        background: #25D366;
        color: #ffffff;
        transform: translateY(-2px) scale(1.05);
    }


/* =========================================================
   FACEBOOK - ORIGINAL COLOR
========================================================= */

.mobile-social-links a.facebook {
    background: #1877F2;
    color: #ffffff;
    border: none;
}

    .mobile-social-links a.facebook:hover {
        background: #1877F2;
        color: #ffffff;
        transform: translateY(-2px) scale(1.05);
    }

/* =========================================================
   LINKEDIN - ORIGINAL COLOR
========================================================= */

.mobile-social-links a.linkedin {
    background: #0A66C2;
    color: #ffffff;
    border: none;
}

    .mobile-social-links a.linkedin:hover {
        background: #0A66C2;
        color: #ffffff;
        transform: translateY(-2px) scale(1.05);
    }
/* =========================================================
   FOOTER SOCIAL BRAND COLORS
========================================================= */

/* Instagram */
.social-links a.instagram {
    background: linear-gradient( 45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5 ) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}


/* Facebook */
.social-links a.facebook {
    background: #1877F2 !important;
    color: #ffffff !important;
    border-color: transparent !important;
}


/* LinkedIn */
.social-links a.linkedin {
    background: #0A66C2 !important;
    color: #ffffff !important;
    border-color: transparent !important;
}


    /* Hover */
    .social-links a.instagram:hover,
    .social-links a.facebook:hover,
    .social-links a.linkedin:hover {
        color: #ffffff !important;
        transform: translateY(-4px);
    }
/* =========================================================
   CONTACT BUTTON - ORIGINAL WHATSAPP LOGO
========================================================= */

.whatsapp-original {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    font-size: 17px;
    line-height: 1;
    flex-shrink: 0;
}
    
    /*==========================================nav-separator=================================*/
.nav-separator {
    display: none;
}

@media (max-width: 991px) {

    .nav-separator {
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(7, 56, 42, 0.12);
        margin: 10px 0;
    }
}


/* =====================================================
   LICENCES & CERTIFICATIONS
===================================================== */

.certifications-section {
    padding: 90px 6%;
    background: #ffffff;
}


/* =====================================================
   HEADING
===================================================== */

.certifications-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}

    .certifications-heading span {
        display: inline-block;
        margin-bottom: 12px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #5f7f36;
        text-transform: uppercase;
    }

    .certifications-heading h2 {
        margin: 0;
        font-size: 42px;
        font-weight: 800;
        color: #17231a;
    }

    .certifications-heading p {
        margin: 16px auto 0;
        max-width: 650px;
        font-size: 16px;
        line-height: 1.7;
        color: #69736b;
    }


/* =====================================================
   CERTIFICATIONS GRID
   DESKTOP + LAPTOP - 4 CARDS IN ONE LINE
===================================================== */

.certifications-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* =====================================================
   CERTIFICATION CARD
===================================================== */

.certification-card {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}


    /* Top shine */

    .certification-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.7), transparent );
        transform: skewX(-20deg);
        transition: left 0.7s ease;
        pointer-events: none;
    }


    /* Hover */

    .certification-card:hover {
        transform: translateY(-10px);
        border-color: rgba(95, 127, 54, 0.25);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.13);
    }

        .certification-card:hover::before {
            left: 130%;
        }


/* =====================================================
   IMAGE CONTAINER
===================================================== */

.certification-image {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}


    /* =====================================================
   CERTIFICATION IMAGE
===================================================== */

    .certification-image img {
        max-width: 100%;
        max-height: 145px;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform 0.45s ease, filter 0.45s ease;
    }


/* Image hover */

.certification-card:hover .certification-image img {
    transform: scale(1.08);
}


/* =====================================================
   APEDA CARD
   IMPORTANT: APEDA आता बाकी cards सारखाच आहे
===================================================== */

.certification-center {
    grid-column: auto;
    max-width: none;
    width: auto;
    margin: 0;
}


/* =====================================================
   TABLET / SMALL LAPTOP - 2 CARDS
===================================================== */

@media (max-width: 768px) {

    .certifications-section {
        padding: 65px 20px;
        background: #ffffff;
    }


    .certifications-heading {
        margin-bottom: 40px;
    }


        .certifications-heading h2 {
            font-size: 30px;
        }


        .certifications-heading p {
            font-size: 14px;
        }


    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }


    .certification-card {
        min-height: 190px;
        padding: 20px;
    }


    .certification-image {
        height: 145px;
    }


        .certification-image img {
            max-height: 120px;
        }


    .certification-center {
        grid-column: auto;
    }
}


/* =====================================================
   MOBILE - 1 CARD
===================================================== */

@media (max-width: 480px) {

    .certifications-section {
        padding: 55px 16px;
    }


    .certifications-heading span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }


    .certifications-heading h2 {
        font-size: 27px;
        line-height: 1.2;
    }


    .certifications-heading p {
        font-size: 13px;
        line-height: 1.6;
    }


    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    .certification-card {
        min-height: 180px;
        border-radius: 16px;
    }


    .certification-image {
        height: 140px;
    }


        .certification-image img {
            max-width: 90%;
            max-height: 120px;
        }
}