* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E53237;
    --secondary: #373435;
    --yellow: #FAC63B;
    --black: #0000;
    --white: #fff;
}



/* Global Font */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.fixed-sticker {
    position: fixed;
    bottom: -55px;
    /* bottom se thoda upar */
    left: -30px;
    /* right side */
    width: 180px;
    /* size tu apne hisaab se adjust kar sakta hai */
    z-index: 9999;
    /* taaki sabke upar dikhe */
    cursor: pointer;
}


/* fixed icons */


.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);
}

/* fixed icons */



/* icons */
/* whtsapp icon */
/* ✅ 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);
    }
}

/* icons */


.heading-main {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    padding-bottom: 12px;
    color: var(--primary);
}

.heading-main::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary);
}

.heading-main::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    background: var(--primary);
}







/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--primary);

}

.topbar a {
    color: #fff !important;
    text-decoration: none;
}

.topbar a i {
    color: #fff;
}


/*** Topbar End ***/

/*** Navbar ***/
.navvv {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.sticky-top {
    transition: 1s;

}

.logo {
    width: 110px !important;
}

.navbar .nav-item.nav-link,
.navbar .nav-link {
    color: var(--bs-dark);
}


.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    transition: .5s;
    z-index: 99;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar .nav-item::before,
.navbar .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid var(--primary);
    opacity: 0;
    transition: 0.5s;
    z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}

.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .nav-item:hover::after,
.navbar .nav-item:hover::before,
.navbar .nav-item.active::after,
.navbar .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.navbar .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;

}

.btn-theme {
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 8px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--primary);
}

.nav-bar .navbar-toggler {
    color: var(--bs-dark);
    box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--white);
    transition: .5s;
    opacity: 1;
}

.navbar .nav-item .dropdown-menu {
    background: var(--bs-light);
    transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    transition: 0.5s;
}

.dropdown .dropdown-item:hover,
.dropdown .dropdown-item.active {
    background: var(--primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        margin-top: 15% !important;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
        border: 0;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 991px) {
    .navbar .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before {
        display: none;
    }

    .navbar .nav-item:hover::after,
    .navbar .nav-item:hover::before,
    .navbar .nav-item.active::after,
    .navbar .nav-item.active::before {
        display: none;

    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item.nav-link {
        padding: 12px 0;
    }
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}







/* hero banner for all pages */
/* Hero Banner */
.er-hero-banner {
    position: relative;
    width: 100%;
    min-height: 65vh;
    /* taller for impact */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.er-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.699),
            rgba(0, 0, 0, 0.705));
}

.er-hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Headline with elegant tracking & shadow */
.er-hero-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

/* Subtitle slightly lighter */
.er-hero-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Call-to-action button */
.er-hero-btn {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.er-hero-btn:hover {
    background-color: var(--yellow);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* hero banner for all pages */








/*** Navbar End ***/

/* 
.carousel-item {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 77vh !important;
}


.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.carousel-caption {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
}

.carousel-caption p {
    font-size: 1.2rem;
    color: #eee;
    margin: 10px 0 20px;
}

.carousel-caption .btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0px;
    background: var(--primary);
    border: none;
    color: #fff;
} */

/* Animations */
/* @keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-right {
    animation: slideInRight 1s ease forwards;
}

.animate-up {
    animation: fadeInUp 1s ease forwards;
} */

/* Responsive Fix */
/* @media (max-width: 768px) {
    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
} */


/* Card design */
.product-cardss {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    color: black;
}

.product-cardss .number {
    font-size: 20px;
    font-weight: bold;
    color: #aaa;
}

.product-cardss .title {
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
}

.product-cardss .icon {
    font-size: 30px;
    margin-top: 15px;
}

/* Hover effect – splash animation */
.product-cardss::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 8, 36, 0.27) 10%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    border-radius: 50%;
}

.product-cardss:hover::before {
    transform: scale(1);
    opacity: 1;
}

.product-cardss:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}



/* about us start */
/* Background Section */
.about-section {
    background: url('../images/background/factory-image.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    padding: 100px 0;
}

/* Dark Overlay */
.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Content */
.about-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

.about-content h1 {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: #fff;
}

/* Heading underline stylish */
.about-content h1::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 4px;
    background: #ff8500;
    bottom: -10px;
    left: 15%;
    border-radius: 2px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #eee;
    text-align: justify;
}

/* Responsive */
@media(max-width:768px) {
    .about-content h1 {
        font-size: 2rem;
    }
}

/* about us end */










.plywood-section {
    /* padding: 50px 20px; */
    padding-top: 60px;
    padding-bottom: 20px;
    background: #f9f9f9;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
    color: #000;
}

.section-heading::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #ff8500;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.plywood-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.plywood-card.reverse {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    /* border-radius: 10px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
    transition: transform 0.4s ease;
}



.product-image img:hover {
    transform: scale(1.05);
}

.product-info {
    border: 2px double black;
    padding: 15px;
    flex: 1;
}

.product-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.info-box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.info-column {
    flex: 1;
    min-width: 200px;
}

.info-column h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.info-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-column ul li {
    margin-bottom: 6px;
    color: #555;
}

.info-column p {
    color: #555;
}



/* Responsive */
@media(max-width: 992px) {
    .plywood-card {
        flex-direction: column;
        text-align: center;
    }

    .plywood-card.reverse {
        flex-direction: column;
    }

    .info-box {
        flex-direction: column;
    }
}



.divider {
    width: 80px;
    height: 3px;
    background: #28a745;
    /* green line under heading */
    margin-top: 10px;
}


/* products slider */
.product-slider {
    padding: 30px 0;
    background: #f9f9f9;
    overflow: hidden;
}



.slider-heading {
    font-size: 2.5rem;
}

@media(max-width:767px) {
    .slider-heading {
        font-size: 2rem;
    }
}


.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.product-slider-track {
    display: flex;
    width: calc(300px * 10);
    animation: scroll 25s linear infinite;
}

.product-card {
    flex: 0 0 300px;
    background: #fff;
    border: 1px solid #ddd;
    margin: 0 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.3rem;
    margin: 15px 0 10px;
    color: #111;
}

.product-card p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-btn {
    background: #c5201e;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.product-btn:hover {
    background: #a01815;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* products slider */





/* Unique namespace: paras-multi- */
.paras-multi-section {
    padding: 3rem 1rem;
    background: url("../images/background/");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.paras-multi-container {
    max-width: 1300px;
    margin: 0 auto
}


.paras-multi-slider {
    position: relative;
    overflow: hidden
}

.paras-multi-track {
    display: flex;
    transition: transform .5s ease
}

.paras-multi-slide {
    flex: 0 0 100%;
    display: flex;
    gap: 1.5rem;
    justify-content: center
}


.paras-multi-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
    overflow: hidden;
    max-width: 370px;
    text-align: center;
    padding: 1rem
}

.paras-multi-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px
}

.paras-multi-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: .75rem;
    color: #333
}


.paras-multi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 6px 18px rgba(34, 34, 34, .15)
}

.paras-multi-arrow-left {
    left: 12px
}

.paras-multi-arrow-right {
    right: 12px
}


.paras-multi-dotwrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    z-index: 6;
    display: flex;
    gap: .4rem
}

.paras-multi-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #bbb;
    opacity: .6;
    cursor: pointer
}

.paras-multi-dot.active {
    background: #333;
    opacity: 1
}


@media(max-width:768px) {
    .paras-multi-slide {
        flex-direction: column;
        align-items: center
    }

    .paras-multi-card {
        max-width: 90%
    }
}


.products-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
    position: relative;
    text-transform: uppercase;

}

.products-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    /* plywood accent */
    margin: 12px auto 0;
    border-radius: 2px;

}

@media (max-width: 768px) {
    .products-heading {
        font-size: 24px;
    }
}


.paras-multi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    margin-top: 2rem;
}

.paras-multi-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.paras-multi-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.paras-multi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.paras-multi-title {
    background: var(--primary);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    margin-top: 12px;
    transition: 0.3s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.paras-multi-title:hover {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}





/* .paras-multi-title {
	background: var(--primary);
	
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	padding: 10px;
	margin-top: 12px;

	transition: 0.3s;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.paras-multi-title:hover {
	background: #fff;
	border: 2px solid var(--primary);
	color: var(--primary);
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.paras-multi-arrow {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--primary);
	
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	border: none;
	z-index: 10;
}

.paras-multi-arrow-left {
	left: 15px;

}

.paras-multi-arrow-right {
	right: 15px;

}

.paras-multi-arrow svg path {
	stroke: #fff;
}

.paras-multi-arrow:hover {
	background: black;
}

.paras-multi-dotwrap {
	text-align: center;
	margin-top: 20px;
}

.paras-multi-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 5px;
	background: #ccc;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.paras-multi-dot:hover {
	background: var(--primary);
}

.paras-multi-dot.active {
	background: var(--primary);
	width: 14px;
	height: 14px;
} */



.pwp-raw-section {
    background: #f8f9fa;
}

.pwp-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4b4b4b;
}

.pwp-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.pwp-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.pwp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.pwp-img-wrap {
    overflow: hidden;
}

.pwp-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s ease;
}

.pwp-card:hover .pwp-img-wrap img {
    transform: scale(1.05);
}

.pwp-content {
    padding: 20px;
}

.pwp-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.pwp-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}














/* 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: 2rem;
    font-weight: 500;
    color: #fff;
    /* dark blue bg pe white text */
    text-transform: uppercase;
    /* letter-spacing: 1px; */
}

.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(--primary);
    padding: 4px 10px;
    border-radius: 0px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    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  */







.our-projects {
    padding: 30px 30px !important;
    background-color: #F8F9FA;
}


.project-card img {
    transition: transform 0.4s ease;
    cursor: pointer;
    height: 400px;
    width: 400px;
}

.project-card img:hover {
    transform: scale(1.05);
}


/* blog */
.blog-section {
    background: #fff;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.blog-subtitle {
    color: #555;
    font-size: 1rem;
}

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content h5 {
    color: #000;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.blog-content p {
    color: #444;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.read-more {
    text-decoration: none;
    color: #000;
    border-bottom: 2px solid #f5c400;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #f5c400;
}

.btn-warning {
    background: #f5c400;
    border: none;
    color: #000;
    border-radius: 5px;
}

/* blog */














/* testimonials */
/* Section Styling */
.testimonial-section {
    position: relative;
    background: url("../images/background/testi-bg.png") center/cover no-repeat;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.testimonial-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.testimonial-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

.title {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: bold;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    color: #ddd;
}

/* Grid Layout */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card */
.testimonial-card {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card .quote {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: #444;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ff6600;
}

.client-info .name {
    font-size: 18px;
    font-weight: bold;
    color: #ff6600;
    margin: 0;
}

.client-info .role {
    display: block;
    font-size: 14px;
    color: #777;
}

.stars {
    color: #f7b500;
    font-size: 16px;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .testimonial-card {
        padding: 20px;
    }
}

/* testimonials */









/* footer start */

.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 50px 20px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-col ul li a i {
    margin-right: 8px;
    color: var(--primary);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    outline: none;
}

.newsletter-form button {
    background: var(--secondary);
    border: none;
    padding: 10px 20px;
    color: var(--white);
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary);
    color: var(--white);
}

.social-icons {
    margin: 15px 0;
}

.social-icons a {
    color: var(--white);
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
}

.contact-info,
.footer-col p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-col p i {
    margin-right: 6px;
    color: var(--primary);
}

.footer-bottom {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-bottom .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-bottom img {
    width: 130px;
    background-color: #ffff;
    padding: 5px;
    /* border-radius: 5px; */
}

hr {
    border: none;
    border-top: 1px solid rgb(255, 255, 255);
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* footer end */



.btn-themes {
    background-color: var(--primary) !important;
    color: #fff;
}

.btn-themes:hover {
    background-color: #fff !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}




/* gallery page  */
/* Overall */
.er-gallery-body {
    background: var(--white);
    color: var(--secondary);
    font-family: "Segoe UI", sans-serif;
}

/* Heading */
.er-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.er-subtext {
    max-width: 700px;
    margin: 0 auto;
    color: var(--secondary);
}

/* Gallery Grid */
.er-img-wrap {
    position: relative;
    overflow: hidden;
    /* border-radius: 0.75rem; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.er-img-wrap img {
    width: 100%;
    transition: transform .4s ease;
}

.er-img-wrap:hover img {
    transform: scale(1.08);
}

/* Top-right overlay icon */
.er-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(229, 50, 55, 0.0) 70%, rgba(229, 50, 55, 0.7) 100%);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 10px;
    opacity: 0;
    transition: opacity .3s ease;
}

.er-img-wrap:hover .er-overlay {
    opacity: 1;
}

.er-view-icon {
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    background: var(--primary);
    padding: 8px 10px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
    transition: background .3s;
}

.er-view-icon:hover {
    background: var(--yellow);
    color: var(--secondary);
}

/* Lightbox */
.er-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.er-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.er-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    transition: color .3s;
}

.er-close:hover {
    color: var(--yellow);
}

/* gallery page  */



/* contact us */
.contact-section {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(90deg, #FFF9F0, #FFFFFF, #FFF9F0);
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.contact-section p {
    font-size: 1.2rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-section .highlight {
    color: #FBBF24;
    /* yellow-ish for ERIKA Plywood */
    font-weight: 600;
}

/* Decorative shapes */
.contact-section .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}

.contact-section .shape-top {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    background-color: #FEEBC3;
}

.contact-section .shape-bottom {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    background-color: #FCD34D;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 2.5rem;
    }

    .contact-section p {
        font-size: 1rem;
    }
}

/* Contact Section Background */
.er-contact-section {
    background: #f8f9fa;
}

/* Section Title */
.er-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

/* Form Card */
.er-form-card {
    background: #fff;
    /* border-radius: 1rem; */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: transform 0.3s;
    border: 1px solid var(--primary) !important;
}

.er-form-card:hover {
    transform: translateY(-5px);
}

/* Floating Labels */
.er-contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(229, 50, 55, 0.2);
}

/* Submit Button */
.er-btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--yellow));
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: transform 0.3s, opacity 0.3s;
}

.er-btn-primary:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Contact Info Cards */
.er-info-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem 1rem;

    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 1px solid var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.856);
}

.er-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.er-info-card h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.er-info-card p {
    margin: 0;
    color: var(--secondary);
}

/* Icons in Cards */
.er-info-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Map Section */
.er-map-section iframe {
    border: none;
    width: 100%;
    height: 450px;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* contact us */

/* about us page */
.second-head-about {
    font-size: 3rem;
    font-weight: 700;

}

.icons-color {
    color: var(--primary);
}

.bg-about {
    background-color: var(--primary);
}

/* Section Styling */
.process-section {
    padding: 50px 0;
    background-color: #f9fafb;
    text-align: center;
}

.process-section .section-subtitle {
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-section .section-title {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #111827;
    font-weight: 800;
}

/* Scroll Wrapper */
.scroll-wrapper {
    overflow: hidden;
    position: relative;
}

/* Scroll Cards Flexbox */
.scroll-cards {
    display: flex;
    gap: 2rem;
    min-width: max-content;
    animation: scroll-left 25s linear infinite;
}

/* Card Styling */
.scroll-card {
    flex-shrink: 0;
    max-width: 300px;
    padding: 20px;
    /* border-radius: 2rem; */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    background-color: white;
    border: 3px solid transparent;
}

.scroll-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #FBBF24;
}

/* Card Colors */
.card-yellow {
    border-color: #FBBF24;
}

.card-green {
    border-color: #10B981;
}

.card-blue {
    border-color: #3B82F6;
}

.card-pink {
    border-color: #EC4899;
}

.card-purple {
    border-color: #8B5CF6;
}

/* Card Headings */
.scroll-card h5 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

/* Card Paragraphs */
.scroll-card p {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
}

/* Scroll Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-cards {
        gap: 1rem;
        animation: scroll-left 30s linear infinite;
    }

    .scroll-card {
        min-width: 300px;
        padding: 2rem 1.5rem;
    }

    .process-section .section-title {
        font-size: 2rem;
    }
}


.contact-hero {
    position: relative;
    height: 80vh;
    background-image: url('../images/background/about-contact-bg.webp');
    /* Replace with your ERIKA Plywood image */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.contact-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent overlay */
    z-index: 1;
}

.contact-hero .content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 1rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    background-color: #FBBF24;
    /* ERIKA Plywood Yellow */
    color: #fff;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.hero-btn:hover {
    background-color: #e6ac1c;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }
}


/* about us page */



/* product pages */
.product-section .product-title {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-section .product-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.product-section .product-features li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.product-section .product-table th {
    background-color: var(--primary);
    color: var(--white);
    width: 40%;
}

.product-section .product-table td {
    background-color: #f9f9f9;
}

.product-section .btn-primary {
    background-color: var(--primary);
    border: none;
}

.product-section .btn-primary:hover {
    background-color: var(--yellow);
    color: var(--black);
}

.image-thumbnails img {
    width: 80px;
    cursor: pointer;
    transition: transform 0.3s, border 0.3s;
    border: 2px solid transparent;
    border-radius: 8px;
}

.image-thumbnails img:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

#main-product-img {
    width: 100%;
    border-radius: 15px;
}





/* Features Section */
.container-prod {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.features-section {
    padding: var(--section-padding);
    background-color: #fff;
    border-radius: 15px;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    margin: 50px 0;
}

.section-title {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--yellow));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-item {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: rgba(243, 156, 18, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition);
}

.feature-item:hover .feature-icon::after {
    transform: scale(1.2);
    background-color: rgba(243, 156, 18, 0.2);
}

.feature-icon i {
    font-size: 40px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon i {
    transform: scale(1.2);
}

.feature-text {
    color: var(--secondary);
    transition: var(--transition);
}

.feature-item:hover .feature-text {
    color: var(--dark-orange);
    
}

.feature-text strong {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}





/* Other Products */
.other-products {
    padding: var(--section-padding);
    background-color: #fff;
    border-radius: 15px;
    /* box-shadow: var(--card-shadow); */
    margin: 50px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: var(--card-shadow); */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 25px;
    position: relative;
}

.product-card-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.product-card:hover .product-card-title {
    color: var(--primary);
}

.product-card-description {
    font-size: 15px;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-card-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary), var(--yellow));
    color: var(--white);
    border: none;
    /* border-radius: 50px; */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.2);
}

.product-card-btn i {
    margin-left: 8px;
    transition: var(--transition);
}

.product-card-btn:hover {
    background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
    box-shadow: 0 8px 20px rgba(211, 84, 0, 0.3);
    color: var(--secondary);
    border: 1px solid var(--primary);
}

.product-card-btn:hover i {
    transform: translateX(5px);
}










/* Media Queries */
@media (max-width: 1068px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-section {
        padding: 20px;
    }

    .product-title {
        font-size: 32px;
    }

    .product-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .product-section {
        flex-direction: column;
        gap: 30px;
    }

    .product-images {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .product-title {
        font-size: 28px;
    }

    .product-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .spec-title,
    .thickness-title {
        font-size: 18px;
    }

    .thickness-options {
        justify-content: center;
    }

    .thickness-option {
        min-width: 60px;
        padding: 8px 16px;
    }

    .request-quote {
        padding: 12px 25px;
        font-size: 14px;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-text strong {
        font-size: 18px;
    }

    .feature-icon {
        height: 60px;
    }

    .feature-icon i {
        font-size: 32px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 24px;
    }

    .product-subtitle {
        font-size: 15px;
    }

    .thickness-option {
        padding: 6px 12px;
        font-size: 14px;
    }

    .quality-badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    .actions {
        flex-direction: column;
        align-items: stretch;
    }

    .request-quote {
        width: 100%;
    }

    .tech-specs-table {
        font-size: 14px;
    }

    .tech-specs-table th,
    .tech-specs-table td {
        padding: 10px;
    }

    .product-card-content {
        padding: 15px;
    }

    .product-card-title {
        font-size: 18px;
    }

    .product-card-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-title::after {
        width: 80px;
    }
}

/* product pages */