/* =========================
   COLOR VARIABLES
========================= */

:root {
    --primary: #4a90e2;
    --secondary: #50e3c2;
    --accent: #f5a623;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --muted: #7f8c8d;
    --white: #ffffff;
}

.logo-img {
    height: 55px;
    width: 55px;        /* make width equal to height */
    border-radius: 75%; /* makes it perfectly circular */
    object-fit: cover;  /* prevents distortion */
}
/* =========================
   GLOBAL RESET
========================= */

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

body {
    font-family: Arial, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* =========================
   TOP BAR
========================= */

.top-bar {
    background: var(--dark-blue);
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

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

header {
    background: var(--primary);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* hide close button by default */
.close-btn {
    display: none;
}

/* show close button only when menu is open */
nav.active .close-btn {
    display: block;
}

/* hide hamburger on desktop */
.menu-toggle {
    display: none;
}
nav {
    display: flex;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

    /* show hamburger */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 28px;
        color: white;
        cursor: pointer;
    }

    /* hide menu initially */
    nav {
        display: none;
        flex-direction: column;
        background: white;
        padding: 15px;
        margin-top: 10px;
        border-radius: 8px;
    }

    /* show menu when clicked */
    nav.active {
        display: flex;
    }

    /* hide close button initially */
    .close-btn {
        display: none;
    }

    /* show close button only after opening */
    nav.active .close-btn {
        display: block;
        text-align: right;
        font-size: 22px;
        cursor: pointer;
    }

}

@media (max-width: 768px) {

    #navMenu a {
        color: #0b4da2 !important;  /* force visible text */
        font-weight: 600;
        text-decoration: none;
    }

    #navMenu a:hover {
        color: #ff8c00;
    }

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

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

/* Navigation */
nav a {
    color: #ffffff;
    margin-left: 30px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

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

.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    padding: 90px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    margin: 8px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    color: white;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Hover effect */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #ff7a00, #ff9800);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
/* =========================
   CONTENT SECTIONS
========================= */

.content {
    padding: 80px 60px;
    max-width: 1100px;
    margin: auto;
}

.content h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

/* =========================
   FEATURES SECTION
========================= */

.features-section {
    padding: 80px 60px;
    background: #ffffff;
    text-align: center;
}

.features-section h2 {
    margin-bottom: 40px;
    color: var(--primary);
}

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

.box {
    background: var(--white);
    padding: 30px;
    border-top: 4px solid var(--accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.box:nth-child(2) {
    border-top-color: var(--secondary);
}

.box:nth-child(3) {
    border-top-color: var(--primary);
}

.box:nth-child(4) {
    border-top-color: var(--accent);
}

/* =========================
   PRODUCT SECTION
========================= */

.product-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 90px 60px;
    background: var(--light);
}

/* Alternate background */
.product-section:nth-child(even) {
    background: var(--white);
}

/* Automatic reverse for alternate layout */
.product-section:nth-of-type(even) {
    flex-direction: row-reverse;
}

.product-section.reverse {
    flex-direction: row-reverse;
}

.product-text {
    flex: 1;
}

.product-text h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.product-text p {
    color: var(--muted);
    margin-bottom: 10px;
}

.product-image {
    flex: 1;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.contact-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    background: #ffffff;
}

.contact-details,
.contact-form {
    flex: 1;
}

.contact-details h2,
.contact-form h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-details a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    background: var(--accent);
    color: #fff;
    padding: 14px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    background: #d4880a;
}

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

footer {
    background: var(--dark);
    color: #ffffff;
    text-align: center;
    padding: 25px;
}

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

@media (max-width: 768px) {

    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin-left: 0;
        margin-right: 20px;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-img {
        height: 45px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .product-section {
        flex-direction: column !important;
        text-align: center;
        padding: 60px 20px;
    }

    .contact-wrapper {
        flex-direction: column;
        padding: 60px 20px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }
}
.whatsapp-float {
position: fixed;
bottom: 20px;
right: 20px;
background: #25d366;
color: white;
padding: 14px 18px;
border-radius: 50px;
font-weight: bold;
text-decoration: none;
box-shadow: 0 6px 12px rgba(0,0,0,0.2);
z-index: 999;
}
.trust-badges{
display:flex;
gap:20px;
justify-content:center;
margin-top:30px;
flex-wrap:wrap;
font-weight:600;
}

.products-preview{
padding:60px 20px;
text-align:center;
}

.product-grid{
display:flex;
gap:25px;
justify-content:center;
flex-wrap:wrap;
}

.product-card{
width:220px;
background:#fff;
padding:15px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.product-card img{
width:100%;
border-radius:8px;
}

.why-us{
background:#f7f7f7;
padding:60px 20px;
text-align:center;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
max-width:900px;
margin:auto;
font-weight:600;
}

.floating-whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
font-size:28px;
padding:15px;
border-radius:50%;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}
.products-hero{
padding:60px 20px;
background:#eef3f8;
text-align:center;
}

.product-section{
display:flex;
align-items:center;
gap:40px;
padding:60px 10%;
flex-wrap:wrap;
}

.product-section.reverse{
flex-direction:row-reverse;
}

.product-image img{
width:420px;
border-radius:12px;
box-shadow:0 6px 20px rgba(0,0,0,0.1);
}

.product-details{
max-width:500px;
}

.product-details ul{
margin-top:10px;
line-height:1.8;
}

.product-btn{
display:inline-block;
margin-top:15px;
padding:10px 22px;
background:#2f7de1;
color:white;
border-radius:6px;
text-decoration:none;
}

.industries{
background:#f7f7f7;
padding:60px 20px;
text-align:center;
}

.industry-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
max-width:800px;
margin:auto;
font-weight:600;
}

.cta-section{
text-align:center;
padding:60px 20px;
}

.cta-section h2{
margin-bottom:15px;
}

.cta-section p{
margin-bottom:25px;
}

.cta-btn{
display:inline-block;
padding:14px 30px;
background:#2f7de1;
color:white;
border-radius:8px;
margin:10px;
text-decoration:none;
font-weight:600;
min-width:160px;
text-align:center;
}

.cta-btn.whatsapp{
background:#25D366;
}
.products {
    text-align: center;
    padding: 50px 20px;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.product-card {
    width: 250px;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.product-card p {
    margin-top: 10px;
    font-weight: bold;
}