/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Verdana, ;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* ================= TOP ROTATING TEXT ================= */
.top-rotating-bar {
    width: 100%;
    background-color: #2d5eb8e0;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    position: fixed;
    top: 0;
    z-index: 1100;

    /* 👇 ADD THESE */
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Hidden state */
.top-rotating-bar.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.rotating-text {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ================= HEADER / NAVBAR ================= */
header {
    background-color: #0f2f52;
    position: fixed;
    top: 38px;
    z-index: 1000;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo h2 {
    color: #0b3a6a;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

/* ================= LOGO LINK CLEAN ================= */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.logo-link h2 {
    color: #ffffff;
    text-decoration: none !important;
}

.logo-link:hover,
.logo-link:hover h2,
.logo-link:visited,
.logo-link:active {
    text-decoration: none !important;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #f5f7fa;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: inline-block;
    transition: transform 0.25s ease, color 0.25s ease;
    transform: scale(1);
}

.nav-links a:hover {
    transform: scale(1.2);
    /* zoom-out effect */
    color: #7bafa4;
    /* optional accent color */
}

/* Keep active link stable */
.nav-links a.active {
    transform: scale(1);
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    min-height: 80vh;
    width: 100%;
    background-image: url("Product Image/Best\ Fruits\ For\ Weight\ Loss\ Low\ Calorie\ Choices.webp");
    /* <-- YOUR IMAGE */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    margin-top: 10vh;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
}

/* Headings */
.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Paragraphs */
.hero p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.5;
}

/* Buttons */
.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 60px 20px;
        background-position: center top;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    header {
        top: 32px;
        /*smaller top bar on mobile*/
    }

}

@media (max-width: 480px) {
    .hero {
        min-height: 65vh;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    header {
        top: 30px;
        /*smaller top bar on mobile*/
    }

}


/* ================= BUTTONS ================= */
.btn {
    padding: 12px 24px;
    background-color: #00b894;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin: 8px;
    display: inline-block;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: #019874;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
}

.btn-outline:hover {
    background: white;
    color: #0a2540;
}

.btn-small {
    padding: 10px 20px;
    background-color: #0a2540;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

/* ================= PRODUCTS PAGE ================= */
.products-page {
    padding: 50px 20px;
    background: #f5f7fa;
    text-align: center;
    margin-top: 12vh;
    flex: 1;
}

.products-page h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #0a2540;
}

/* ================= PRODUCTS WRAPPER (FOR OUTSIDE ARROWS) ================= */
.products-wrapper {
    max-width: 1200px;
    margin: auto;
    position: relative;

    /* IMPORTANT: space for arrows */
    padding-left: 70px;
    padding-right: 70px;
}


/* ================= PRODUCT CARD (SLIDER) ================= */
.product-card-ui {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    /* Increased padding for a cleaner look */
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    /* FIXES START HERE */
    height: auto;
    /* Changed from 100% to auto to prevent stretching */
    margin: 0;
    /* REMOVED 10px: This stops the card from being cut off */
    display: flex;
    /* Uses flexbox to align content */
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    /* Ensures padding doesn't break the width */
}

.product-card-ui img {
    width: 100%;
    height: 180px;
    /* Keeps the height consistent */
    object-fit: cover;
    /* FIX: Shows the WHOLE fruit inside the box */
    background: #fff;
    /* Optional: clean background for transparent images */
    border-radius: 8px;
    margin-bottom: 12px;
}

.product-card-ui h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0a2540;
}

.product-card-ui p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Swiper arrows */
.productsSwiper .swiper-button-next,
.productsSwiper .swiper-button-prev {
    color: #0a2540;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.productsSwiper .swiper-button-next::after,
.productsSwiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* ================= CTA SECTION ================= */
.cta {
    padding: 50px 20px;
    background: linear-gradient(135deg, #0a2540, #0f3d63);
    color: white;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.cta p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* ================= FOOTER ================= */
.footer {
    padding: 25px 20px;
    background: linear-gradient(90deg, #0a2540, #102a43);
    color: #d1d5db;
    text-align: center;
    position: sticky;
    font-size: 14px;
    border-top: 4px solid #00b894;
}

.footer p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer .developer-credit span {
    color: #00b894;
    font-weight: 600;
}

.footer-link {
    color: #6fc3b2;
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ================= CONTACT PAGE ================= */
.contact-page {
    padding: 50px 20px;
    background: #f5f7fa;
    margin-top: 12vh;
    flex: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #0a2540;
}

.contact-header p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

/* Layout */
.contact-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Cards */
.contact-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #0a2540;
}

/* Contact Info */
.contact-info p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

.contact-info a {
    color: #00b894;
    text-decoration: none;
    font-weight: 500;
}

/* Form */
.form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    outline: none;
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00b894;
    background: white;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: #00b894;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.btn-submit:hover {
    background: #019874;
    transform: translateY(-2px);
}

/* ================= ABOUT PAGE ================= */
.about-page {
    padding: 50px 20px;
    background: #f5f7fa;
    margin-top: 12vh;
    flex: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #0a2540;
}

.about-header p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

/* Card Layout */
.about-card {
    max-width: 1100px;
    margin: 0 auto 30px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0a2540;
}

.about-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Lists */
.about-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.about-list li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #444;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0a2540;
}

.service-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* ================= MOBILE RESPONSIVE STYLES ================= */
@media (max-width: 768px) {

    /* Top rotating text */
    .top-rotating-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    /* Mobile menu */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #0a2540;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Hero section */
    .hero {
        min-height: 70vh;
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    /* Buttons */
    .btn {
        padding: 12px 20px;
        margin: 5px;
        font-size: 15px;
        width: 100%;
        max-width: 250px;
    }

    /* Products section */
    .products-wrapper {
        padding: 0 20px;
    }

    .productsSwiper .swiper-button-next,
    .productsSwiper .swiper-button-prev {
        display: none;
    }

    /* CTA section */
    .cta h2 {
        font-size: 24px;
    }

    /* Footer */
    .footer {
        padding: 20px 15px;
    }

    .footer p {
        font-size: 13px;
    }

    /* Contact page */
    .contact-card {
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }

    /* About page */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {

    /* Logo */
    .logo h2 {
        font-size: 20px;
    }

    .logo img {
        height: 35px;
    }

    /* Hero */
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    /* Page headers */
    .products-page h1,
    .about-header h1,
    .contact-header h1 {
        font-size: 26px;
    }



    .product-card-ui h3 {
        font-size: 16px;
    }

    /* Swiper container */
    .products-wrapper {
        padding: 0 10px;
    }

    /* Cards */
    .contact-card,
    .about-card {
        padding: 15px;
    }

    /* Grid */
    .services-grid {
        gap: 15px;
    }

    .service-box {
        padding: 15px;
    }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 20px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .navbar {
        padding: 10px 20px;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-wrapper {
        padding: 0 30px;
    }

    .navbar {
        padding: 15px 30px;
    }
}

/* Desktop adjustments */
@media (min-width: 1025px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        gap: 30px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .rotating-text {
        animation: none;
        padding-left: 0;
        text-align: center;
    }

    .btn:hover,
    .service-box:hover,
    .btn-submit:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid #000;
    }

    .nav-links a.active {
        border-bottom: 3px solid #7bafa4;
    }
}

/* ================= WHATSAPP FLOAT (BOTTOM RIGHT – MEDIUM) ================= */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    /* BOTTOM */
    right: 22px;
    /* RIGHT SIDE */
    z-index: 9999;

    width: 52px;
    /* SLIGHTLY BIGGER */
    height: 52px;
    background-color: #25d366;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);

    animation: whatsapp-float 4.5s ease-in-out infinite;
    /* SLOW */
}

/* Icon size */
.whatsapp-float img {
    width: 26px;
    height: 26px;
}

/* Hover effect */
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Gentle floating animation */
@keyframes whatsapp-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float img {
        width: 24px;
        height: 24px;
    }
}

/* Mobile Togal bar show*/

/* ================= MOBILE TOGGLE MENU ================= */

/* Toggle icon (hidden on desktop) */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
}

/* Desktop menu (default) */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

    /* Show toggle icon */
    .menu-toggle {
        display: block;
    }

    /* Hide menu by default */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #0a2540;
        /* MOBILE MENU COLOR */
        padding: 15px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }

    /* Show menu on toggle click */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 14px;
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:hover {
        background-color: #119ad1;
    }
}

/* ================= HERO IMAGE FIX (MOBILE) ================= */
@media (max-width: 768px) {
    .hero {
        background-size: contain;
        /* show full image */
        background-repeat: no-repeat;
        background-position: center top;
        background-color: #000;
        /* fallback background */
    }
}

/* ================= PRODUCT CARD FIX (MOBILE) ================= */
@media (max-width: 768px) {

    .product-card-ui {
        padding: 12px;
    }

    .product-card-ui img {
        width: 120%;
        height: 150px;
        /* FIXED image area */
        object-fit: contain;
        /* show full image */
        background: #ffffff;
        border-radius: 8px;
    }
}

/* ================= HERO BACKGROUND FIX (ALL MOBILES) ================= */
@media (max-width: 768px) {

    .hero {
        min-height: auto;
        /* allow flexible height */
        padding: 80px 20px 60px;
        /* space for text */
        background-size: contain;
        /* show full image */
        background-position: center top;
        background-repeat: no-repeat;
        background-color: #000;
        /* fallback background */
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.7);
        /* better readability */
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* ================= HERO SINGLE IMAGE (MOBILE ONLY) ================= */
@media (max-width: 768px) {

    .hero {
        background-image: url("Product Image/mix-organic-seeds-food-powder.jpg");
        background-size: cover;
        /* fills area nicely */
        background-position: center;
        background-repeat: no-repeat;

        min-height: 100vh;
        /* full mobile screen */
        padding: 90px 20px 70px;
        background-color: #000;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.65);
        /* text readability */
    }
}

/* ================= EXTRA SMALL MOBILE CARD ================= */
@media (max-width: 768px) {

    .product-card-ui {
        width: 100%;
        max-width: 320px;
        /* ⬅️ smaller card */
        margin: 0 auto;
        padding: 10px;
        /* ⬅️ tighter padding */
        box-sizing: border-box;
    }

    .product-card-ui img {
        width: 100% !important;
        height: 160px;
        /* ⬅️ smaller image */
        object-fit: cover;
        /* no cut */
        padding: 3px;
        background: #ffffff;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .product-card-ui h3 {
        font-size: 15px;
        padding: 6px;
    }

    .product-card-ui p {
        font-size: 13px;
        line-height: 1.4;
    }

    .productsSwiper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .productsSwiper .swiper-slide {
        display: flex;
        justify-content: center;
    }

    /* Force swiper to respect slide width */
    .productsSwiper .swiper-wrapper {
        align-items: stretch;
    }

    /* Each slide fits one card only */
    /* Add breathing gap between slides */
    .productsSwiper .swiper-slide {
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    /* Card never exceeds slide */
    .productsSwiper .swiper-slide .product-card-ui {
        max-width: 280px;
        width: 100%;
    }
}

/* ================= VERY SMALL PHONES ================= */
@media (max-width: 480px) {

    .product-card-ui {
        max-width: 300px;
        /* ⬅️ prevents edge cut */
        padding: 14px;
    }

    .product-card-ui img {
        height: 150px;
    }

    .product-card-ui h3 {
        font-size: 14px;
        padding: 6px;
    }

    .product-card-ui p {
        font-size: 12.5px;
    }
}

/* ===== EXPORT INFO BOX (FIXED & CENTERED) (19-01-2026 Upfate)===== */

.export-info-box {
    max-width: 1100px;
    margin: 70px auto 50px;
    /* BIG gap from products */
    padding: 35px 40px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Heading */
.export-info-box h3 {
    font-size: 28px;
    font-weight: 600;
    color: #0b2c4d;
    margin-bottom: 14px;
}

/* Paragraphs */
.export-info-box p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Remove extra space from last paragraph */
.export-info-box p:last-child {
    margin-bottom: 0;
}

/* ===== CONTACT PAGE GOOGLE MAP ===== */

.contact-map {
    margin-bottom: 30px;
}

.contact-map h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0b2c4d;
}

.contact-map iframe {
    width: 80%;
    height: 300px;
    border: none;
    border-radius: 12px;
}

.inquiry-note {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
    text-align: center;
}

.inquiry-note h4 {
    font-size: 16.5px;
    color: #0b2c4d;
    margin-bottom: 8px;
}

.inquiry-note p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.6;
}

/* ================= INQUIRY POPUP (NAVY BLUE THEME) ================= */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 44, 77, 0.55);
    /* navy overlay */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    background: #ffffff;
    max-width: 420px;
    width: 90%;
    padding: 30px 35px;
    border-radius: 14px;
    text-align: center;
    border: 2px solid #0b2c4d;
    /* navy border */
    box-shadow: 0 20px 45px rgba(11, 44, 77, 0.25);
    animation: popupFade 0.3s ease;
}

.popup-box h3 {
    font-size: 22px;
    color: #0b2c4d;
    /* navy heading */
    margin-bottom: 10px;
    font-weight: 600;
}

.popup-box p {
    font-size: 15.5px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 22px;
}

.popup-box button {
    background: #0b2c4d;
    /* navy button */
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup-box button:hover {
    background: #09325a;
    /* darker navy */
}

@keyframes popupFade {
    from {
        transform: translateY(-12px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== KEEP IN TOUCH FONT SIZE INCREASE ===== */

.contact-info p {
    font-size: 16px;
    /* increase text size */
    line-height: 1.8;
    /* better readability */
}

.contact-info strong {
    font-size: 16px;
    /* Phone / Email / Address labels */
    color: #0b2c4d;
    /* navy blue */
}

.contact-info a {
    font-size: 16px;
}

/* ================= MOBILE CONTACT PAGE FIX ================= */
@media (max-width: 768px) {

    .contact-page {
        padding: 20px 12px;
    }

    .contact-header h1 {
        font-size: 26px;
        text-align: center;
    }

    .contact-header p {
        font-size: 15px;
        text-align: center;
        padding: 0 10px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        /* stack cards */
        gap: 20px;
    }

    .contact-card {
        padding: 22px 20px;
        border-radius: 14px;
    }

    /* KEEP IN TOUCH */
    .contact-info h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .contact-info p {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-info strong {
        font-size: 17px;
    }

    /* MAP */
    .contact-map h3 {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .contact-map iframe {
        height: 220px;
        border-radius: 10px;
    }

    /* FORM */
    .contact-form h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
        padding: 12px 14px;
    }

    .btn-submit {
        font-size: 16px;
        padding: 12px;
    }

    /* AFTER INQUIRY NOTE */
    .inquiry-note h4 {
        font-size: 18px;
    }

    .inquiry-note p {
        font-size: 15px;
    }
}


/* ===== MOBILE: FIX GAP BETWEEN TOP BAR & HEADER ===== */
@media (max-width: 768px) {

    body {
        margin: 0;
        padding: 0;
    }

    .top-bar {
        margin-bottom: 0 !important;
        padding-bottom: 0px;
        /* reduce space */
    }

    header,
    .site-header {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/* ===== Footer Font Size Adjustment ===== */
.footer,
.footer p,
.footer span {
    font-size: 15px;
    /* default is usually 13–14px */
    line-height: 1.6;
}

/* ===============================
   Footer Branding (DevNexus)
   =============================== */

.brand-name {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #00c9a7;
    /* optional */
}


/* FIX: Space between Our Products heading and images */
.our-products {
    padding-top: 30px !important;
}

.our-products h2 {
    margin-bottom: 20px !important;
}

/* Make Phone, Email, Address & Locate Us same font size */
/* Email hover effect */
.contact-info a {
    color: #00a884;
    /* your current green */
    text-decoration: none;
    position: relative;
    font-weight: 500;
}

.contact-info a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #0a2a4f;
    /* navy blue */
    transition: width 0.3s ease;
}

.contact-info a:hover::after {
    width: 100%;
}

.company-info h2 {
    font-size: 28px;
    /* heading */
}

.company-info p,
.company-info li {
    font-size: 16.5px;
    /* content text */
    line-height: 1.7;
}

/*29-01-2026-------------------------------------------------*/

/* ================= DROPDOWN MENU CSS (NO ANIMATION) ================= */

/* 1. Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* 2. The Dropdown Box */
.dropdown-content {
    display: none;
    /* Hides it initially */
    position: absolute;
    background-color: #ffffff;
    /* White background */
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    z-index: 9999;
    top: 100%;
    left: 0;
    padding: 8px 0;
    list-style: none;
    text-align: left;
}

/* 3. Style for the Links inside */
.dropdown-content li a {
    color: #333333 !important;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

/* 4. Hover Effect (Color change only, no movement) */
.dropdown-content li a:hover {
    background-color: #d1f3f5;
    color: #000000 !important;
}

/* 5. Show the Menu on Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* 6. Arrow Symbol (Static - No rotation) */
.arrow {
    font-size: 12px;
    margin-left: 5px;
}

/* ================= MOBILE DROPDOWN (TOGGLE LOGIC) ================= */
@media (max-width: 768px) {

    /* 1. Default state: Hidden */
    .dropdown-content {
        display: none;
        position: relative;
        /* Pushes content down */
        width: 100%;
        background-color: #082440;
        /* Dark background */
        padding: 0;
        z-index: 1;
    }

    /* 2. Expanded state: Visible */
    /* This class is added/removed by JavaScript */
    .dropdown-content.show {
        display: block;
    }

    /* 3. Link Styling */
    .dropdown-content li a {
        padding-left: 40px;
        /* Indent */
        color: #d1d5db !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* 4. Arrow Animation */
    .arrow {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .arrow.rotate {
        transform: rotate(180deg);
    }
}

/* -------------------------------------------------== Product Dropdown category start -------------------------------------------------*/

/* ================= PRODUCT CARDS (SAFE) ================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 35px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

/* hover only where supported (desktop safe) */
@media (hover: hover) {
    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
    }
}

.product-image {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
}

/* modern responsive image handling */
.product-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

/* inherit existing text color */
.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* reuse your existing button style */
.product-btn {
    margin-top: 6px;
    display: inline-block;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
    .products-grid {
        gap: 24px;
    }

    .product-image img {
        height: 200px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 25px;
    }

    .product-card {
        padding: 14px;
        border-radius: 14px;
    }

    .product-image img {
        height: 190px;
    }

    .product-title {
        font-size: 17px;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
    .product-image img {
        height: 175px;
    }

    .product-title {
        font-size: 16px;
    }
}

/* = = = = = ---------------------------------------------End of Style.css----------------------------------------------------- = = = = =*/