html {
            scroll-behavior: smooth;
        }

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}
*{
    margin: 0px auto;
}

/* Header Section */


/* Hero Slider Section */
        /* .hero-slider-section {
            position: relative;
            height: 100vh; 
            overflow: hidden;
            background-color: #333; 
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 8% 10%;
            box-sizing: border-box;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            animation: zoomInOut 5s infinite alternate ease-in-out;
        }

        @keyframes zoomInOut {
            from { transform: scale(1); }
            to { transform: scale(1.15); }
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           background-color: rgba(0, 0, 0, 0.5);
            z-index: 2;
        }
        
        .slide-content {
            position: relative;
            z-index: 3;
            color: #fff;
            max-width: 50%;
            text-align: left;
             Animation for content on active slide 
            opacity: 0;
           left: -343px; 
            transform: translateY(20px);
            transition: opacity 1s ease-out, transform 1s ease-out;
            transition-delay: 0.5s;
        }

        .slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-content h1 {
            font-family: 'Teko', sans-serif;
            font-size: 64px;
            font-weight: 700;
            line-height: 4rem;
            margin: 0;
            color: #B72937;
            text-transform: uppercase;
        }

        .slide-content p {
            font-size: 20px;
            font-weight: 300;
            margin: 10px 0 0;
            color:#212121;
        }

        
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 15px 10px;
            cursor: pointer;
            z-index: 4;
            font-size: 24px;
            transition: background-color 0.3s ease;
        }
        
        .slider-arrow svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .slider-arrow:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .slider-arrow.prev {
            left: 0;
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
        }

        .slider-arrow.next {
            right: 0;
            border-top-left-radius: 5px;
            border-bottom-left-radius: 5px;
        } /* 

        /* Fog/Cloud Effect */
        .banner-fog {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 8;
        }

        .banner-fog img {
            position: absolute;
            bottom: 0;
            max-width: 100%;
            animation: fog-effect calc(8s * var(--i)) ease-in infinite;
            opacity: 0.4;
        }

        @keyframes fog-effect {
            0% {
                opacity: 0;
                transform: translateX(-100px) scale(1);
            }
            25%, 75% {
                opacity: 0.6;
            }
            100% {
                transform: translateX(100px) scale(1.2);
                opacity: 0;
            }
        }
         */
 
/* product */
 .fixed-background {
            height: 65vh;
            background-image: url('../img/product/mount.jpg');
            background-size: cover;
            background-position: center center;
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1; /* A fixed background should have a low z-index */
            display: flex;
            background-attachment: fixed;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }

        /* Spacer element to push content below the fixed background */
        .bg-spacer {
            /* height: 50vh; */
            width: 100%;
        }

        .bg-text-content {
            padding: 20px;
            max-width: 600px;
            margin-bottom: 19rem;
            position: relative;
            z-index: 2; /* Ensure text is above background image */
        }

        .bg-text-content h1 {
            margin: 0;
            font-size: 3rem;
            font-weight: 900;
            color: #212121;
            /* text-shadow: 2px 2px 8px rgba(0,0,0,0.7); */
        }

        .bg-text-content p {
            font-size: 1.1rem;
             color: #212121;
            /* text-shadow: 1px 1px 4px rgba(0,0,0,0.7); */
        }

        .cards-container {
           display: flex
;
    flex-direction: column;
    width: 98vw;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: -30vh;
            
            @media (min-width: 768px) {
                flex-direction: row;
                height: 50vh;
            }
        }
        
        .product-card {
            padding: 2rem;
            color: white;
            cursor: pointer;
            overflow: hidden;
            position: relative;
           background-color: rgb(93 93 93 / 24%);
            backdrop-filter: blur(6px);
            transition: flex 0.9s ease-in-out, box-shadow 0.6s ease-in-out;
            /* border-radius: 0.75rem; */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex: 1; /* Sets all cards to have equal width initially */
            z-index: 2;
            height: 425px;
        }
        
        /* Overlay effect on hover */
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.214);
            opacity: 0;
            transition: opacity 0.9s ease-in-out;
            z-index: 1;
        }

        .product-card:hover {
            flex: 2; /* Makes the hovered card expand to twice the width */
            z-index: 10;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .product-card:hover::before {
            opacity: 1; /* Shows the overlay */
        }

        /* Content inside the card */
        .card-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            /* gap: 1rem; */
            height: 100%;
            width: 100%;
            justify-content: space-around;
        }

        /* Titles and paragraphs are visible by default */
        .card-content h2,
        .card-content p {
            opacity: 1;
            transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
            transform: translateY(0);
        }

        /* Button is hidden by default and appears on hover */
        .card-content button {
            opacity: 0;
            transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
            transform: translateY(10px);
        }

        /* Hover effect on button */
        .product-card:hover .card-content button {
            opacity: 1;
            transform: translateY(0);
        }

        /* Initial state of image */
        .card-content img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 0.5rem;
        }
        
        .product-card h2 {
            margin: 0;
            font-size: 1.8rem;
            text-align: center;
            /* text-shadow: 2px 2px 4px rgba(0,0,0,0.5); */
            font-weight: 500;
            color: #212121;
        }

        /* .scroll-spacer {
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            font-size: 1.5rem;
        } */

/* feature */
.cover-h{
 text-align: center;
    padding: 75px;
    margin-bottom: 10px;
}

.cover-h h1{
  font-size: 40px;
  font-weight: 800;
}
.coverflow-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.coverflow-carousel {
 height: 480px;
    display: flex;
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
    /* gap: 10px; */
      padding: 30px 47px;
}

.coverflow-card {
        width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transform: scale(0.8);
    opacity: 0.6;
    transition: transform 0.5s, opacity 0.5s;
     position: relative;
  overflow: hidden;
}

.coverflow-card.active {
  transform: scale(1.2) translateZ(100px);
  opacity: 1;
  z-index: 2;
}

.coverflow-card.left {
  transform: rotateY(40deg) translateX(-40px) scale(1);
}

.coverflow-card.right {
  transform: rotateY(-40deg) translateX(40px) scale(1);
}


.card-label {
      position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 10px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

@media (max-width: 768px) {
  .coverflow-carousel {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    transform: none !important; /* Disables the 3D transform on smaller screens */
  }

  .coverflow-card {
    width: 45%;
    height: 150px;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .coverflow-card.active,
  .coverflow-card.left,
  .coverflow-card.right {
    transform: none !important;
  }

  .cover-h h1 {
    font-size: 24px;
    padding: 15px;
  }
}

/* about us */

 .about-us-section{
    max-width: auto;
    padding: 81px 80px 40px 80px;
 }

       /* Custom styles for progress bars and dashed circle */
        .dashed-border {
            border: 2px dashed #9ca3af; /* A light gray for the dashed line */
            animation: rotate 20s linear infinite;
        }
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        .progress-track {
            background-color: #e5e7eb; /* A light gray for the track */
            height: 8px;
            border-radius: 9999px; /* rounded-full */
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            width: 0%; /* Initial width for animation */
            border-radius: 9999px; /* rounded-full */
            background: #4b4b4b;
        }
        .count-up-number {
            font-variant-numeric: tabular-nums; /* Ensures numbers don't jump around as they change */
        }

        /* our facilities */

 /* Custom styles for the arrow buttons */
        .arrow-btn {
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .arrow-btn:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }

        /* Custom styles for the 'View All' button */
        .view-all-btn {
            /* border: 2px solid #ff026a; */
            color: rgb(183, 41, 55);
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
         background: rgb(183, 41, 55);
            color: white;
        }

        /* Responsive styling for the main container */
        @media (min-width: 1024px) {
            .facilities-container {
                height: 500px;
            }
        }

        /* product */

         /* Gradient for buttons */
        .gradient-btn {
            /* background: linear-gradient(90deg, #61A354 0%, #B7F164 100%); */
            border: none;
            cursor: pointer;
        }

         /* Services Section Layout */
        .services-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 3rem; /* gap-12 */
        }
        @media (min-width: 768px) {
            .services-container {
                flex-direction: row;
            }
        }

        /* Services Section Layout */
         /* Services Section Custom Styles */
        .services-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        @media (min-width: 1024px) {
            .services-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* we offer */

        /* What We Offer Section Styles */
        .offer-section {
            padding-top: 4rem;
            padding-bottom: 4rem;
            background-color: #f3f4f6;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .container-main {
            max-width: 1280px; /* Equivalent to container mx-auto */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .offer-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        @media (min-width: 1024px) {
            .offer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        .offer-text-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .offer-heading {
            font-size: 2.25rem;
            line-height: 2.5rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            color: #1f2937;
            line-height: 1.25;
        }
        @media (min-width: 768px) {
            .offer-heading {
                font-size: 3rem;
                line-height: 1;
            }
        }

        .offer-paragraph {
            font-size: 1.125rem;
            line-height: 1.75rem;
            color: #4b5563;
        }

        .offer-button {
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            color: white;
            font-weight: 600;
            align-self: flex-start;
            transition: background-color 0.3s ease-in-out;
            background: rgb(183, 41, 55);
        }

        /* Accordion Styles */
        .accordion-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .accordion-item {
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            background-color: white;
            transition: all 0.5s ease-out;
            overflow: hidden;
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 1.5rem;
            background-color: white;
            border-radius: 0.5rem;
        }

        .accordion-title {
            font-size: 1.125rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            color: #1f2937;
        }

        .accordion-arrow {
            width: 1.5rem;
            height: 1.5rem;
            color: #6b7280;
            transition: transform 0.3s ease-in-out;
        }

        .accordion-item.active .accordion-arrow {
            transform: rotate(180deg);
        }

        .accordion-content {
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            max-height: 0;
            overflow: hidden;
            padding: 0 1.5rem;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
            padding: 1.5rem;
        }
        
        .accordion-text {
            color: #4b5563;
        }


         /* New Review Section Styles */
    .review-section {
    padding: 10rem 2rem;
    text-align: center;
    height: 500px;
    margin-bottom: 47px;
    }

    .review-title {
            font-size: 3.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 3rem;
    }

    .review-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .review-text {
        /* Using a common serif font that can have a cursive feel */
        font-family: 'Times New Roman', Times, serif; 
        font-style: italic;
        font-size: 1.5rem;
        color: #000;
        max-width: 800px;
        transition: opacity 0.5s ease-in-out;
    }

    .review-nav-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    /* Arrow styling for reviews */
    .review-nav-btn svg {
        width: 2.5rem;
        height: 2.5rem;
        color: #000;
        transition: transform 0.3s;
    }

    .review-nav-btn:hover svg {
        transform: scale(1.1);
    }

      .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark-bg);
        }

         /* magazine */


        .magazine-section {
            width: 100%;
            padding: 0 1rem;
            box-sizing: border-box;
            max-width: 1440px;
        }

        /* Header for the section */
        .header1 {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }

        .header-title1 {
            font-size: clamp(3rem, 10vw, 8rem);
            font-weight: 900;
            letter-spacing: -0.05em;
            text-transform: uppercase;
        }

        /* Styles for the "COLLECTION" circles */
        .header-title-inner {
            position: relative;
        }

        .header-title-inner::before,
        .header-title-inner::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 2rem;
            height: 2rem;
            border: 2px solid #b0a694;
            border-radius: 50%;
        }
        .header-title-inner::before { left: -1.5rem; }
        .header-title-inner::after { right: -1.5rem; }
        
        .header-number {
            font-size: 3rem;
            font-weight: 700;
            color: #b0a694;
        }

        /* Horizontal scroll container and animation */
        .scrolling-container {
            width: 100%;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2rem 0;
        }

        .scroll-track {
            display: flex;
            gap: 2rem;
            animation: scroll-left 20s linear infinite; /* Adjusted animation duration for 6 items */
        }

        /* Keyframe animation for automatic scrolling */
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        /* Magazine card styling */
        .magazine-card {
            min-width: 250px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .magazine-card::before {
            content: attr(data-number);
            position: relative;
            font-size: 1.5rem;
            font-weight: 700;
            color:rgb(183, 41, 55);
            margin-bottom: 1rem;
        }

        .magazine-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 0.5rem;
        }

        .magazine-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.25rem;
            padding-bottom: 1rem;
        }

        .magazine-title {
            font-size: 1.25rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .magazine-subtitle {
            font-size: 0.875rem;
            color:rgb(183, 41, 55);
        }

        .view-collection-btn {
            color: #fff;
            text-transform: uppercase;
            font-size: 0.75rem;
            font-weight: 700;
            text-decoration: none;
            position: relative;
            padding-bottom: 0.25rem;
        }

        .view-collection-btn::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background-color: #fff;
        }

/* Footer */
footer {
  background-image: url(../img/banner/ban11.jpg);
  width: 100%;
  height: 100%;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  margin-top: 46px;
}

footer::before{
  content: '';
  width: 100%;
  height: 100%;
     background-color: #14141433;
  position: absolute;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 5% 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  margin-top: 40px;
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #d10a10;
  position: relative;
  padding-bottom: 10px;
  z-index: 1;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #212121;
}

.footer-column p {
  margin-bottom: 20px;
       color: #212121;
  z-index: 1;
  position: relative;
}

.footer-column1 {
  flex: 1;
  min-width: 250px;
}

.footer-column1 h3 {
  margin-top: 40px;
  font-size: 1.5rem;
  color: #d10a10;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  z-index: 1;
}

.footer-column1 h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #212121;
}

.footer-column1 p {
  margin-bottom: 20px;
     color: #212121;
  z-index: 1;
  position: relative;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
     background-color: rgb(255 255 255);
  border-radius: 50%;
     color: #212121;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
     color: #212121;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-column i {
  color: var(--primary-color);
  padding: 0;
}

.copyright {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.271);
  color: #fff;
  font-size: 0.9rem;
}

/* Social Media Popup */
.social-popup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-5px);
}

.facebook {
  background-color: #3b5998;
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.phone {
  background-color: var(--primary-color);
}

.whatsapp {
  background-color: #25D366;
}
