* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f5f6f8;
    color: #111;
}


/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 86px 0px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}

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

.navbar nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

.navbar nav a:hover {
    color: #2563eb;
}

.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;

    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;

    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;

    border-radius: 40px;
    text-decoration: none;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;
}

/* ICON */

.nav-whatsapp i {
    font-size: 18px;
}

/* HOVER */

.nav-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* CLICK EFFECT */

.nav-whatsapp:active {
    transform: scale(0.95);
}

/* Default - Laptop/Desktop */
.nav-whatsapp {
    display: block;
}


/* ================= NAVBAR ================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;

    /* 🔥 important */
    position: relative;
}

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

/* MENU (DESKTOP) */
#navMenu {
    display: flex;
    gap: 25px;
    align-items: center;
}

#navMenu a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

#navMenu a:hover {
    color: #2563eb;
}

/* WHATSAPP BUTTON */
.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s;
}

.nav-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* MENU ICON */
.menu-icon {
    font-size: 28px;
    cursor: pointer;
    display: none;
    color: #111;
    transition: 0.3s;
}

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

@media(max-width:768px) {

    .navbar {
        padding: 15px 20px;
    }

    /* SHOW ICON */
    .menu-icon {
        display: block;
    }

    /* 🔥 MOBILE MENU FIX */
    #navMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        display: flex;
        flex-direction: column;

        background: white;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;

        overflow: hidden;

        /* animation */
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: 0.3s ease;
    }

    /* MENU ITEMS */
    #navMenu a {
        padding: 14px 20px;
        border-bottom: 1px solid #eee;
    }

    /* ACTIVE (SHOW MENU) */
    #navMenu.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* HIDE WHATSAPP */
    .nav-whatsapp {
        display: none;
    }

}

/* Mobile hide */
@media (max-width:768px) {

    .nav-whatsapp {
        display: none;
    }

}

/* HERO */

.hero {
    height: 650px;
    background: url("../images/hero.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 100px;
    color: white;
}

.hero-content {
    max-width: 550px;
}

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

.hero span {
    color: #3b82f6;
}

.hero p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-buttons button {
    padding: 12px 22px;
    border-radius: 6px;
    border: none;
    margin-right: 10px;
    cursor: pointer;
}

.primary {
    background: #2563eb6b;
    color: white;
}

.secondary {
    background: white;
    color: black;
}

/* about page start */
.about-hero {
    position: relative;
    height: 520px;

    /* Flask image path */
    background: url("../images/projects1.jpeg") center/cover no-repeat;

    display: flex;
    align-items: center;
    padding-left: 80px;

    color: white;
}

/* Dark overlay */

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* background:linear-gradient(
90deg,
rgba(10,20,40,0.8) 0%,
rgba(10,20,40,0.5) 40%,
rgba(10,20,40,0.1) 70%
); */
}

/* Text */

.about-content {
    position: relative;
    max-width: 650px;
    z-index: 2;
}

.about-content h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 500px;
}

.heritage {
    padding: 100px 8%;
    background: #f5f6f8;
    font-family: Arial;
}

.heritage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}


/* LEFT */

.heritage-text h5 {
    color: #4a6cf7;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.heritage-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.heritage-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 450px;
}


/* RIGHT */

.heritage-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.heritage-images img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* STATS BOX */

.stat-box {
    position: absolute;
    top: 20px;
    right: -20px;
    background: #e5e9f2;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
    font-size: 28px;
    margin: 0;
    color: #2563eb;
}

.stat-box p {
    font-size: 12px;
    color: #555;
}


/* YEARS */

.years {
    position: absolute;
    bottom: -20px;
    left: 40px;
    background: #2563eb;
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.years h3 {
    font-size: 26px;
    margin: 0;
}

.years p {
    font-size: 12px;
}


/* MOBILE */

@media(max-width:768px) {

    .heritage-container {
        grid-template-columns: 1fr;
    }

    .stat-box {
        right: 10px;
    }

    .years {
        left: 20px;
    }

}

/* about page end */

/* ABOUT */

.design-section {
    padding: 100px 10%;
    background: #ffffff;
}

.design-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.small-title {
    font-size: 12px;
    letter-spacing: 2px;
    color: #4a6cf7;
    font-weight: 600;
}

.design-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.3;
}

.design-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 500px;
}

.design-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


/* product page start */
.products-page {
    padding: 90px 8%;
    background: #f5f7fa;
    font-family: Arial;
    text-align: center;
}

.product-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.product-title h1 {
    font-size: 40px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.product-title p {
    color: #666;
    max-width: 650px;
    margin: auto;
    line-height: 1.6;
    font-size: 15px;
}

/* decorative line */

.product-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #2563eb;
    display: block;
    margin: 20px auto 0;
    border-radius: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-content {
    padding: 25px;
    text-align: left;
}

.product-content h3 {
    margin-bottom: 10px;
}

.product-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-content a {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
}

/* product page end */


/* project-gallery page start */
.gallery-header-text {
    max-width: 700px;
    margin-bottom: 40px;
}

.gallery-header-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    position: relative;
}

.gallery-header-text p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* underline design */

.gallery-header-text h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #2563eb;
    margin-top: 10px;
    border-radius: 5px;
}

.project-gallery {
    padding: 90px 8%;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.gallery-arrows button {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 22px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-arrows button:hover {
    background: black;
}

.slider {
    display: flex;
    align-items: center;
    gap: 25px;
    overflow: hidden;
}

/* cards */

.slide {
    flex: 0 0 25%;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    opacity: 0.5;
    transition: 0.5s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* center card */

.slide.active {
    flex: 0 0 50%;
    height: 320px;
    opacity: 1;
}

/* overlay */

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* MOBILE RESPONSIVE */
/* DESKTOP (default - change pannathe) */
.slider {
    display: flex;
    align-items: center;
    gap: 25px;
    overflow: hidden;
}

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

    .slider {
        overflow-x: auto;
        /* 🔥 mobile scroll only */
        scroll-snap-type: x mandatory;
        gap: 15px;
    }

    .slide {
        flex: 0 0 90%;
        /* full card */
        height: 260px;
        opacity: 1;
        scroll-snap-align: center;
    }

    /* ❌ desktop effect remove */
    .slide.active {
        flex: 0 0 90%;
        height: 260px;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* arrows hide in mobile */
    .gallery-arrows {
        display: none;
    }

}

/* project-gallery page end */

/* contacts page start */


/* SECTION */

.contact-section {
    padding: 100px 8%;
    position: relative;
}

/* TITLE */

.contact-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title h1 {
    font-size: 40px;
    font-weight: 700;
}

.contact-title span {
    color: #2563eb;
}

.contact-title p {
    color: #6b7280;
    margin-top: 10px;
}

/* LAYOUT */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
}

/* LEFT SIDE */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
    margin-bottom: 10px;
}

/* FORM */

.contact-form {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    /* padding:40px; */
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-form h2 {
    margin-bottom: 20px;
}

/* INPUTS */

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input,
textarea {
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */

button {
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    /* transform:translateY(-2px); */
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
}

/* MAP SECTION */

.map-section {
    padding: 60px 8%;
}

.map-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.map-card:hover {
    transform: scale(1.02);
}

.map-card iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* MOBILE RESPONSIVE */

@media (max-width:900px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 60px 6%;
    }

    .map-section {
        padding: 40px 6%;
    }

}

/* contacts page end */

/* projects page start */
.projects-section {
    padding: 80px 8%;
    background: #f4f6fb;
    font-family: Inter, sans-serif;
}

.projects-title h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.projects-title p {
    color: #6b7280;
    max-width: 600px;
}

/* FILTER */

.filter-buttons {
    margin: 30px 0;
}

.filter-buttons button {
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    margin-right: 10px;
    background: #003a688c;
    cursor: pointer;
}

.filter-buttons .active {
    background: #2563eb;
    color: white;
}

/* GRID */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* BIG CARD */

.project-card.wide {
    grid-column: span 2;
}

/* OVERLAY */

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.tag {
    font-size: 11px;
    background: #2563eb;
    padding: 3px 8px;
    border-radius: 4px;
}

/* POPUP */

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.prev {
    left: 40px;
}

.next {
    right: 40px;
}

/* CTA SECTION */

.cta-section {
    padding: 80px 5%;
    background: #f5f6f8;
}

.cta-box {
    max-width: 1100px;
    margin: auto;
    text-align: center;

    background: linear-gradient(135deg, #2457d6, #1f4ec1);
    color: white;

    padding: 60px 40px;
    border-radius: 16px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* TITLE */

.cta-box h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* TEXT */

.cta-box p {
    max-width: 650px;
    margin: auto;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 35px;
}

/* BUTTON AREA */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* BUTTON */

.btn-primary {
    background: white;
    color: #1f4ec1;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* OUTLINE BUTTON */

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: #1f4ec1;
}

/* projects page end */

/* FOOTER */

/* footer page start */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* LOGO */
.logo img {
    width: 140px;
    margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

/* HEADINGS */
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -5px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #888;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

/* CONTACT */
.contact p {
    margin: 6px 0;
    color: #bbb;
}

.contact i {
    margin-right: 8px;
    color: #fff;
}

/* SUBSCRIBE BOX */
.subscribe {
    display: flex;
    margin-top: 10px;
    border: 1px solid #333;
    border-radius: 30px;
    overflow: hidden;
}

.subscribe input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
}

.subscribe button {
    background: #fff;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 0px;
    border-radius: 0px;
}

.subscribe button:hover {
    background: #ccc;
}

/* SMALL TEXT */
.small {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 15px;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
}

/* LINKS */
.bottom-links a {
    color: #777;
    margin: 0 10px;
    text-decoration: none;
    font-size: 13px;
}

.bottom-links a:hover {
    color: #fff;
}

/* SOCIAL */
.social a {
    color: #fff;
    margin-left: 15px;
    font-size: 15px;
    transition: 0.3s;
}

.social a:hover {
    color: #aaa;
    transform: scale(1.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* footer page end  */

/* mobile reponsive page start */
/* =========================
MOBILE RESPONSIVE
========================= */

@media (max-width:1024px) {

    .navbar {
        padding: 15px 40px;
    }

    .hero {
        padding: 80px 50px;
        height: 500px;
    }

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

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

}


/* MOBILE */

@media (max-width:768px) {

    /* NAVBAR */

    /* .navbar{
flex-direction:column;
gap:15px;
padding:15px 20px;
} */

    .navbar nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar nav a {
        margin: 8px;
    }


    /* HERO */

    .hero {
        height: auto;
        padding: 80px 20px;
        text-align: center;
    }

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

    .hero-content {
        max-width: 100%;
    }


    /* ABOUT */

    .design-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .design-text p {
        max-width: 100%;
    }


    /* PRODUCTS */

    .product-grid {
        grid-template-columns: 1fr;
    }


    /* PROJECT GALLERY */

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .project-card {
        min-width: 100%;
        height: 220px;
    }

    .slides {
        flex-direction: column;
    }



    /* about page start */
    .about-hero {
        position: relative;
        height: 420px;
        background: url("../images/projects1.jpeg") center/cover no-repeat;
        display: flex;
        align-items: flex-end;
        padding: 60px;
        color: white;
    }

    .about-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
        background: url("../images/about-banner.html") center/cover no-repeat;
    }

    .about-content {
        position: relative;
        max-width: 600px;
    }

    .about-content h1 {
        font-size: 32px;
        font-weight: 0px;
        /* line-height; 1.2; */
        margin-bottom: 20px;
    }

    /* about page end */


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

}


/* SMALL MOBILE */

@media (max-width:480px) {

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

    .hero p {
        font-size: 14px;
    }

    .product-card img {
        height: 200px;
    }

    .logo img {
        height: 86px;
        margin-bottom: 0px;
    }

}

/* menu page start */
/* MENU ICON */

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE */

@media (max-width:768px) {

    .menu-icon {
        display: block;
    }

    .navbar {
        flex-wrap: wrap;
    }

    #navMenu {
        /* width:100%; */
        display: none;
        flex-direction: column;
        /* margin-top:15px; */
    }

    #navMenu a {
        padding: 10px 0;
        border-top: 1px solid #eee;
    }

    #navMenu.active {
        display: flex;
    }

    .quote-btn {
        display: none;
    }

}

/* menu page end */
/* mobile footer page start*/
/* MOBILE VIEW */
@media (max-width:768px) {

    .footer {
        padding: 50px 20px;
    }

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

    .footer-col {
        width: 100%;
    }

    .footer-col h4 {
        margin-bottom: 15px;
    }

    .subscribe {
        width: 100%;
    }

    .subscribe input {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .bottom-links a {
        margin-left: 0;
        margin-right: 15px;
    }

    .social {
        margin-top: 10px;
    }

    .social a {
        margin-left: 0;
        margin-right: 15px;
    }

}

/* mobile footer page end */
/* mobile responsive page end */




/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-size: 24px;
    padding: 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);

    animation: bounceGlow 1.5s infinite;
}

/* Bounce + Glow Effect */
@keyframes bounceGlow {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(37, 211, 102, 0.6);
    }

    50% {
        transform: translateY(-10px);
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.9);
    }
}

/* Chat Box */
.chat-box {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 330px;
    border-radius: 20px;
    overflow: hidden;
    display: none;
    flex-direction: column;

    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
}

/* Open Animation */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header */
.chat-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

/* Body */
.chat-body {
    padding: 12px;
    height: 220px;
    overflow-y: auto;
    background: #f9fafb;
}

/* Messages */
.message {
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    max-width: 70%;
    animation: fadeIn 0.3s ease;
}

.message.bot {
    background: #e5e7eb;
}

.message.user {
    background: #25D366;
    color: white;
    margin-left: auto;
}

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.chat-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: white;
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
}

.chat-footer i {
    font-size: 18px;
    cursor: pointer;
    color: #555;
}

.chat-footer button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.chat-footer button:hover {
    transform: scale(1.1);
}

/* client slider start */
.client-section-page {
    background: #f5f5f5;
    padding: 40px 0;
}

/* SLIDER */
.client-slider-page {
    overflow: hidden;
    position: relative;
    width: 90%;
    margin: auto;
}

/* TRACK */
.slide-track-page {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 20s linear infinite;
}

/* EACH LOGO */
.slide-page {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-page img {
    width: 150px;
    height: auto;
    /* filter: grayscale(100%); */
    /* opacity:0.7; */
    transition: 0.3s;
}

.slide-page img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* client slider end */

/* contacts form page start */

/* contacts form page end */