/* ===================================
   CSS VARIABLES & ROOT SETTINGS
   =================================== */
:root {
    --max-width: 1200px;
    --mobile-padding: 15px;
    --desktop-padding: 30px;
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-family: "Italiana", sans-serif;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overscroll-behavior: contain;
    overflow-x: hidden;
    min-height: 100vh;
}


h1, h2, h3, h4, h5, h6 { 
    font-family: inherit; 
}
a{
    text-decoration: none;
}
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--mobile-padding);
}
.reveal {
  opacity: 0;
  transform: translateY(70px);
  transition: all 0.6s ease-out;
  
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: top 0.3s ease-in-out;
}

nav {
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
    color: #fff;
    position: relative;
    width: 90vw;
    height: 100px;
}

.logo {
    display: flex;
    cursor: pointer;
}

.logo img {
    height: 150px;
    width: auto;
}

.hamburger {
    font-size: 1.5em;
    cursor: pointer;
    display: block;
    background: none;
    border: none;
    color: #fff;
    margin-left: auto;
    position: relative;
    z-index: 998;
    transition: transform 0.2s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

/* Backdrop for overlay */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.backdrop.active {
    opacity: 1;
    visibility: visible;
}

.menu-box {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease-in-out;
    border-radius: 20px 0 0 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.menu-box.open {
    right: 0;
}

.menu-panels {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.menu-panel.active {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    gap: 15px;
}

.menu-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    flex: 1;
    text-align: left;
    color: #000000;
}

.menu-close,
.menu-back {
    background: #f29446;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.menu-close:hover,
.menu-back:hover {
    background: #e8834a;
    transform: scale(1.05);
}

.menu-close {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 10;
}



.menu-items {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    flex: 1; 
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Hide default WordPress submenus */
.menu-items .sub-menu {
    display: none !important;
}

.menu-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border-bottom: 1px solid #eee; */
    padding: 0 8px;
    transition: background-color 0.2s ease;
    transition: transform 0.2s ease;
    
}

.menu-items li:hover {
    background-color: rgba(242, 148, 70, 0.05);
    border-radius: 15px;
    transform: translateX(3px);

}
.menu-items li:last-child{
    display: none;
}

.menu-items a {
    padding: 15px 0;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #333;
    text-decoration: none;
    flex: 1;
    font-weight: 400;
    transition: color 0.2s ease;
}

.menu-items a:hover {
    color: #f29446;
}

/* Style for menu items with submenus */
.menu-item-has-children {
    cursor: pointer;
}

.menu-item-has-children > a {
    font-weight: 500;
}

.submenu-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #f29446;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.submenu-toggle:hover {
    background: rgba(242, 148, 70, 0.1);
    transform: translateX(3px);
}

/* Submenu panel specific styles */
.submenu-panel {
    background: #f8f9fa;
}

.submenu-items {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
}

.submenu-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.submenu-items li {
    border-bottom: 1px solid #e0e0e0;
    padding: 0 !important;
    background: none !important;
}

.submenu-items a {
    display: block;
    padding: 15px 0;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.submenu-items a:hover {
    color: #f29446;
    background: rgba(242, 148, 70, 0.05);
    padding-left: 5px;
    border-radius: 10px;
}

.contact-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    padding: 1.5rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 1.4rem;
    margin-top: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Menu-toggle-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    filter: brightness(0.8);
    transition: filter 0.2s ease;
}

.contact-card:hover .contact-bg {
    filter: brightness(0.9);
}

.contact-card h3 {
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
    
}

.arrow-btn {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: #f29446;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.arrow-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Hide submenu panels initially */
.submenu-panel.hidden {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    
    .menu-box {
        width: 80%;
    }
    
    .menu-panel {
        padding: 1.5rem 1rem;
    }
    
    nav {
        padding: 0 15px;
    }
}





/* ===================================
   HERO CAROUSEL
   =================================== */
/* General Styling */
.carousel-slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.carousel-slide-link .carousel-slide {
    pointer-events: none;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.carousel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: auto;
}
/* Slide 1 */

.slide-1 .carousel-text {
    flex: 1;
    color: #fff;
}

.slide-1 .carousel-text h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.2;
}

.slide-1 .carousel-text h2 span {
    font-size: clamp(4rem, 9vw, 7rem);
    font-family: 'Italiana', sans-serif;
    font-weight: 400;
    background: linear-gradient(90deg, #f6d37e, #dba643);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-1 .carousel-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 80%;
    margin: auto;
    height: 100vh;
    padding: 0 2rem;
}

.slide-1 .carousel-text {
    width: 100%;
    max-width: 800px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-1 .carousel-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
@media (min-width: 769px) {
    .slide-1 .carousel-image img {
        max-width: 70%;
        height: auto;
    }
}
/* Slide 2 */
.slide-2 .carousel-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    width: 100%;
    padding: 0 5%;
}

/* Text vertically centered */
.slide-2 .carousel-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    text-align: left;
    color: #ffe08a;
    padding: 2rem 1rem;
}
.slide-2 .carousel-text h2{
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.2;
}

/* Image bottom aligned */
.slide-2 .carousel-right-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
}

.slide-2 .carousel-right-image img {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .slide-2 .carousel-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    
    }
    .slide-2 .carousel-text{
        text-align:center;
    }
    .slide-2 .carousel-right-image {
        flex: none;
        width: 100%;
        
    }

    .slide-2 .carousel-right-image {
        align-items: flex-end;
    }
}


/* Slide 3 */
.carousel-slide.slide-3 {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    flex-wrap: wrap;
}
.slide-3 .carousel-content {
    gap: 4rem;
}

.slide-3 .carousel-text, .slide-2 .carousel-text {
    /* flex: 1; */
    color: #ffe08a;
}


.slide-3 .carousel-text h2 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.2;
}

.slide-3 .carousel-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.slide-3 .carousel-image img {
    width: 120%;
    max-width: 600px;
    object-fit: contain;
    height: auto;
}

/* Slide 4 */

.slide-4 .carousel-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    color: #fff;
}

.slide-4 .carousel-text h2 {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: 7px;
}

.slide-4 .carousel-text p {
    font-size: clamp(1.5rem, 4.5vw, 3rem);
    font-weight: 400;
    letter-spacing: 5px;
}

.slide-4 .dot-container {
    margin-top: 15px;
    display: flex;
    gap: 1rem;
}

.slide-4 .carousel-image img {
    max-width: 380px;
    object-fit: contain;
}

.dot-container .dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.dot.dot-1 { background-color: #63e283; }
.dot.dot-2 { background-color: #f53e93; }
.dot.dot-3 { background-color: #91e5c2; }

/* Navigation Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* Dots for navigation */
.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.carousel-dots span {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: rgba(218, 215, 215, 0.7);
    margin: 0 5px;
    cursor: pointer;
}

.carousel-dots .active {
    background-color: #ffffff;
    transform: scale(1.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .carousel-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .carousel-button {
        font-size: 1.5rem;
        padding: 6px;
    }
   .carousel-slide.slide-1 {
        flex-direction: column;
        text-align: center;
    }

    .slide-1 .carousel-text h2,
    .slide-1 .carousel-text h2 span {
        line-height: 1.1;
    }

    .slide-1 .carousel-image img {
        width: 80%;
    }
    
    .carousel-slide.slide-3 {
        flex-direction: column;
        text-align: center;
    }

    .slide-3 .carousel-image {
        margin-top: 2rem;
        align-items: center;
    }

    .dot-container .dot {
    width: 20px;
    height: 20px;
    }
    .slide-4 .carousel-content{
        gap: 3rem;
    }
    .slide-4 .carousel-image img{
        max-width: 300px;
    }
    .carousel-slide {
    height: 90vh;
  }

  .slide-1 .carousel-content,
  .slide-1 .carousel-text {
    height: 80vh;
  }
    
    
}
@media (max-width: 480px) {
    .slide-1 .carousel-text {
    padding-top:125px;
    padding-bottom: 20px;
    }
    .slide-1 .carousel-text h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
        line-height: 1.2;
        word-break: break-word;
        text-align: center;
    }

    .slide-1 .carousel-text h2 span {
        font-size: clamp(2.5rem, 6.5vw, 2.5rem);
        display: inline-block;
        word-break: break-word;
    }

    .slide-1 .carousel-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}




/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    background-image: url('../images/about.webp');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.about-section-title {
    margin-bottom: 6px;
    color: #be0b0b;
    font-weight: 500;
}

.content-container {
    width: 50%;
}

.sub-title {
    font-size: 3.5rem;
    color: #11265f;
    font-weight: 400;
    line-height: 1;
}

.sub-title-em {
    font-size: 5.8rem;
    line-height: 70px;
    font-weight: 600;
    background: linear-gradient(to right, #45D0CB, #11265F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    padding-bottom: 1rem;
}

.content-container p {
    font-size: 1rem;
    font-weight: 300;
    text-align:justify;
}

.highlight {
    font-size: 5.8rem;
    line-height: 70px;
    font-weight: 600;
    background: linear-gradient(to right, #E85623, #FF9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    padding-bottom: 1rem;
}

/* ===================================
   PRODUCTS SECTION
   =================================== */
.products-section {
    padding: 80px 0;
    background-color: #F9F6F2;
}

.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.product-section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    
}


/* ===================================
   PRODUCT CARDS
   =================================== */

 .products-carousel {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 2rem 1rem;
  margin-left: 150px;
  gap: 1rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(60% / 2); 
  scroll-snap-align: start;
  max-width: none; 
  transition: all 0.3s ease;
}
.products-carousel::after {
  content: '';
  flex: 0 0 1rem;
}
.products-carousel::-webkit-scrollbar {
  display: none;
}

.products-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-card:hover {
    transform: translateY(-6px);

}

.card-top {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 20px 20px 0 0;
}

.product-image {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.card-bottom {
    background: #242424;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 35px;
    border-radius: 0 0 20px 20px;
    height: 180px;
}

.product-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 25px;
}

.brand-logo {
    margin-bottom: 15px;
}

.product-badge {
    display: flex;
    flex-direction: column;
    padding-right: 15px;
    border-right: 2px solid #CC9933;
    justify-content:center
}

.product-badge img {
    width: 80px;
    height: auto;
}

.color-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: white;
    line-height: 1;
}

.metallica-text {
    font-size: 1rem;
    margin: 0;
    color: white;
    line-height: 1;
    text-transform: capitalize;
}

.color-dots {
    display: flex;
    gap: 4px;
    margin: 5px 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.blue { background-color: #2196F3; }
.dot.green { background-color: #4CAF50; }
.dot.red { background-color: #F44336; }

.water-feature {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
}

.water-icon img {
    width: 1rem;
    height: 1rem;
}

.water-text {
    line-height: 1.2;
    font-weight: 300;
}

.product-description {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 12px;
    opacity: 0.9;
    color: white;
}

.explore-btn {
    background: #ff6600;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: #ff5500;
    transform: scale(1.05);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #B3B3B3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #808080;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-image: url('../images/footer_background.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
    padding: 100px 0 0;
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 /* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float img {
  width: 28px; height: 28px;
  display: block;
}
.whatsapp-float span {
  font-size: 32px; 
  color: #fff;
  display: none;
  line-height: 1;
}
/* WhatsApp Popup Modal */
.whatsapp-modal {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 10000;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
/* Modal Header */
.whatsapp-header {
  background: #25d366;
  color: #fff;
  padding: 12px 16px;
}
.whatsapp-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
/* Modal Body */
.whatsapp-body {
  padding: 16px;
  font-size: 14px;
  color: #333;
}
.whatsapp-contact {
  margin-top: 10px;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.whatsapp-contact a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  width: 100%;
}
.whatsapp-contact img { width:26px; height:26px; }



.footer-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.footer-section h4{
    text-align: center;
}
.footer-section h4 a {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-section h4 a:hover {
    padding-left: 5px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.footer-section .logo img {
    width: 150px;
    height: auto;
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.back-to-top-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.back-to-top p {
    font-size: 12px;
    color: #cccccc;
}

.connect-with-us p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 15px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 14px;
    color: #cccccc;
}
/* Target the Products footer section specifically */
.footer-section.products-menu {
    text-align: left;
}

.footer-section.products-menu h4 {
    text-align: left;
}

.footer-section.products-menu ul {
    padding-left: 0;
    text-align: left;
    list-style: none; /* Optional: in case you want to remove bullets */
}

.footer-section.products-menu ul li a {
    display: inline-block;
    padding-left: 0;
    text-decoration: none; /* Optional */
}

.footer-section.products-menu ul li a:hover {
    padding-left: 5px;
}

/* Responsive styles for mobile (max-width 768px or adjust as needed) */
@media (max-width: 768px) {
    .footer-section.products-menu,
    .footer-section.products-menu h4,
    .footer-section.products-menu ul {
        text-align: center;
    }

    .footer-section.products-menu ul li a {
        padding-left: 0; /* Optional: reset hover effect if needed */
    }

    .footer-section.products-menu ul li a:hover {
        padding-left: 0; /* Or keep as is if hover effect is desired */
    }
}



/* ===================================
   Art Showcase Section
   =================================== */
.color-showcase-section {
  background-image: url('../images/color-showcase-section-bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffffff;
}

.art-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  padding-top:2rem;
  text-align: center;
}

.art-title {
  font-size: 3rem;
  font-weight: 400;
}

.art-title-span {
  display: flex;
  justify-content: center;
  gap: 450px;
  font-size: 3rem;
  font-weight: 400;
}

.art-gallery-slider {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  margin-top: 2rem;
margin-bottom:-7px;
}

.art-item {
  flex: 1 1 280px;
  max-width: 320px;
  position: relative;
  transition: all 0.3s ease;
}

.art-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* staggered positions */


.art-item-2 {
  top: -70px;
}
/* Mobile slider styles */
@media (max-width: 768px) {
    .art-container {
        padding-bottom: 1rem;
    }
  .art-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .art-gallery-slider {
    display: flex;
    gap: 1rem;
    width: 100%;
    transition: transform 0.4s ease-in-out;
  }

  .art-item {
    flex: 0 0 100%;
    width: 100%;
  }

  .art-slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 8px;
  }

  .art-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .art-dot.active {
    background-color: #333;
  }
}



/* Responsive tweaks */
@media (max-width: 992px) {
  .art-title {
    font-size: 2rem;
  }
  .art-title-span {
    gap: 300px;
    font-size: 2rem;
  }
  
}

@media (max-width: 768px) {
  .art-title {
    font-size: 1.8rem;
  }
  .art-title-span {
    gap: 10px;
    font-size: 1.8rem;
  }
  .art-item-2 {
        top: 0;
      }
}

@media (max-width: 480px) {
  .art-title {
    font-size: 1.5rem;
  }
  .art-title-span {
    font-size: 1.5rem;
  }
  
    
}
/* ===================================
   Customer Insights Section
   =================================== */
    

.customer-insights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.insights-main-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.insights-left-panel {
    flex: 1;
    max-width: 400px;
}

.insights-main-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: #2c2c2c;
    line-height: 0.5;
}

.insights-title-highlight {
    font-size: 4.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #E85623, #FF9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.insights-statistics-section {
    margin-top: 20px;
}

.insights-stat-number {
    font-size: 4rem;
    font-weight: 300;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 15px;
}

.insights-stat-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    max-width: 300px;
}

.insights-right-panel {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
}

.testimonial-carousel-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.testimonial-carousel-track {
    display: flex;
    flex-direction: column;
    gap: 50px;
    animation: testimonialInfiniteScroll 60s linear infinite;
    position: absolute;
    width: 100%;
    
}

.customer-testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 8px 32px rgba(230, 228, 228, 0.652);
    border: 1px solid rgba(230, 228, 228, 0.2);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    
}
.customer-testimonial-card:nth-child(even){
    border-radius: 20px 20px 0 20px;
}
.customer-testimonial-card:nth-child(odd){
    border-radius: 20px 20px 20px 0;
}
.customer-testimonial-card:nth-child(even)::before {
  content: url('../images/even_shape.svg');
  position: absolute;
  bottom: -55px;
  right: -62px;
}
.customer-testimonial-card:nth-child(odd)::before {
  content: url('../images/odd_shape.svg');
  position: absolute;
  bottom: -55px;
  left: -62px;
}

.testimonial-message-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author-credit {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 500;
    align-self: flex-start;
}

@keyframes testimonialInfiniteScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.testimonial-carousel-track:hover {
    animation-play-state: paused;
}

.shorts-section {
    background-color: #000;
    padding: 60px 20px;
    color: #fff;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: white;
}

.shorts-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.shorts-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
}

.shorts-card {
    min-width: 250px;
    max-width: 320px;
    width: 300px;
    scroll-snap-align: start;
    flex: 0 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: #000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
    position: relative;
    padding-top: 177.77%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.shorts-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    z-index: 2;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 60px;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.scroll-btn.left {
    left: 10px;
}

.scroll-btn.right {
    right: 10px;
}

.shorts-carousel::-webkit-scrollbar {
    display: none;
}
.shorts-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* for smooth scrolling on iOS */
    gap: 16px;
    scroll-snap-type: x mandatory;
}

.mute-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    border: none;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mute-toggle svg {
    width: 20px;
    height: 20px;
    color: white;
}

@media (max-width: 768px) {
    .shorts-card {
        width: 100vw;
    }
    .scroll-btn {
        display: none;
    }
    .shorts-btn {
        font-size: 12px;
        padding: 5px 10px;
    }

    .mute-toggle {
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
    }
}


