/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-blue: #1a2b5c;
    --green: #00a651;
    --orange: #ff6600;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-gray: #666666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Font Styles  */

/* For main headings */
.section-title
 {
    font-family: 'Limelight', cursive;
}

.hero-title {
    font-family: 'ZalandoExpanded';
    text-wrap: nowrap;
}
.hero-tagline {
    font-family: 'ZalandoExpanded';
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin-bottom: 30px;
    white-space: normal;   /* force wrapping */
}

/* For secondary headings */
h2, h3, .sub-heading {
    font-family: 'Oswald', sans-serif;
}


/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 2px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.logo-wrap {
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 4px;
    border-radius: 6px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-menu a.active {
    color: var(--green);
    font-weight: 600;
    border-bottom: 2px solid var(--green);
    padding-bottom: 4px;
}

.nav-menu a:hover {
    color: var(--green);
}

/* Hamburger Menu - Fixed positioning */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--navy-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 2; /* Places hamburger on the right */
    }

    .nav-logo {
        order: 1; /* Logo stays on left */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%; /* Changed from right to left */
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        transition: 0.3s ease-in-out;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1); /* Shadow on right */
        padding-top: 80px;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0; /* Slide in from left */
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 20px 0;
        font-size: 18px;
        width: 100%;
        color: var(--navy-blue);
    }

    .nav-logo {
        height: 60px;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 85%;
        left: -100%;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-logo {
        height: 50px;
    }
}

/* =========================
   HERO SECTION (NO WHITE CARD)
========================= */

.hero {
    background: 
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 40%), 
        linear-gradient(110deg, #0d6d4d, #1a2b5c 50%, #b86b1b);
    height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    width: 100%;
}

/* ✅ Force full width only inside hero */
.hero .container {
    max-width: 100% !important;
    width: 100%;
    padding-left: 80px;
    padding-right: 80px;
}

/* ✅ Texture Grid Overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" opacity="0.05"%3E%3Cpath d="M0 50h400M0 100h400M0 150h400M0 200h400M0 250h400M0 300h400M0 350h400M50 0v400M100 0v400M150 0v400M200 0v400M250 0v400M300 0v400M350 0v400" stroke="%23ffffff" stroke-width="0.8"/%3E%3C/g%3E%3C/svg%3E') repeat;
    mix-blend-mode: screen;
    z-index: 0;
}

/* ✅ Full width layout */
.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
    gap: 26px;
}

/* ✅ No max-width limitation anymore */
.hero-brand {
    width: 100%;
    max-width: 100%;
}

/* =========================
   LOCATION PILL
========================= */
.hero-label {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding: 6px 18px;
}

/* =========================
   MAIN HEADING
========================= */
.hero-heading {
    font-family: 'Limelight', cursive;
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: 0.07em;
    margin-bottom: 26px;
    line-height: 1.15;
}

/* =========================
   TAGLINE
========================= */
.hero-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    max-width: 800px;
    margin-bottom: 28px;
}

/* =========================
   DESCRIPTION
========================= */
.hero-description-inline p {
    font-size: 1rem;
    max-width: 900px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
}

/* =========================
   STATS CARDS
========================= */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 25px;
    max-width: 1100px;
}

.hero-stats div {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    padding: 20px 22px;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease;
}

.hero-stats div:hover {
    transform: translateY(-5px);
}

.hero-stats span {
    display: block;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.hero-stats p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* =========================
   CTA BUTTON
========================= */
.hero-cta {
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 34px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.25);
}

.tertiary-btn {
    background: linear-gradient(120deg, var(--green), var(--orange));
    color: var(--white);
}


/* =========================
   RESPONSIVE HERO
========================= */

@media (max-width: 992px) {
    .hero-layout {
        gap: 40px;
    }

    .hero-heading {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 20px;
    }

    .hero-heading {
        font-size: 2.3rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }

    .hero-label {
        font-size: 0.8rem;
    }

    .hero-tagline {
        max-width: 100%;
    }
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: 1px;
}
/* Products Section - Marquee Horizontal */
#products.products {
    background-color: var(--light-gray);
    padding: 80px 0;
    overflow: hidden;
}

#products .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

#products .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 50px;
    position: relative;
}

#products .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--green);
    border-radius: 999px;
}

/* Marquee Container */
#products .products-marquee-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

#products .products-marquee {
    display: flex;
    gap: 25px;
    animation: marquee-scroll 40s linear infinite;
    width: max-content;
}

/* Marquee Animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Pause on hover */
#products .products-marquee-container:hover .products-marquee {
    animation-play-state: paused;
}

/* Product Cards */
#products .product-card {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

#products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

#products .product-image {
    height: 180px;
    overflow: hidden;
}

#products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#products .product-card:hover .product-image img {
    transform: scale(1.08);
}

#products .product-content {
    padding: 20px;
}

#products .product-content h3 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-weight: 600;
    border-bottom: 2px solid var(--green);
    padding-bottom: 6px;
}

#products .product-content p {
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Gradient fade edges */
#products .products-marquee-container::before,
#products .products-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

#products .products-marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--light-gray), transparent);
}

#products .products-marquee-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--light-gray));
}

/* Responsive */
@media (max-width: 768px) {
    #products .container {
        padding: 0 20px;
    }
    
    #products .product-card {
        flex: 0 0 260px;
    }
    
    #products .product-image {
        height: 150px;
    }
    
    #products .product-content {
        padding: 15px;
    }
    
    #products .products-marquee-container::before,
    #products .products-marquee-container::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    #products .product-card {
        flex: 0 0 220px;
    }
    
    #products .product-image {
        height: 130px;
    }
    
    #products .section-title {
        font-size: 2rem;
    }
}


/* About Section - White Cards */
#about.about {
    background-color: var(--light-white);
    padding: 80px 0;
}

#about .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

#about .section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--navy-blue);
    margin-bottom: 40px;
    font-weight: 600;
       position: relative;     /* ✅ required for green line */
    
}
#about .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--green);
    border-radius: 999px;
}


/* Main Content Card */
#about .about-content {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

#about .about-text {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

/* Stats Cards - Wider */
#about .about-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
}

#about .stat-item {
    text-align: center;
    padding: 30px 40px;
    background: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    min-width: 180px; /* Increased width */
    flex: 1;
    max-width: 220px;
}

#about .stat-number {
    font-size: 2rem; /* Slightly larger */
    color: var(--green);
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

#about .stat-label {
    font-size: 1.1rem; /* Slightly larger */
    color: var(--navy-blue);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    #about.about {
        padding: 60px 0;
    }
    
    #about .about-content {
        padding: 30px 25px;
    }
    
    #about .about-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    #about .stat-item {
        padding: 25px 30px;
        min-width: 150px;
        max-width: 180px;
    }
    
    #about .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    #about .about-stats {
        flex-direction: column;
        align-items: center;
    }
    
    #about .stat-item {
        width: 250px;
        max-width: 250px;
    }
}

/* Why choose our products Section */
.gallery {
    background: linear-gradient(to bottom, #e8eef9, #1a2b5c);
    padding: 80px 0;
    color: white;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Tilted background image */
.gallery::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -30%;
    right: 0;
    bottom: -30%;
    background-image: url("images/chik peas.png");
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    transform: rotate(15deg); /* Tilt towards right */
    opacity: 0.6; /* Adjust opacity as needed */
    z-index: 0;
}

.gallery::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 43, 92, 0.6); /* Overlay for better text contrast */
    z-index: 0;
}

.gallery-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    padding-left: 380px; /* Your original padding */
}

/* Benefits Sections - Your original styles */
.side-benefits {
    width: 380px;
    flex-shrink: 0;
}

.side-benefits h3 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
}

.side-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-benefits li {
    color: #ffffff;
    margin-bottom: 22px;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.side-benefits li:before {
    content: "✓";
    color: #0a0b0a; /* Your original color */
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Center Content - Your original styles */
.center-content {
    text-align: center;
    width: 300px;
    display: none; /* Your original display */
}

.center-img {
    height: 280px;
    object-fit: contain;
    border-radius: 10px;
    transition: 0.4s ease;
    margin-bottom: 25px;
}

/* Make center image scale slightly on hover */
.center-img:hover {
    transform: scale(1.05);
}

/* Brand info styling - Your original styles */
.brand-info h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-info p {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 12px 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Section title styling - Your original styles */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Remove the old gallery-row::before */
.gallery-row::before {
    display: none;
}

/* Responsive design - Your original styles */
@media (max-width: 1200px) {
    .gallery-row {
        gap: 40px;
    }
    
    .side-benefits {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .gallery-row {
        flex-direction: column;
        gap: 50px;
        padding-left: 0; /* Remove padding on mobile */
    }
    
    .side-benefits {
        width: 100%;
        max-width: 500px;
    }
    
    .center-content {
        order: -1;
    }
}

/* =========================
   SECTORS WE SERVE SECTION
========================== */

.sectors {
    background-color: var(--light-gray);
    padding: 90px 0;
}

.sectors .section-title {
    text-align: center;
    font-size: 2.6rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
    position: relative;
}

#sectors .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--green);
    border-radius: 999px;
}

.sectors-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px auto;
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Grid Layout */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Sector Card */
.sector-card {
    background: var(--white);
    padding: 30px 28px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.sector-card h3 {
    font-size: 1.35rem;
    color: var(--navy-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.sector-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* =========================
   RESPONSIVE DESIGN
========================== */

@media (max-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .sectors {
        padding: 70px 0;
    }

    .sectors-intro {
        font-size: 1.05rem;
        padding: 0 16px;
    }
}


/* Quality Section */
/* =========================
   QUALITY & COMPLIANCE SECTION
========================= */

.quality {
    background-color: var(--white);
    padding: 90px 0;
}

/* Green line under heading */
.quality .section-title {
    text-align: center;
    font-size: 2.6rem;
    color: var(--navy-blue);
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.quality .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background-color: var(--green);
    border-radius: 999px;
}

/* Content wrapper */
.quality-content {
    max-width: 900px;
    margin: 50px auto 0 auto;
    background: var(--light-gray);
    padding: 40px 45px;
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

/* Text styling */
.quality-text {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.9;
    text-align: center;
    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .quality {
        padding: 70px 0;
    }

    .quality-content {
        padding: 30px 25px;
    }

    .quality-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}





/* Logistics Section */


.logistics {
    background-color: var(--light-gray);
    padding: 90px 0;
}

#logistics .section-title {
    position: relative;   /* ✅ required */
    text-align: center;   /* ✅ ensure center */
    color: var(--navy-blue);
}

#logistics .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--green);
    border-radius: 999px;
}


/* Content wrapper as a premium card */
.logistics-content {
    max-width: 900px;
    margin: 50px auto 0 auto;
    background: var(--gray);
    padding: 40px 45px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

/* Text styling */
.logistics-text {
    font-size: 1.15rem;
    color: var(--text-white);
    line-height: 1.9;
    text-align: center;
    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .logistics {
        padding: 70px 0;
    }

    .logistics-content {
        padding: 30px 25px;
    }

    .logistics-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}




/* Footer */
/* Footer */
.footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 30px 20px 12px 20px;
    margin-top: 40px;
    font-size: 0.88rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    line-height: 1.8;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--orange);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* keeps everything left aligned */
}

.footer-logo {
    width: 120px;        /* adjust size if needed */
    margin-top: 12px;   /* space between text and image */
    object-fit: contain;
}



.footer-section p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 0.85rem;
}

.footer-section a:hover {
    color: var(--orange);
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.75rem;
}

.footer-copyright {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    
}

.footer-developed {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}



/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 15px 15px 15px;
    }
    
    .footer-grid {
        gap: 30px;
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 10px 10px 10px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-bottom-content {
        font-size: 0.85rem;
    }
}




/* Responsive Design */
@media (max-width: 968px) {
    .hero-layout {
        flex-direction: column;
        gap: 30px;
    }

    .hero-brand,
.hero-description-card {
    max-height: 520px;
    overflow: hidden;
}


    .hero-heading {
        font-size: 2.6rem;
    }

    .hero-tagline {
        font-size: 1.15rem;
    }

    .rotating-products {
        --disc-size: 280px;
    }

    .product-pin {
        flex-direction: column;
        padding: 40px 40px;
        top: 80px;
    }

    .product-details-column {
        width: 100%;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .hero {
        min-height: 70vh;
        padding: 50px 20px;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.05rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-description-card {
        padding: 28px;
    }

    .hero-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .product-pin {
        padding: 30px 24px;
        top: 60px;
    }

    .disc-center {
        width: 180px;
        height: 180px;
    }

    .product-detail h3 {
        font-size: 1.35rem;
    }

    .gallery-overlay {
        padding: 40px 20px 30px;
    }

    .gallery-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-label {
        font-size: 0.85rem;
    }

    .hero-description-card {
        padding: 22px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .product-pin {
        padding: 26px 18px;
    }

    .product-detail {
        padding: 18px;
    }

    .about-text {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Subtle Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-pin,
.about-content,
.gallery-content {
    animation: fadeIn 0.8s ease-out;
}

/* Standalone Pages */
.page {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

.page-hero {
    background: linear-gradient(110deg, #0d6d4d, #1a2b5c 50%, #b86b1b);
    color: var(--white);
    padding: 70px 0 50px;
}

.page-hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.page-kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 10px;
    opacity: 0.85;
}

.page-title {
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    max-width: 720px;
}

.page-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 230px;
}

.page-section {
    padding: 60px 0 80px;
}

.form-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.form-grid.single {
    grid-template-columns: 1fr;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-column label {
    font-weight: 600;
    color: var(--navy-blue);
}

.form-column input,
.form-column textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.form-column input:focus,
.form-column textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.15);
    
}

/* Center the entire form-actions block */
.form-actions {
    grid-column: 1 / -1;        /* spans full grid */
    display: flex;
    flex-direction: column;
    align-items: center;        /* centers button + text */
    justify-content: center;
    margin-top: 25px;
}

/* Make the button smaller + centered */
.form-actions button {
    width: 260px;               /* <-- change size here */
    display: block;
    text-align: center;
    justify-content: center;
    background: linear-gradient(120deg, var(--green), var(--orange));
}

/* Center the helper text */
.form-actions .helper-text {
    text-align: center;
    width: 100%;
    color: darkslategrey;
    padding-top: 12px;
    
}




.full-width {
    width: 100%;
    justify-content: center;
}

.helper-text {
    color: var(--text-gray);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 30px 0;
}

.trust-item {
    background: var(--white);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    font-weight: 600;
    color: var(--navy-blue);
}

/* =========================
   IMPROVED CONTACT STRIP
========================= */
.contact-strip {
    background: linear-gradient(135deg, #11204d, #0d1533);
    color: var(--white);
    border-radius: 22px;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    animation: fadeUp 0.9s ease-out;
    position: relative;
    overflow: hidden;
}

/* Soft moving glow */
.contact-strip::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.12);
    top: -40px;
    left: -40px;
    border-radius: 50%;
    filter: blur(60px);
    animation: glowMove 6s infinite linear;
}

@keyframes glowMove {
    0% { transform: translate(0, 0) }
    50% { transform: translate(50px, 30px) }
    100% { transform: translate(0, 0) }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-strip__left h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-strip__left p {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.contact-strip a {
    color: #58e8ff;
    font-weight: 600;
}

.contact-strip__right .btn {
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: 0.3s ease;
}

.contact-strip__right .btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Coming soon text highlight */
.contact-strip .muted {
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-strip .highlight {
    color: #f7dc52;
    font-weight: 700;
    animation: blink 2s infinite ease-in-out;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .contact-strip {
        padding: 28px 22px;
        flex-direction: column;
        text-align: center;
    }

    .contact-strip__right {
        justify-content: center;
    }
}


.highlight {
    /* background: #ffeb3b; */
    padding: 4px 8px;
    border-radius: 5px;
    font-weight: 600;
    color: #ffeb3b;
}


.secondary-outline {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: transparent;
}

.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    color: #fff;
}




/* =========================
   CONTACT US FORM – NARROW WIDTH ONLY
========================= */

.form-grid.single .form-column input,
.form-grid.single .form-column textarea {
    max-width: 520px;   /* ✅ control width here */
}


/* ===============================
   CONTACT US – NARROW FORM WIDTH
=============================== */

/* Reduce the full card width */
.contact-form-card {
    max-width: 600px;   /* ✅ reduced from default */
    margin-left: auto;
    margin-right: auto; /* ✅ centers the card */
}

.btn,
.btn.primary-btn {
    color: #ffffff !important;
}


/* Reduce input & textarea width */
.contact-form-card .form-column input,
.contact-form-card .form-column textarea {
    max-width: 520px;   /* ✅ narrower fields inside */
}

/* Center the inputs inside the card */
.contact-form-card .form-column {
    align-items: flex-start;
}
