* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

/* ================= HEADER ================= */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(15, 30, 50, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    color: #fff;
}

.logo-area {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.agency-logo {
    width: 40px;
    margin-right: 10px;
}

.agency-name {
    font-size: 18px;
    font-weight: 600;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #e6f2ff;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: rgba(95, 168, 255, 0.2);
    border-radius: 4px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ================= PARALLAX BACKGROUND ================= */
.parallax {
    background: linear-gradient(rgba(10, 25, 45, 0.75),
            rgba(10, 25, 45, 0.75)),
        url("Images/Cement bg-1.avif") center / cover fixed;
    color: #ffffff;
}

/* ================= HERO ================= */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 40px;
}

.hero-content {
    max-width: 820px;
    padding: 20px;
}

.hero-logo {
    width: 170px;
    max-width: 65vw;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 10px;
    color: #9ecbff;
}

.hero-subtext {
    font-size: clamp(14px, 3.5vw, 17px);
    line-height: 1.6;
    margin-bottom: 25px;
    color: #dbeaff;
}

/* Buttons */
.btn {
    background: linear-gradient(135deg, #5fa8ff 0%, #007bff 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    min-height: 44px;
    min-width: 44px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #4fa0ff 0%, #0069d9 100%);
}

/* ================= CONTENT SECTIONS ================= */
.content-section {
    padding: 120px 40px;
    text-align: center;
}

.content-section h2 {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 15px;
}

.content-section>p {
    font-size: clamp(14px, 3vw, 16px);
    max-width: 800px;
    margin: 0 auto;
}

/* ================= PRODUCTS ================= */
#products {
    background-image: linear-gradient(rgba(10, 25, 45, 0.85),
            rgba(10, 25, 45, 0.85)),
        url("Images/products_bg-1.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.counter-box {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Glassmorphism for Product Cards */
    background: rgba(255, 255, 255, 0.9);
    padding: 35px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #000;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.counter-box:hover {
    background: #fff;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.brand-logo {
    max-width: 230px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 18px;
}

.logo.large {
    max-height: 100px;
}

.logo.extra-large {
    max-height: 120px;
}

.counter-box h2 {
    margin-top: auto;
    font-size: clamp(18px, 4vw, 22px);
    color: #1f3c88;
}

/* Featured product */
.featured-product {
    grid-column: span 3;
    background: linear-gradient(135deg, #e0eaf7 0%, #ffffff 100%);
    padding: 50px 30px;
}

/* ================= ENQUIRE SECTION ================= */
.enquire-section {
    background: #f2f6fb;
    padding: 100px 40px;
    text-align: center;
    color: #222;
    background-image: radial-gradient(#e0eafc 1px, transparent 1px);
    background-size: 30px 30px;
}

.helper-text {
    margin-bottom: 40px;
    color: #555;
    font-size: clamp(14px, 3vw, 16px);
}

.enquire-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.enquire-box {
    /* Glass card styles */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 40px;
    border-radius: 16px;
    text-align: left;
}

.enquire-box h3 {
    margin-bottom: 25px;
    font-size: clamp(20px, 4vw, 24px);
    text-align: center;
    color: #1f3c88;
}

.form-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    margin-bottom: 18px;
}

.form-row label {
    text-align: left;
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    font-size: 15px;
    min-height: 48px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #5fa8ff;
    box-shadow: 0 0 0 4px rgba(95, 168, 255, 0.15);
    background: #fff;
}

/* Buttons */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    width: 100%;
    margin-top: 20px;
    min-height: 52px;
    color: white;
    /* Ensure text is white */
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.call-btn {
    /* Main btn styles apply */
    width: 100%;
    margin-top: 20px;
    min-height: 52px;
}

.small-text {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* ================= ABOUT ================= */
.about {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    padding: 80px 40px;
    background: #f6f9fc;
    align-items: start;
    /* background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%); */
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    background-image: url("Images/about-bg.jpeg");
    background-size: cover;
    background-position: center;
}

.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(5px);
}

.about>* {
    position: relative;
    z-index: 1;
}


.about-block h3,
.why-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    color: #1f3c88;
    font-weight: 700;
}

.about-block h3::after,
.why-block h3::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #5fa8ff;
    display: block;
    margin-top: 10px;
    border-radius: 2px;
}

.about-block p {
    line-height: 1.9;
    color: #333;
    max-width: 520px;
    font-size: 1.05rem;
}

.why-block ul {
    padding-left: 18px;
    list-style: none;
    /* Remove default bullets */
}

.why-block li {
    margin-bottom: 14px;
    font-weight: 500;
    color: #333;
    padding-left: 10px;
    position: relative;
}

/* Custom bullet points */
.why-block li::before {
    content: "✓";
    color: #25d366;
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
}


.divider {
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            #94a3b8,
            transparent);
    margin: 0 auto;
    height: 100%;
}

/* Mobile */
@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .divider {
        display: none;
    }
}



/* ================= CONTACT ================= */
.contact-section {
    background: #eef2f6;
    padding: 100px 40px;
    text-align: center;
    color: #222;
}

.contact-section h2 {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 15px;
}

.contact-section p {
    margin: 10px 0;
    font-size: clamp(14px, 3vw, 16px);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.contact-box {
    /* Inherits glass-card styles */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.contact-box .name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1f3c88;
}

.contact-box .role {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-box a {
    display: inline-block;
    color: #1f3c88;
    font-weight: 600;
    text-decoration: none;
    margin-top: 6px;
    padding: 8px 16px;
    background: #f0f4f8;
    border-radius: 20px;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.contact-box a:hover {
    background: #1f3c88;
    color: #fff;
}

.contact-footer {
    text-align: center;
    margin-top: 50px;
    color: #64748b;
}


/* ================= FOOTER ================= */
footer {
    background: #0f1e32;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* ================= PRODUCT MODAL ================= */
.product-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    /* Black w/ opacity */
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-modal.active {
    display: flex;
    /* Show when active */
}

.modal-content {
    background-color: #fefefe;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
}

.modal-header {
    background: #f8fafc;
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.modal-brand-logo {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.modal-header h2 {
    color: #1f3c88;
    margin-bottom: 8px;
}

.modal-header p {
    color: #666;
    font-size: 0.95rem;
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Price Table */
.price-table-container {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 25px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.price-table th,
.price-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background-color: #f1f5f9;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.price-table td {
    color: #333;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-tag {
    font-weight: bold;
    color: #1f3c88;
}

.order-link {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s;
}

.order-link:hover {
    background: #1fb355;
    transform: none;
    /* Override btn transform if needed */
}

.bulk-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

/* Loading Spinner */
.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1rem;
}

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

/* Tablet */
@media (max-width: 992px) {
    .parallax {
        background-attachment: scroll;
    }

    .main-header {
        padding: 0 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .featured-product {
        grid-column: span 2;
    }

    .content-section {
        padding: 100px 30px;
    }

    .enquire-section {
        padding: 80px 30px;
    }

    .about-section,
    .contact-section {
        padding: 80px 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-header {
        padding: 0 20px;
    }

    /* Hamburger Menu */
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(15, 30, 50, 0.98);
        transition: right 0.3s ease;
        padding: 30px 0;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul li a {
        padding: 18px 30px;
        font-size: 16px;
    }

    /* Enquire Grid */
    .enquire-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .form-row label {
        text-align: left;
        padding-bottom: 5px;
    }

    .content-section {
        padding: 80px 20px;
    }

    .enquire-section {
        padding: 60px 20px;
    }

    .about-section,
    .contact-section {
        padding: 60px 20px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-product {
        grid-column: span 1;
    }

    .counter-box {
        min-height: 220px;
        padding: 25px 15px;
    }

    .enquire-box {
        padding: 25px 20px;
    }

    .hero-content {
        padding: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Landscape Mobile Fix */
@media (max-height: 600px) and (orientation: landscape) {
    #hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }
}

/* ================= ANIMATIONS ================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}