* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* =========================
        HEADER
========================= */

header {
    background: #ef2b1f;
}

.container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
}

.navbar {

    height: 120px;

    display: grid;
    grid-template-columns: 320px 1fr 240px;

    align-items: center;

}

/* LOGO */

.logo img {

    width: 220px;
    display: block;


}

/* MENU */

nav {

    display: flex;
    justify-content: center;

}

.menu-toggle {
    display: none;
}

nav ul {

    display: flex;
    gap: 46px;

    list-style: none;

}

nav ul li a {

    color: #fff;

    text-decoration: none;

    font-size: 18px;

    font-weight: 500;

    transition: .3s;

}

nav ul li a:hover {

    opacity: .8;

}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    font-size: 34px;

    box-shadow: 0 12px 30px rgba(37, 211, 102, .4);

    z-index: 9999;

    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* BUTTON */

.quote-btn {

    justify-self: end;

    width: 190px;
    height: 64px;

    background: #fff;
    color: #ef2b1f;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 18px;
    font-weight: 500;

    transition: all 0.3s ease;

}

.quote-btn:hover {

    background: #222;
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

}

/* ===========================
   HERO
=========================== */

.hero {
    position: relative;

    height: 800px;
    min-height: 760px;
    background-size: cover;
    background-position: center center;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero {
    background: url("herobg.webp") no-repeat;
    background-size: cover;
    background-position: center 80%;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 620px;

    margin-left: 110px;
    margin-top: -100px;
}

.hero-content h1 {
    color: #fff;

    font-size: 68px;
    font-weight: 700;
    line-height: 1.08;

    margin-bottom: 45px;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: #ef2a1f;
    color: #fff;

    text-decoration: none;

    padding: 18px 40px;

    font-size: 18px;
    font-weight: 600;

    transition: .3s;
}

.catalog-btn:hover {
    background: #d92217;
}

/*==========================
        OUR PRODUCTS
==========================*/

.products-section {
    padding: 110px 0;
    background: #fff;
}

.section-heading {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    color: #333;
    margin-bottom: 90px;
}

.products-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;

}

.product-box {

    position: relative;
    overflow: hidden;
    text-decoration: none;

    height: 320px;

}

.product-box img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.product-overlay {

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .35);

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    transition: .4s;

}

.product-overlay h3 {

    color: #fff;

    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;

}

.product-box:hover img {

    transform: scale(1.08);

}

.product-box:hover .product-overlay {

    background: rgba(0, 0, 0, .55);

}

/*==========================
    VISION & MISSION
==========================*/
/* ===========================
      VISION & MISSION
=========================== */

.vision-section {
    padding: 60px 0 70px;
    background: #fff;
}

.section-heading {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 45px;
}

.vision-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 35px;
}

.vision-card {
    width: 560px;
    background: #fff;
    padding: 35px 35px 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s ease;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

.vision-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff3f2;
    color: #ef2a1f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.vision-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    text-align: center;
}

.vision-card p {
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    text-align: left;
    margin: 0;
}

/* ==========================
      NUMBER SPEAKS
========================== */

.stats-section {
    padding: 80px 0;
    background: #fff;
}

.stats-title {
    text-align: center;
    font-size: 58px;
    font-weight: 700;
    color: #333;
    margin-bottom: 70px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
}

.stat-box {
    position: relative;
    width: 260px;
    text-align: center;
}

.stat-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    color: #f3f3f3;
    z-index: 0;
    line-height: 1;
}

.stat-box h3 {
    position: relative;
    z-index: 2;
    font-size: 72px;
    font-weight: 700;
    color: #12b7c9;
    margin-bottom: 5px;
}

.stat-box p {
    position: relative;
    z-index: 2;
    font-size: 22px;
    color: #444;
    font-weight: 500;
}

/* ==========================
        GALLERY
========================== */
.gallery-section {
    padding: 80px 0;
    background: #fff;
}

.gallery-title {
    font-size: 68px;
    font-weight: 700;
    color: #333;
    text-align: center;
    width: 100%;
    margin: 0 auto 55px;
}

.gallery-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 290px);
    justify-content: center;
    gap: 22px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    transition: .35s ease;
}

.gallery-item img {
    width: 290px;
    height: 430px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: .35s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==========================
        LIGHTBOX
========================== */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 99999;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    width: min(900px, 80vw);
    max-height: 85vh;
    object-fit: contain;
    background: #fff;
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
    position: absolute;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
    user-select: none;
    transition: .3s;
}

.lightbox .close {
    top: 25px;
    right: 35px;
}

.lightbox .prev {
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox .next {
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox .close:hover,
.lightbox .prev:hover,
.lightbox .next:hover {
    color: #ef2a1f;
}

/* ==========================
        CTA SECTION
========================== */

.cta-section {
    padding: 90px 0;
    background: #fff;
}

.cta-box {

    background: linear-gradient(135deg, #E1261C, #C21807);

    border-radius: 30px;

    padding: 70px 80px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 60px;

    overflow: hidden;

    position: relative;

}

.cta-box::before {

    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    background: rgba(255, 255, 255, .06);

    border-radius: 50%;

    top: -150px;

    right: -120px;

}

.cta-content {

    max-width: 700px;

    position: relative;

    z-index: 2;

}

.cta-content span {

    color: #FFD54F;

    letter-spacing: 2px;

    font-weight: 700;

    font-size: 15px;

}

.cta-content h2 {

    font-size: 54px;

    color: #fff;

    line-height: 1.15;

    margin: 18px 0;

}

.cta-content p {

    color: rgba(255, 255, 255, .9);

    font-size: 18px;

    line-height: 1.8;

}

.cta-buttons {

    display: flex;

    flex-direction: column;

    gap: 18px;

    position: relative;

    z-index: 2;

}

.cta-buttons a {

    text-decoration: none;

    padding: 18px 34px;

    border-radius: 60px;

    font-size: 18px;

    font-weight: 600;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    transition: .3s;

}

.btn-call {

    background: #fff;

    color: #E1261C;

}

.btn-call:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);

}

.btn-whatsapp {

    background: #25D366;

    color: #fff;

}

.btn-whatsapp:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);

}

/* ==========================
        FOOTER
========================== */
/* ==========================
        FOOTER
========================== */

.footer-section {
    background: linear-gradient(180deg, #222831 0%, #1B1F24 100%);
    color: #fff;
    padding-top: 130px;
    margin-top: 120px;
    position: relative;
}

/* ==========================
          CTA
========================== */

.footer-cta {
    background: linear-gradient(135deg, #E31E24 0%, #C1121F 100%);
    border-radius: 28px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: -220px;
    margin-bottom: 80px;
    box-shadow: 0 25px 60px rgba(227, 30, 36, .35);
}

.cta-content span {
    color: #FFD54A;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.cta-content h2 {
    font-size: 48px;
    margin: 15px 0;
    color: #fff;
    line-height: 1.2;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, .9);
    max-width: 650px;
    line-height: 1.8;
}

.cta-btn {
    background: #fff;
    color: #E31E24;
    padding: 18px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.cta-btn:hover {
    background: #FFD54A;
    color: #111;
    transform: translateY(-4px);
}

/* ==========================
          FOOTER
========================== */

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 70px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 25px;
}

.footer-map {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, .08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
}

.footer-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}

.footer-col h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 30px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 18px;
}

.footer-col a {
    color: #d8dee9;
    text-decoration: none;
    transition: .3s;
}

.footer-col a:hover {
    color: #FFD54A;
    padding-left: 8px;
}

.footer-col p {
    color: #d8dee9;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Sirf contact icons */
.footer-col p i {
    width: 22px;
    color: #F59E0B;
    margin-right: 12px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.footer-social a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #313843;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: .3s;
}

.footer-social a i {
    font-size: 22px;
    color: #F59E0B;
    margin: 0;
    width: auto;
}

.footer-social a:hover {
    background: #E31E24;
}

.footer-social a:hover i {
    color: #fff;
}

.saral-link {
    color: #efefef;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.saral-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* ==========================
        COPYRIGHT
========================== */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding: 28px 0;
    color: #bfc7d4;
    font-size: 15px;
}

/* ==========================================
            TABLET (992px)
========================================== */
@media (max-width:992px) {

    .container {
        width: 92%;
    }

    /* ================= HEADER ================= */

    .navbar {
        height: 90px;
        grid-template-columns: 220px 1fr 170px;
        gap: 20px;
    }

    .logo img {
        width: 170px;
    }

    nav ul {
        gap: 24px;
    }

    nav ul li a {
        font-size: 16px;
    }

    .quote-btn {
        width: 160px;
        height: 52px;
        font-size: 15px;
    }

    /* ================= HERO ================= */

    .hero {
        height: 650px;
        min-height: 650px;
        background-position: center;
    }

    .hero-content {
        margin-left: 40px;
        margin-top: 0;
        max-width: 520px;
    }

    .hero-content h1 {
        font-size: 52px;
        margin-bottom: 30px;
    }

    .catalog-btn {
        padding: 16px 30px;
        font-size: 16px;
    }

    /* ================= HEADINGS ================= */

    .section-heading,
    .gallery-title,
    .stats-title {
        font-size: 44px;
        margin-bottom: 50px;
    }

    /* ================= PRODUCTS ================= */

    .products-section {
        padding: 80px 0;
    }

    .products-grid {
        gap: 20px;
    }

    .product-box {
        height: 260px;
    }

    .product-overlay h3 {
        font-size: 26px;
    }

    /* ================= VISION ================= */

    .vision-grid {
        gap: 20px;
    }

    .vision-card {
        width: 100%;
        padding: 30px 25px;
    }

    .vision-card h3 {
        font-size: 26px;
    }

    .vision-card p {
        font-size: 16px;
    }

    /* ================= STATS ================= */

    .stats-grid {
        gap: 50px;
    }

    .stat-box {
        width: 220px;
    }

    .stat-icon {
        font-size: 130px;
    }

    .stat-box h3 {
        font-size: 56px;
    }

    .stat-box p {
        font-size: 18px;
    }

    /* ================= GALLERY ================= */

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .gallery-item img {
        width: 100%;
        height: 330px;
    }

    /* ================= FOOTER CTA ================= */

    .footer-cta {
        padding: 45px;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-btn {
        padding: 16px 32px;
    }

    /* ================= FOOTER ================= */

    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-map {
        grid-column: 1 / -1;
        height: 260px;
    }

    .footer-map iframe {
        height: 260px;
    }

}

/* ==========================================
            MOBILE (768px)
========================================== */
@media (max-width:768px) {

    .container {
        width: 94%;
    }

    /* ================= HEADER ================= */

    header {
        position: relative;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
    }

    .logo img {
        width: 150px;
    }

    /* Hide Quote Button */
    .quote-btn {
        display: none;
    }

    /* Hamburger */
    .menu-toggle {
        display: block;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        z-index: 1001;
    }

    /* Mobile Menu */
    nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #ef2b1f;
        display: none;
        padding: 25px 0;
        z-index: 999;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    nav ul li a {
        font-size: 18px;
    }

    /* ================= HERO ================= */

    .hero {
        height: 560px;
        min-height: 560px;
        background-position: center;
    }

    .hero-content {
        margin: 0;
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .catalog-btn {
        padding: 15px 26px;
        font-size: 15px;
    }

    /* ================= HEADINGS ================= */

    .section-heading,
    .gallery-title,
    .stats-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    /* ================= PRODUCTS ================= */

    .products-section {
        padding: 70px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-box {
        height: 300px;
    }

    /* ================= VISION ================= */

    .vision-grid {
        flex-direction: column;
    }

    .vision-card {
        width: 100%;
    }

    /* ================= STATS ================= */

    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 55px;
    }

    .stat-box {
        width: 100%;
        max-width: 260px;
    }

    /* ================= GALLERY ================= */

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item img {
        width: 100%;
        height: 280px;
    }

    /* ================= LIGHTBOX ================= */

    .lightbox img {
        width: 92%;
    }

    .lightbox .prev,
    .lightbox .next {
        font-size: 34px;
    }

    .lightbox .close {
        font-size: 36px;
        top: 15px;
        right: 20px;
    }

    /* ================= FOOTER CTA ================= */

    .footer-section {
        padding-top: 90px;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
        margin-top: -160px;
        padding: 35px 25px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 260px;
    }

    /* ================= FOOTER ================= */

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-map {
        height: 240px;
    }

    .footer-map iframe {
        height: 240px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 14px;
        padding: 20px 15px;
        line-height: 1.7;
    }

}

/* ==========================================
            SMALL MOBILE (480px)
========================================== */
@media (max-width:480px) {

    .container {
        width: 92%;
    }

    /* ================= HEADER ================= */

    .navbar {
        height: 72px;
    }

    .logo img {
        width: 125px;
    }

    .quote-btn {
        width: 120px;
        height: 42px;
        font-size: 12px;
    }

    /* ================= HERO ================= */

    .hero {
        height: 480px;
        min-height: 480px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .catalog-btn {
        padding: 13px 20px;
        font-size: 13px;
        gap: 8px;
    }

    /* ================= HEADINGS ================= */

    .section-heading,
    .gallery-title,
    .stats-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    /* ================= PRODUCTS ================= */

    .products-section,
    .vision-section,
    .stats-section,
    .gallery-section {
        padding: 55px 0;
    }

    .product-box {
        height: 240px;
    }

    .product-overlay h3 {
        font-size: 22px;
    }

    /* ================= VISION ================= */

    .vision-card {
        padding: 22px 18px;
    }

    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .vision-card h3 {
        font-size: 22px;
    }

    .vision-card p {
        font-size: 15px;
        line-height: 1.7;
        text-align: center;
    }

    /* ================= STATS ================= */

    .stat-icon {
        font-size: 95px;
    }

    .stat-box h3 {
        font-size: 42px;
    }

    .stat-box p {
        font-size: 16px;
    }

    /* ================= GALLERY ================= */

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 300px;
    }

    /* ================= LIGHTBOX ================= */

    .lightbox img {
        width: 95%;
        padding: 8px;
    }

    .lightbox .prev,
    .lightbox .next {
        font-size: 28px;
    }

    .lightbox .close {
        font-size: 30px;
    }

    /* ================= FOOTER ================= */

    .footer-section {
        margin-top: 80px;
        padding-top: 70px;
    }

    .footer-cta {
        margin-top: -120px;
        padding: 28px 20px;
        border-radius: 20px;
    }

    .cta-content span {
        font-size: 12px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .cta-btn {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }

    .footer-map {
        height: 200px;
    }

    .footer-map iframe {
        height: 200px;
    }

    .footer-col h3 {
        font-size: 22px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 14px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
    }

    .footer-bottom {
        font-size: 12px;
        line-height: 1.6;
    }

}