/* Root Variables */
:root {
    --text-color: #000000;
    --primary-color: #FF6600;
    --bg-color: #ffffff;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-nav {
    background-color: #ffffff !important;
}

.main {
    background-color: var(--bg-color);
    padding: 10px 30px;
    font-family: 'Poppins', sans-serif;
    /* margin: 0px 20px; */
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 10px 18px;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    text-decoration: 2px var(--primary-color) underline;
}

.nav-item.active .nav-link {
    color: var(--primary-color) !important;
    text-decoration: 2px var(--primary-color);

}


/* Base */
.mega-dropdown {
    position: relative;
}

/* Desktop default */
.mega-menu {
    width: 400px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mega-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mega-title a:hover {
    color: var(--primary-color);
}

.mega-title a {
    color: #000;
    text-decoration: none;
    position: relative;
}

/* Dropdown list alignment fix */
.mega-list {
    padding-left: 0;
}

.mega-list li {
    display: block;
    text-align: left;
    width: 100%;
}

.mega-list a {
    display: block;
    padding: 6px 0;
    white-space: normal;
}


.mega-title a::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    margin-top: 6px;
}

/* List */
.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 10px;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    width: 25px;
    height: 25px;
    background-size: contain;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    outline: none;
    box-shadow: none;
}

.navbar-toggler {
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 4px 6px;
}

.navbar-toggler:hover {
    border-color: var(--primary-color, #FF6600);
}

.mega-list a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.mega-list a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}



@media (min-width: 992px) {
    .mega-dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) and (min-width: 376px) {
    .products {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
    }

    .products>div {
        flex: 0 0 48%;
    }
}

@media (max-width: 375px) {
    .products {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .products>div {
        flex: 0 0 100%;
    }

    .mega-menu {
        width: 100%;
        padding: 10px 8px;
        max-height: 60vh;
    }

    .mega-list li {
        margin-bottom: 8px;
        align-items: center;
    }

    .mega-title {
        font-size: 13px;
        text-align: start !important;
    }

    .mega-list a {
        font-size: 13px;
        padding: 4px 0;
    }
}

@media (max-width: 768px) {

    /* Center Products link */
    .navbar-nav .dropdown {
        width: 100%;
        text-align: center;
    }

    .mega-menu {
        box-shadow: none !important;
        border-radius: 0;
    }

    .dropdown-menu {
        box-shadow: none !important;
    }

    /* Mega menu block */
    .mega-menu {
        position: relative;
        width: 92%;
        max-width: 420px;
        margin: 10px auto 0;
        left: auto;
        transform: none;
        max-height: 50vh;
        overflow-y: auto;
        padding: 1px 3px;
        background-color: white;
    }

    .products {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 5px !important;
    }

    .products>div {
        flex: 0 0 48%;
    }

    .mega-title {
        text-align: center;
        font-weight: 600;
        margin-bottom: 1px;
    }

    .mega-list {
        padding-left: 0;
        list-style: none;
        text-align: center;
    }

    .mega-list li {
        margin: 5px 0;
    }

    .mega-list a {
        display: inline-block;
        width: 100%;
        padding: 1px 0;
        text-decoration: none;
        color: #000;
        transition: color 0.3s;
    }

    .mega-list a:hover {
        color: var(--primary-color);
    }
}

/* Mobile */
@media (max-width: 576px) {

    .mega-menu {
        width: 100%;
        left: 0;
        transform: none;
        padding: 6px 10px;
        border-radius: 0;
        box-shadow: none;
        max-height: 40vh;
        overflow-y: auto;
    }

    .mega-menu .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 20px;
    }

    /* Section titles */
    .mega-title {
        font-size: 14px;
        margin-bottom: 6px;
        text-align: center;
    }

    .mega-list {
        margin: 0;
        padding: 0;
    }

    .mega-list li {
        margin-bottom: 6px;
        padding: 1px;
    }

    .dropdown-menu {
        margin-top: 4px !important;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        align-items: center;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
    }
}

/* index file */

/* 
   GLOBAL BODY
 */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
}

/* 
   BUTTONS
 */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background-color: #000;
}

/* 
   HERO SECTION
 */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/groove2_main.jpg");
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content p {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #f1f1f1;
}

.hero-actions {
    margin-top: 25px;
}

.hero-actions .btn {
    margin: 8px;
    padding: 12px 28px;
    border-radius: 30px;
}

/* 
   SECTION TITLES
 */
.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary-color);
}

/* 
   BRANDS SECTION
*/
.brands-section {
    padding: 100px 0;
}

.brand-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.brand-card {
    background: #fff;
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    transition: transform 0.4s ease;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.brand-card:hover {
    transform: translateY(-10px);
}

.brand-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.brand-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}


.brand-btn {
    margin-top: auto;
    align-self: center;
    display: inline-block;
    padding: 12px 35px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
}


.brand-btn:hover {
    background: #000;
    color: white;
}

/*
   WHY SECTION
 */
.why-section {
    background: #f9f9f9;
    padding: 100px 0;
}


.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 250px);
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}



.why-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    /* margin-left: 1px;
    margin-right: 1px; */
}

.why-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.why-card p {
    font-size: 0.95rem;
    color: #555;
}

/* 
   PROCESS SECTION
 */
.process-section {
    padding: 100px 0;
}

.process-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
}

.process-card .step {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

/* 
   CTA SECTION
 */
.home-cta {
    background: #111;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.home-cta h2 {
    font-size: 2.2rem;
}

.home-cta p {
    color: #ccc;
    margin-bottom: 25px;
}

/* 
   TABLET (≤ 992px)
 */
@media (max-width: 992px) {
    .hero-slider {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .brand-card {
        padding: 40px;
    }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 250px);
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

/* Tablet */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 250px);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/*
   MOBILE (≤ 768px)
*/
@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 200px;
    }

    .brand-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .brand-card {
        padding: 30px 25px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .home-cta h2 {
        font-size: 1.7rem;
    }
}

/* 
   SMALL MOBILE (≤ 480px)
*/
@media (max-width: 480px) {
    .hero-slider {
        height: 85vh;
    }

    .hero-content h1 {
        font-size: 2rem;
        padding-top: 15px;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 180px;
    }
}

@media (max-width: 373px) {
    .hero-slider {
        height: 87vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 180px;
    }
}

/* footer */

.site-footer {
    background: linear-gradient(180deg, #000 0%, #0d0d0d 100%);
    padding: 80px 0 30px;
    color: #ccc;
}

.footer-log {
    height: 60px;
    margin-bottom: 20px;
}

.footer-text {
    max-width: 300px;
    line-height: 1.7;
    color: #aaa;
}

.site-footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.site-footer h5::after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    display: block;
    margin-top: 8px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 12px;
}

.site-footer a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.site-footer li a:hover {
    color: white;
    border-bottom: 2px solid var(--primary-color);
}


/* CONTACT */
.contact p {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    color: #aaa;
}

.contact i {
    color: var(--primary-color);
}

.footer-about a:hover {
    border-bottom: none !important;
}

/* SOCIAL ICONS */
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}


.site-footer-message {
    text-align: center;
}

.site-footer-message p {
    margin-top: 50px;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid #222;
    padding-top: 18px;
}

@media (max-width:1024px) {
    .site-footer-message p {
        margin-top: 30px;
    }
}

@media (max-width:768px) {
    .site-footer-message p {
        margin-top: 5px;
    }
}

@media (max-width:768px) {
    .site-footer-message p {
        margin-top: 15px;
    }
}

@media (max-width:426px) {

    .contact p {
        margin-bottom: 1px;
    }

    .site-footer-message p {
        margin-top: 1px;
    }
}


/* about */

body {
    font-family: 'Poppins', sans-serif;
}

.about-hero {
    height: 85vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.3)), url("../images/groove_panel2.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.about-hero-content {
    color: #fff;
    max-width: 650px;
}

.about-hero-content span {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.9;
}

.about-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 15px 0;
}

.about-hero-content p {
    font-size: 1.1rem;
}

.about-story {
    padding: 60px 0;
}

.about-story h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-story span {
    color: var(--primary-color);
}

.about-values span {
    color: var(--primary-color);
}

.about-brands span {
    color: var(--primary-color);
}

.about-story p {
    color: #555;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-values {
    background: #f8f9fa;
    padding: 50px 0;
}

.subtitle {
    color: #666;
}

.value-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}


.about-why {
    padding: 50px 0;
    background: #f8f9fa;
}

/* Large tablets */
@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 38px;
    }

    .about-hero-content p {
        font-size: 16px;
    }
}

/* Tablets / small desktops */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 15px;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .about-hero-content p {
        font-size: 15px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .about-hero {
        padding: 40px 10px;
    }

    .about-hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .about-hero-content p {
        font-size: 14px;
    }
}

/* Smallest phones (320px) */
@media (max-width: 375px) {
    .about-hero {
        padding: 30px 8px;
    }

    .about-hero-content h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .about-hero-content p {
        font-size: 13px;
    }
}

/* gallery */

.text-orange {
    color: var(--primary-color);
}

.bg-orange {
    background: var(--primary-color);
}

.gallery-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    position: relative;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}

.gallery-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Filter Buttons */
.btn-filter {
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 10px;
    transition: all 0.3s ease;
    margin: 3px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}

.fliter {
    text-align: center;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: #fff;
    margin-bottom: 30px;
}

.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.11);
}

.gallery-item {
    transition: all 0.5s ease;
}

.gallery-item.hide {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2.5rem;
    }

    .featured-card {
        height: 350px;
    }

    .btn-filter {
        padding: 10px 20px;
        font-size: 14px;
    }

    .counter-item h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 320px) {
    .btn-filter {
        padding: 10px 12px;
        font-size: 12px;
        margin: 4px;
    }

    .fliter {
        text-align: center;
    }
}

@media (min-width:321px) and (max-width:426px) {
    .btn-filter {
        padding: 8px 8px;
        font-size: 11px;
        margin: 4px;
    }

    .fliter {
        text-align: center;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .btn-filter {
        padding: 10px 10px;
        font-size: 11px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .btn-filter {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (min-width: 1201px) {
    .btn-filter {
        padding: 12px 28px;
        font-size: 16px;
    }
}


/* cantact */
.contact-section input,
.contact-section textarea {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    transition: all 0.3s;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(255, 106, 0, 0.3);
    outline: none;
}

.contact-section button:hover {
    background-color: #FF6600;
    transition: all 0.3s;
}

.contact-section label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.message {
    color: red;
    font-size: 13px;
    margin-top: 5px;
}


.contact-header {
    position: relative;
    overflow: hidden;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.contact-title span {
    color: var(--primary-color);
}

.underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

.contact-map .map-wrapper {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-map h3 {
    font-size: 28px;
}

/* herosection */
.contact-main {
    height: 85vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../images/ethics_decor_3.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.contact-main h1 {
    font-size: clamp(40px, 6vw, 80px);
    letter-spacing: 4px;
    font-weight: 700;
}

.contact-title2 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.contact-title2 span {
    color: var(--primary-color);
}

.contact-subtitle2 {
    font-size: 16px;
    color: rgba(244, 239, 239, 0.83);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

@media (max-width: 991px) {
    .contact-map iframe {
        height: 300px;
    }
}

@media (max-width:768px) and (min-width:315px) {
    .contact-info {
        display: none;
    }

    /* body{
        background-color: #FF6600 !important;
    } */
}

@media (max-width:426px) {
    .contact-title2 {
        font-size: 30px;
        font-weight: 600;
        color: white;
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
    }
}

@media (max-width:321px) {
    .contact-title2 {
        font-size: 27px;
        font-weight: 600;
        color: white;
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
    }
}


@media(min-width:1024px) {
    .contact-main {
        display: none;
    }
}

@media (max-width: 991px) {
    .contact-section .row.g-4 {
        flex-direction: column;
    }

    .contact-section .contact-img img {
        margin-bottom: 20px;
    }
}



/* product pages */
body {
    font-family: 'Poppins', sans-serif;
}

:root {
    --text-color: #000000;
    --primary-color: #FF6600;
    --bg-color: #ffffff;
}

.brand-hero {
    height: 85vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../images/groove_main.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.brand-hero h1 {
    font-size: clamp(40px, 6vw, 80px);
    letter-spacing: 4px;
    font-weight: 700;
}

.brand-hero p {
    font-size: 50px;
    font-weight: 500;
}

.brand-hero span {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 500;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-title h2 {
    font-weight: 600;
    font-size: 36px;
}

.product-page {
    padding: 80px 0;
}

.product-image {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    width: auto;
    /* height: 400px; */
}

.product-info h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.product-info span {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    ;
}

.spec-list li {
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
}

.spec-list li strong {
    width: 140px;
    display: inline-block;
}

.catalogue-slider {
    background: #f8f8f8;
    padding: 80px 0;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    height: 260px;
    object-fit: cover;
}

.cta {
    background: #000;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.cta a {
    background: var(--primary-color);
    padding: 14px 35px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
}

#catalogueCarousel,
#catalogueCarousel .carousel-inner,
#catalogueCarousel .carousel-item {
    height: 100vh;
}

#catalogueCarousel .carousel-item img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 18px;
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 50%;
    padding: 22px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--primary-color);
    ;
}

.carousel-item img {
    height: 420px;
    /* increased */
    object-fit: cover;
    border-radius: 15px;
}

.feature-strip {
    background: #f8f8f8;
    padding: 60px 0;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: 0.3s;
}

.icon-circle i {
    font-size: 28px;
    color: #000;
}

.feature-item p {
    color: black;
    font-size: 14px;
    margin-top: 12px;
    font-weight: 500;
}

.feature-item:hover .icon-circle {
    background: var(--primary-color);
    ;
}

.feature-item:hover i {
    color: #fff;
}


.carousel-item img {
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.carousel-item img:hover {
    transform: scale(1.02);
}

.product-page .row {
    align-items: flex-start;
}

.product-image-wrap {
    height: auto;
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


@media (max-width:575px) {
    .spec-list li strong {
        width: 100px;
        display: inline-block;
    }

    .spec-list li {
        font-size: 13px;
    }
}

@media(max-width:426px) {
    .brand-hero p {
        font-size: 40px;
        font-weight: 500;
    }

    .brand-hero span {
        font-size: 40px;
        font-weight: 500;
    }
}

@media(max-width:321px) {
    .brand-hero p {
        font-size: 30px;
        font-weight: 400;
    }

    .brand-hero span {
        font-size: 30px;
        font-weight: 400;
    }
}

@media(max-width:575px) {
    .brand-hero h1 {
        font-size: clamp(30px, 5vw, 70px);
        letter-spacing: 4px;
        font-weight: 700;
    }
}

/* 2groove_panel */

.brand-hero-groove {
    height: 85vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../images/10groove_3.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.brand-hero-groove h1 {
    font-size: clamp(40px, 6vw, 80px);
    letter-spacing: 4px;
    font-weight: 700;
}

.brand-hero-groove p {
    font-size: 50px;
    font-weight: 500;
}

.brand-hero-groove span {
    color: #FF6600;
    font-size: 50px;
    font-weight: 500;
}

@media(max-width:426px) {
    .brand-hero-groove p {
        font-size: 40px;
        font-weight: 500;
    }

    .brand-hero-groove span {
        font-size: 40px;
        font-weight: 500;
    }
}

@media(max-width:321px) {
    .brand-hero-groove p {
        font-size: 30px;
        font-weight: 400;
    }

    .brand-hero-groove span {
        font-size: 30px;
        font-weight: 400;
    }
}

@media(max-width:575px) {
    .brand-hero-groove h1 {
        font-size: clamp(30px, 5vw, 70px);
        letter-spacing: 4px;
        font-weight: 700;
    }
}

/* hotstamping */

.hotstamping {
    height: 85vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../images/hot_stamping2.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hotstamping h1 {
    font-size: clamp(40px, 6vw, 80px);
    letter-spacing: 4px;
    font-weight: 700;
}

.hotstamping p {
    font-size: 50px;
    font-weight: 500;
}

.hotstamping span {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 500;
}

@media(max-width:426px) {
    .hotstamping p {
        font-size: 30px;
        font-weight: 500;
    }

    .hotstamping span {
        font-size: 40px;
        font-weight: 500;
    }
}

@media(max-width:321px) {
    .hotstamping p {
        font-size: 30px;
        font-weight: 400;
    }

    .hotstamping span {
        font-size: 30px;
        font-weight: 400;
    }
}

@media(max-width:575px) {
    .hotstamping h1 {
        font-size: clamp(30px, 5vw, 70px);
        letter-spacing: 4px;
        font-weight: 700;
    }
}


/* lovuvers */

.louveurs-hero {
    height: 85vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../images/louvers10.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.louveurs-hero h1 {
    font-size: clamp(40px, 6vw, 80px);
    letter-spacing: 4px;
    font-weight: 700;
}

.louveurs-hero p {
    font-size: 50px;
    font-weight: 500;
}

.louveurs-hero span {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 500;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Default: Desktop (3 items) */
.slider-img {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    padding: 10px;
}

.slider-img img,
.slider-img {
    width: 100%;
    border-radius: 12px;
}

/* Nav buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Tablet */
@media (max-width: 992px) {
    .slider-img {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .slider-img {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .nav-btn {
        width: 34px;
        height: 34px;
    }
}

.nav-btn:disabled {
    opacity: 0;
    pointer-events: none;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
}

.section-title p {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}

@media(max-width:426px) {
    .louveurs-hero p {
        font-size: 30px;
        font-weight: 500;
    }

}

@media(max-width:321px) {
    .louveurs-hero p {
        font-size: 30px;
        font-weight: 400;
    }

    .louveurs-hero span {
        font-size: 30px;
        font-weight: 400;
    }
}

@media(max-width:575px) {
    .louveurs-hero h1 {
        font-size: clamp(30px, 5vw, 70px);
        letter-spacing: 4px;
        font-weight: 700;
    }
}

/* flute service */

.flute-main {
    height: 85vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../images/fluted_main.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.flute-main h1 {
    font-size: clamp(40px, 6vw, 80px);
    letter-spacing: 4px;
    font-weight: 700;
}

.flute-main p {
    font-size: 50px;
    font-weight: 500;
}

.flute-main span {
    color: #FF6600;
    font-size: 50px;
    font-weight: 500;
}


.fluted-features {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.fluted-features li {
    padding-left: 26px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
}

.fluted-features li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #FF6600;
    font-size: 18px;
}

@media (max-width: 768px) {
    .product-image {
        height: 340px;
    }
}

@media (max-width:426px) {
    .flute-main p {
        font-size: 30px;
        font-weight: 300;
    }

}

@media (max-width:575px) {
    .spec-list li strong {
        width: 100px;
        display: inline-block;
    }

    .spec-list li {
        font-size: 13px;
    }
}

@media(max-width:575px) {
    .flute-main h1 {
        font-size: clamp(30px, 5vw, 70px);
        letter-spacing: 4px;
        font-weight: 700;
    }
}

/* brand everix decor*/
.brand-hero.luxury {
    height: 85vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../images/ethics_decor_3.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

/* BRAND IDENTITY */
.brand-identity {
    padding: 90px 0;
}

.brand-identity h2 {
    margin-bottom: 7px;
}

.brand-identity p {
    color: #555;
    line-height: 1.5;
}

.identity-tags {
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* PROJECT TYPES */
.brand-projects {
    padding: 80px 0;
    background: #f8f8f8;
}

.brand-projects i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.brand-identity img {
    border-radius: 20px;
}

.everix-series {
    padding: 90px 0;
    background: #fff;
}

.everix-series h2 {
    font-weight: 600;
    letter-spacing: 1px;
}

.series-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.series-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.series-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.series-content {
    padding: 20px;
}

.series-content h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.series-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}


.series-link {
    text-decoration: none;
    color: var(--primary-color);
}

.series-link {
    text-decoration: none;
    color: black;
}

.series {
    display: flex;
    justify-content: end;
}

.series a {
    font-weight: 700;
}

.series-link:hover {
    color: var(--primary-color);
    border: 2 px solid var(--primary-color);
}

@media (max-width: 991px) {
    .brand-image {
        display: flex;
        justify-content: center;
    }
}

@media (min-width:769px) and (max-width:1024px) {
    .brand-identity h2 {
        margin-bottom: 5px;
    }

    .brand-identity p {
        color: #555;
        line-height: 1.5;
    }
    .brand-identity img{
        height: 430px;
    }
}

@media(max-width:769px) {
    .brand-hero h1 {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .brand-hero p {
        margin-top: 10px;
        font-size: 2rem;

        letter-spacing: 2px;
    }
}

@media(max-width:426px) {
    .brand-hero h1 {
        font-size: 2.1rem;
        letter-spacing: 3px;
    }

    .brand-hero p {
        margin-top: 10px;
        font-size: 1.3rem;

        letter-spacing: 0.5px;
    }
}

/* soffique */
/* HERO */
.brand-hero.sofiique {
    height: 85vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../images/shoffitpane4.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}


.product-features {
    padding: 90px 20px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
}

.section-title span {
    color: #000;
}

.section-subtitle {
    max-width: 700px;
    margin: 20px auto 70px;
    text-align: center;
    font-size: 18px;
    color: #666;
}

/* GRID LAYOUT */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Feature Cards */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 10px;
    background: #fafafa;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-card img {
    width: 50px;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
}

/* Center Panels */
.product-showcase {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
}

.panel-img {
    width: 90px;
    object-fit: cover;
    transition: 0.3s;
}

.panel-img.left {
    height: 280px;
    transform: translateY(40px);
}

.panel-img.center {
    height: 100%;
}

.panel-img.right {
    height: 280px;
    transform: translateY(40px);
}

.panel-img:hover {
    transform: translateY(-10px) scale(1.05);
}

.feature-icon {
    font-size: 42px;
    color: var(--primary-color, #FF6A00);
    margin-top: 5px;
}

.feature-card small {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 6px;
    font-weight: 500;
}


.install-section {
    padding: 80px 0;
    background: #fafafa;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
}

/* .section-title span {
  color: var(--primary-color, #FF6A00);
} */

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Card */
.install-card {
    background: #fff;
    padding: 40px 25px 30px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.install-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Number Circle */
.step-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-color, #FF6A00);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
}

/* Icon */
.install-icon {
    font-size: 48px;
    color: var(--primary-color, #FF6A00);
    margin: 30px 0 15px;
}

.install-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.install-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.install-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #FF6A00;
    padding: 8px;
    background: #fff;
    margin-bottom: 15px;
}

.install-card {
    text-align: center;
}


.comparison-section {
    padding: 40px 0;
    background: #fff;
    font-family: Arial, sans-serif;
}

.comparison-title {
    font-size: 42px;
    font-weight: 700;
}

.comparison-subtitle {
    color: #666;
    font-size: 18px;
    margin-top: 10px;
}

.compare-card {
    background: #fafafa;
    border-radius: 18px;
    padding: 35px 30px;
    height: 100%;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.compare-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.compare-card.highlight {
    background: linear-gradient(135deg, #fff7f2, #fff);
    border: 2px solid var(--primary-color, #FF6A00);
}

.brand-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: #000;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 15px;
    color: #444;
}

.compare-list li:last-child {
    border-bottom: none;
}

.brand-title1 {
    color: var(--primary-color);
}

.key-features h2 {
    font-weight: 700;
}

.feature-items {
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-items:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-items .icon {
    font-size: 28px;
    margin-right: 16px;
    color: #8b5e3c;
}

.feature-items h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-items p {
    margin-bottom: 0;
    color: #555;
}

.brand-identity .btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
}

.brand-identity .btn:hover {
    background-color: black;
    color: white;
}

.panel-name {
    color: var(--primary-color);
}

.section-titles {
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.section-titles span {
    color: var(--primary-color);
}



/* Responsive */

@media (min-width: 319px) and (max-width: 768px) {

    .solit {
        display: none;
    }

    .soffit-card {
        background: #ffffff;
        padding: 25px 20px;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .soffit-card h2 {
        font-size: 24px;
    }

    .soffit-card .btn {
        margin-top: 15px;
    }

    .product-showcase {
        display: none;
    }

    .install-section {
        padding: 20px 0;
        background: #fafafa;
    }


}

@media (min-width:769px) and (max-width:1024px) {
    .feature-items {
        padding: 6px;
        border-radius: 8px;
    }

    .feature-items .icon {
        font-size: 20px;
        margin-right: 16px;
    }

    .feature-items h5 {
        margin-bottom: 2px;
        font-weight: 500;
    }

    .feature-box {
        padding: 2px !important;
    }
}


@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-card {
        justify-content: center;
    }

    .product-showcase {
        margin: 60px 0;
    }
}






/* soffit pannel */

.sofit-panel {
    color: var(--primary-color);
}

.soffit-shades {
    background-color: #f8f9fa;
}

.section-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.shade-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

/* .shade-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
} */


/* custome size */
.shade-card img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    background-color: #f5f5f5;
    /* optional */
}


.shade-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.shade-info {
    padding: 15px;
    text-align: center;
}

.shade-info h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.shade-info span {
    font-size: 14px;
    color: #777;
    letter-spacing: 1px;
}

.custom-sizing-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.title {
    font-size: 36px;
    font-weight: 700;
}

.title span {
    color: #FF6A00;
}

.size-images {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.size-item {
    text-align: center;
}

.size-item img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.desc {
    line-height: 1.7;
    color: #444;
}

.image-area {
    position: relative;
    padding: 0;
}

.right-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 300px;
    /* border-bottom-left-radius: 300px; */
}


.filter-content {
    display: none;
    padding-top: 30px;
}

.filter-content.active {
    display: block;
}


.feature-heading {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
}

.feature-box {
    padding: 1px;
}

.product-featuress {
    padding: 10px 10px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.features {
    color: var(--primary-color);
}


.feature-icon {
    width: 80px;
    height: 80%;
    object-fit: contain;
    /* border: 1px solid #333; */
    padding: 3px;
    margin-bottom: 3px;
    filter: brightness(0) saturate(100%) invert(52%) sepia(89%) saturate(2200%) hue-rotate(360deg) brightness(100%) contrast(105%);
}

.feature-icon1 {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: #FF6A00;
    padding: 10px;
    border-radius: 50%;
}



.feature-box p {
    font-size: 16px;
    font-weight: 500;
}