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

html,
body {
    overflow-x: hidden;
}

:root {
    --bg-dark: #121212;
    /* Main background */
    --beige-dark: #c2a87a;
    /* For headings (dark beige) */
    --beige-light: #e6d5b8;
    /* For paragraphs & body text (light beige) */
    --white-logo: #ffffff;
    /* White logo or accents */
    --muted: #a8a8a8;
    /* Optional secondary/placeholder text */
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    /* light for paragraphs */
    color: var(--beige-light);
    background-color: var(--bg-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    /* or 700 for stronger headings */
    color: var(--beige-dark);
}

p,
li,
span {
    color: var(--beige-light);
}


/* fixed icons */


/* ✅ WhatsApp Floating Button */

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    animation: blink 1.2s infinite ease-in-out;
}

@keyframes blink {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(37, 211, 102, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
    }
}

.fixed-icons {
    position: fixed;
    top: 70%;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-icons .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.fixed-icons .icon.call {
    background: #007bff;
    /* Blue */
}

.fixed-icons .icon.whatsapp {
    background: #25d366;
    /* WhatsApp Green */
}

.fixed-icons .icon.mail {
    background: #ff5e5e;
    /* Red */
}

.fixed-icons .icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* --- Popup Overlay --- */

.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.45);
    justify-content: center;
    align-items: center;
    z-index: 999999;
}


/* --- Popup Card --- */

.popup-card {
    width: 280px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideUp 0.35s ease;
    position: relative;
}


/* Slide Animation */

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

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


/* --- Title --- */

.popup-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #fff;
}


/* --- Buttons --- */

.popup-option {
    display: block;
    background: #25d366;
    margin: 10px 0;
    padding: 12px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.popup-option:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}


/* Close Icon */

.popup-close {
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: white;
    transition: 0.3s;
}

.popup-close:hover {
    transform: scale(1.2);
}


/* fixed icons */


/* topbar */


/* .topbar {
    background: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1051;

    display: flex;
    justify-content: space-between;
 
    align-items: center;

    padding: 0 6rem;

}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-social a {
    color: var(--beige-light);
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.topbar-social a:hover {
    color: var(--beige-dark);
    transform: translateY(-2px);
}

.enquiry-btn {
    background: var(--beige-dark);
    color: var(--bg-dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.enquiry-btn:hover {
    background: var(--beige-dark);
    transform: translateY(-2px);
}


@media(max-width:767px){
    .topbar{
        display: none;
    }
} */


#proPopupWrapper {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

#proPopupWrapper.active {
    opacity: 1;
    pointer-events: auto;
}

#proPopupContent {
    max-width: 88vh;
    max-height: 90vh;
    padding: 18px;
}

#proPopupImg {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Close Btn */
#proPopupClose {
    position: absolute;
    top: 20%;
    right: 25%;
    width: 36px;
    height: 36px;
    font-size: 22px;
    z-index: 10;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;


}


/* TABLET */
@media (max-width: 992px) {
    #proPopupContent {
        max-width: 80vh;
        max-height: 88vh;
        padding: 16px;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    #proPopupClose {
        width: 40px;
        height: 40px;
        font-size: 28px;
        top: 20%;
        right: 60px;
    }
}

@media (max-width: 600px) {
    #proPopupContent {
        max-width: 60vh;
        max-height: 85vh;
        padding: 12px;
    }
}


/* -------- Topbar -------- */

.topbar {
    background: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1051;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6rem;
    transition: transform 0.35s ease-in-out;
}

.topbar.hide {
    transform: translateY(-100%);
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-social a {
    color: var(--beige-light);
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.topbar-social a:hover {
    color: var(--beige-dark);
    transform: translateY(-2px);
}

.enquiry-btn {
    background: var(--beige-dark);
    color: var(--bg-dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.enquiry-btn:hover {
    background: var(--beige-dark);
    transform: translateY(-2px);
}

/* Hide topbar on mobile */

@media (max-width:767px) {
    .topbar {
        display: none;
    }
}


/* -------- Navbar -------- */

.custom-nav {
    background: rgba(18, 18, 18, 0.24);
    /* backdrop-filter: blur(1px); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.4s ease, box-shadow 0.4s ease;
    top: 40px;
    /* sits just below topbar */
}

.custom-nav.scrolled {
    background: rgba(18, 18, 18, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}


/* When topbar hidden -> navbar moves to top */

.custom-nav.no-topbar {
    top: 0;
}


/* Nav links */

.navbar-nav .nav-link {
    color: var(--white-logo);
    margin: 0 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--beige-dark);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--beige-dark);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}


/* Hover dropdown open */

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Dropdown animation and design */

.custom-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    background: #1b1b1b;
    min-width: 220px;
}

.custom-dropdown .dropdown-item {
    color: #f5f5f5;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.custom-dropdown .dropdown-item:hover {
    background: linear-gradient(90deg, #c59d5f, #e0b970);
    color: #fff;
    transform: translateX(5px);
}


/* For mobile click dropdown */

.nav-item.dropdown .nav-link:focus+.dropdown-menu,
.nav-item.dropdown .nav-link.show+.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Brochure button */

.brochure-btn {
    background: linear-gradient(135deg, var(--beige-dark) 0%, var(--beige-light) 100%);
    color: var(--bg-dark);
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brochure-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    text-decoration: none;
    color: var(--bg-dark);
}


/* Mobile fix */

@media (max-width:767px) {
    .custom-nav {
        top: 0;
        background: rgba(18, 18, 18, 0.522);
        backdrop-filter: blur(1px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: background 0.4s ease, box-shadow 0.4s ease;
        top: 50px;
        /* sits just below topbar */
    }


}


/* navbar start */


/* Glass effect navbar */


/* .custom-nav {
    background: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.4s ease, box-shadow 0.4s ease;
    top: 50px;
}



.custom-nav.scrolled {
    background: rgba(18, 18, 18, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}


.navbar-nav .nav-link {
    color: var(--beige-light);
    margin: 0 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--beige-dark);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--beige-dark);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
} */

.brochure-btn {
    background: linear-gradient(135deg, var(--beige-dark) 0%, var(--beige-light) 100%);
    color: var(--bg-dark);
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brochure-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    text-decoration: none;
    color: var(--bg-dark);
}

.hero-btn-theme {
    background: linear-gradient(135deg, var(--beige-dark) 0%, var(--beige-light) 100%);
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.hero-btn-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    text-decoration: none;
    color: var(--bg-dark);
}

@media(max-width:767px) {
    .topbar {
        display: none;
    }

    .custom-nav {
        top: 0px;
    }
}


/* navbar end */


/* hero section start */


/* Hero Section */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    color: #fff;
    overflow: hidden;
}


/* Slider wrapper */

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out, transform 6s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: scale(1.1);
    /* Ken Burns zoom */
}


/* Overlay for dark effect */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}


/* Hero Content */

.hero-content {
    position: relative;
    max-width: 650px;
    z-index: 1;
    color: #fff;
    padding-top: 80px;
}


/* Headline */

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}


/* Paragraph */

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 35px;
    color: #f1f1f1;
}


/* Button */

.btn-hero {
    display: inline-block;
    padding: 16px 35px;
    background: #316ba8d3;
    /* Royal Crown wala brown tone */
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #316ba89b;
    /* dark hover */
}


/* Responsive Styles */

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1.15rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn-hero {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}


/* megalam about us */

.about-megalam .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem;
    box-sizing: border-box;
}

.left-box,
.right-box {
    background-color: var(--beige-dark);
    color: var(--white-logo);
    padding: 2rem;
    border-radius: 12px;
    flex: 1 1 48%;
    min-width: 280px;
    line-height: 1.8;
}


/* Right box offset for staggered look */

.right-box {
    position: relative;
    top: 50px;
    background-color: var(--white-logo);
    /* adjust for more/less stagger */
    color: #121212 !important;
}

.left-box h2 {
    margin-bottom: 1rem;
    color: var(--white-logo);
}

.right-box h2 {
    color: var(--beige-dark);
}

.right-box ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    color: #121212 !important;
}

.right-box li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: #121212 !important;
}

.right-box li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #121212 !important;
}


/* Responsive */

@media (max-width: 767px) {
    .about-megalam .container {
        flex-direction: column;
        padding: 1.5rem;
    }

    .left-box,
    .right-box {
        flex: 1 1 100%;
        width: 100%;
        position: static;
        /* remove stagger on small screens */
        top: 0;
    }
}


/* megalam about us */


/* why choose */


/* Section styling */

.why-choose {
    padding: 100px 20px;
    /* background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%); */
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--beige-dark);
    margin-bottom: 60px;
}

.section-title span {
    color: var(--beige-light);
}


/* Cards container */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


/* Individual card */

.card {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(194, 168, 122, 0.5);
}


/* Icon styling */

.card .icon {
    font-size: 3rem;
    color: var(--beige-dark);
    margin-bottom: 20px;
}

.stylish-card {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(194, 168, 122, 0.5);
}


/* Card headings */

.card h3 {
    font-size: 1.5rem;
    color: var(--beige-dark);
    margin-bottom: 15px;
}


/* Card paragraph */

.card p {
    font-size: 1rem;
    color: var(--beige-light);
    line-height: 1.6;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .card {
        padding: 30px 15px;
    }
}


/* why choose */


/* laminates collections */

.megalam-laminates {
    padding: 50px 0;
    text-align: center;
    background-color: var(--bg-dark);
}

.ml-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ml-tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--beige-light);
    text-transform: uppercase;
}

.ml-slider-wrapper {
    position: relative;
    max-width: 1250px;
    margin: auto;
    overflow: hidden;
}

.ml-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.ml-slide {
    min-width: 33.333%;
    margin: 0 10px;
}


/* 3 slides on desktop */

.ml-slide img {
    width: 100%;
    /* border-radius: 10px; */
}

.ml-prev,
.ml-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(194, 168, 122, 0.8);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 2rem;
    /* border-radius: 50%; */
}

.ml-prev {
    left: -10px;
}

.ml-next {
    right: -10px;
}

.ml-prev:hover,
.ml-next:hover {
    background-color: rgba(194, 168, 122, 1);
}


/* Responsive */

@media(max-width: 1024px) {
    .ml-slide {
        min-width: 50%;
    }

    /* tablet 2 slides */
}

@media(max-width: 600px) {
    .ml-slide {
        min-width: 100%;
    }

    /* mobile 1 slide */
}


/* laminates collections */


/* product with tabs */

.new-trends {
    padding: 50px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.nt-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
}

.nt-tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--beige-light);
    margin-bottom: 30px;
}

.nt-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.nt-tab {
    background-color: var(--beige-dark);
    color: var(--bg-dark);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
}

.nt-tab.active {
    background-color: var(--beige-light);
    color: var(--bg-dark);
}

.nt-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nt-image-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    display: none;
}

.nt-image-group.active {
    display: flex;
}

.nt-image-card {
    position: relative;
    cursor: pointer;
    width: 400px;
}

.nt-image-card img {
    width: 100%;
    /* border-radius: 10px; */
    transition: 0.3s;
}

.nt-hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
}

.nt-image-card:hover .nt-hover-icon {
    opacity: 1;
}

.nt-img-name {
    margin-top: 8px;
    font-weight: 600;
    color: var(--beige-light);
    font-family: 'Poppins', sans-serif;
}


/* Modal */
.nt-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.nt-modal-content {
    background: #fff;
    width: 100%;
    max-width: 900px;
    border-radius: 14px;
    display: flex;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.nt-modal-left,
.nt-modal-right {
    padding: 20px;
}

.nt-modal-left {
    flex: 1;
    color: #333;
}

.nt-modal-right {
    flex: 1;
}

.nt-modal-right img {
    width: 100%;
    border-radius: 10px;
}

.nt-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

@media(max-width:1024px) {
    .nt-image-card {
        width: 45%;
    }
}

@media(max-width:600px) {
    .nt-image-card {
        width: 90%;
    }
}

.nt-product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.nt-product-table th,
.nt-product-table td {
    border: 1px solid #ccc;
    padding: 8px 10px;
    text-align: left;
    color: #333;
}

.nt-product-table th {
    background-color: #f2f2f2;
}

.nt-enquiry-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--beige-dark);
    color: var(--bg-dark);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.nt-enquiry-btn:hover {
    background-color: var(--beige-light);
}


.nt-modal-left {
    flex: 1;
    min-width: 280px;
}

.nt-modal-right {
    flex: 1;
    min-width: 280px;
}

.nt-modal-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Tablet + Mobile — Image Top + No Cropping */
@media(max-width:900px) {

    .nt-modal-content {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .nt-modal-right {
        order: -1;
        padding: 10px;
    }

    .nt-modal-left {
        padding: 12px;
    }

    .nt-modal-right img {
        width: 100%;
        max-height: 340px;
        object-fit: contain;
        /* 🔥 No crop */
        border-radius: 10px;
        background: #f3f3f3;
        /* clean padding look */
    }
}

@media(max-width:600px) {

    .nt-modal-right img {
        max-height: 240px;
        /* smaller but safe */
        object-fit: contain;
        /* 🔥 full image visible */
    }

    .nt-product-title {
        font-size: 18px;
    }

    .nt-enquiry-btn {
        width: 100%;
    }
}


/* product with tabs */


/* cta button */

.cta-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 120px 20px;
    color: #fff;
    text-align: center;
}

.cta-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    /* dark overlay for readability */
    padding: 60px 20px;
    border-radius: 10px;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.cta-btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.call-btn {
    background-color: var(--beige-dark);
    /* primary color */
    color: var(--bg-dark);
}

.call-btn:hover {
    /* background-color: var(--beige-light); */
    color: var(--beige-light);
}

.readmore-btn {
    background-color: #fff;
    color: var(--beige-dark);
    /* black text */
}

.readmore-btn:hover {
    background-color: var(--beige-dark);
    color: var(--bg-dark);
}


/* cta button */


/* blog section */

.blog-section {
    background: var(--bg-dark);
    padding: 100px 20px;
}

.blog-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--beige-dark);
}

.blog-title span {
    color: var(--beige-light);
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(194, 168, 122, 0.4);
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.1rem;
    color: var(--white-logo);
    margin-bottom: 12px;
}

.blog-content p {
    font-size: 1rem;
    color: var(--beige-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.read-more {
    text-decoration: none;
    color: var(--beige-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--beige-light);
}


/* Responsive tweak */

@media (max-width: 768px) {
    .blog-title {
        font-size: 2.2rem;
    }
}


/* blog section */


/* footer start */

.site-footer {
    /* background-color: #f4f5f7; */
    color: var(--beige-dark);
    font-family: 'Poppins', sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 20px;
    gap: 20px;
}

.footer-logo img {
    width: 170px;
}

.footer-column h4 {
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--beige-dark);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 300;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--beige-dark);
}

.newsletter input[type="email"] {
    width: 70%;
    padding: 8px 10px;
    border-radius: 50px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.subscribe-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 50px;
    background-color: var(--beige-dark);
    color: #fff;
    cursor: pointer;
    margin-left: 5px;
}

.ecatalogue-btn {
    display: block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--beige-dark);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-social a {
    margin-left: 10px;
    color: #555;
    font-size: 18px;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--beige-dark);
}

@media(max-width:1024px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
    }

    .newsletter input[type="email"] {
        width: 90%;
    }
}

.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.footer-contact-info i {
    font-size: 16px;
    color: var(--beige-dark);
    margin-top: 3px;
}


/* footer end */


/* click content  */

.surface-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.surface-section .section-heading {
    position: absolute;
    top: 15%;
    /* background ke upar thoda gap */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    /* sabse upar */
    text-align: center;
}

.surface-section .section-heading h2 {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--beige-dark);
    /* dark blue bg pe white text */
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Labels */

.label {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}

.label span {
    background: var(--beige-dark);
    padding: 4px 10px;
    border-radius: 0px;
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-dark);
    animation: blink 1.5s infinite;
    white-space: nowrap;
}


/* Blink animation */

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}


/* ===== DEFAULT POSITIONS (DESKTOP) ===== */

.hospitality {
    top: 65%;
    left: 18%;
}

.residential {
    top: 62%;
    left: 30%;
}

.commercial {
    top: 50%;
    left: 50%;
}

.hospitals {
    top: 60%;
    left: 68%;
}

.educational {
    top: 58%;
    left: 85%;
}


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

@media (max-width: 768px) {
    .hospitality {
        top: 72%;
        left: 15%;
    }

    .residential {
        top: 60%;
        left: 25%;
    }

    .commercial {
        top: 48%;
        left: 50%;
    }

    .hospitals {
        top: 66%;
        left: 65%;
    }

    .educational {
        top: 55%;
        left: 82%;
    }

    .label span {
        font-size: 12px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .hospitality {
        top: 75%;
        left: 12%;
    }

    .residential {
        top: 65%;
        left: 20%;
    }

    .commercial {
        top: 50%;
        left: 50%;
    }

    .hospitals {
        top: 70%;
        left: 62%;
    }

    .educational {
        top: 60%;
        left: 80%;
    }

    .label span {
        font-size: 11px;
        padding: 2px 6px;
    }
}


/* ===== MODAL POPUP ===== */

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

.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

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


/* click content  */


/* ===== Megalam ABOUT SECTION ===== */

.mgl-about-section {
    background: var(--bg-dark);
    color: var(--beige-light);
}

.mgl-about-heading {
    font-size: 1.8rem;
    color: var(--white-logo);
    border-left: 4px solid var(--beige-dark);
    padding-left: 12px;
    margin-bottom: 1rem;
}

.mgl-about-text {
    font-size: 1.05rem;
    color: var(--beige-light);
}

.mgl-about-subtext {
    color: var(--muted);
    line-height: 1.7;
}


/* ===== IMAGE SHAPES ===== */

.mgl-image-shape {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border: 3px solid var(--beige-dark);
    border-radius: 20px;
}

.mgl-shape-right {
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.mgl-shape-left {
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%);
}

.mgl-shaped-img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.mgl-image-shape:hover .mgl-shaped-img {
    transform: scale(1.05);
}


/* ===== SCROLLING CARDS ===== */

.mgl-scroll-wrapper {
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.mgl-scroll-cards {
    display: flex;
    gap: 20px;
    animation: mgl-scroll-left 18s linear infinite;
}

@keyframes mgl-scroll-left {
    0% {
        transform: translateX(0);
    }

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

.mgl-info-card {
    min-width: 260px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    transition: 0.4s ease;
}

.mgl-info-card i {
    font-size: 30px;
    color: var(--beige-dark);
    margin-bottom: 12px;
}

.mgl-info-card h4 {
    color: var(--white-logo);
    margin-bottom: 8px;
    font-weight: 500;
}

.mgl-info-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.mgl-info-card:hover {
    background: var(--beige-dark);
    color: var(--bg-dark);
    transform: translateY(-6px);
}

.mgl-info-card:hover i {
    color: var(--bg-dark);
}


/* ===== ABOUT TITLE SECTION ===== */

.mgl-about-title-section {
    background-color: #111;
    /* dark background */
}

.mgl-about-headingg {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #c9ab76;
    /* luxury beige-gold tone */
    letter-spacing: 2px;
    font-weight: 550;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-top: 50px;
}


/* optional subtle underline accent */

.mgl-about-headingg::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #c9ab76;
    margin: 15px auto 0;
    border-radius: 2px;
}


/* responsive size */

@media (max-width: 768px) {
    .mgl-about-headingg {
        font-size: 2.5rem;
    }
}


/* ===== Megalam ABOUT PARAGRAPH SECTION ===== */

.mgl-about-intro {
    background: var(--bg-dark);
    color: var(--beige-light);
}

.mgl-about-para {
    font-size: 1.05rem;
    line-height: 1.9;
    /* max-width: 850px; */
    margin: 0 auto;
    font-weight: 300;
    text-align: justify;
    color: var(--beige-light);
    position: relative;
}

.mgl-dropcap {
    float: left;
    font-size: 3.6rem;
    line-height: 1;
    color: var(--beige-dark);
    font-weight: 600;
    margin-right: 10px;
    margin-top: 6px;
    font-family: 'Playfair Display', serif;
}

.mgl-about-para strong {
    color: var(--beige-dark);
    font-weight: 500;
}


/* optional: subtle fade-in animation */

.mgl-about-para {
    animation: fadeInUp 1.2s ease both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- Background full image --- */

.expert-guidance-section {
    position: relative;
    background: url('../images/backgrounds/bg-form.jpeg') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}


/* --- Transparent form card --- */

.guidance-form-card {
    background: rgba(0, 0, 0, 0.45);
    /* light transparent bg for readability */
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    border: 1px solid #ffff;
}


/* --- Text highlight color --- */

.text-highlight {
    color: #ff5a5a;
}


/* --- Input fields --- */

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 10px 12px;
    border-radius: 6px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form-control:focus,
.form-select:focus {
    border-color: #ff5a5a;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}


/* --- Submit button --- */

.btn-submit {
    background-color: #ff5a5a;
    color: #fff;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #ff7777;
    color: #fff;
}


/* --- Responsive design --- */

@media (max-width: 767px) {
    .expert-guidance-section {
        background-position: center;
    }

    .guidance-form-card {
        background: rgba(0, 0, 0, 0.55);
        margin: 20px auto;
    }
}

.info-card {
    min-height: 235px;
}


.nt-modal {
    position: fixed;
    top: 90px;
    /* 👈 navbar height */
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    z-index: 9999;
    /* navbar se upar */
    display: none;
    overflow-y: auto;
}


.nt-product-description {
    color: #121212a7;
    font-weight: 600;
}

#popupText {
    color: #121212a7;
    font-weight: 600;
}