* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    /* overflow-x: hidden; */
}

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    /* Black corresponds to 900 */
    /* font-style: normal; */
}

body {
    background-color: #F4F4F4;
}

/* Heading Start*/
.heading-black {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    src: url('./font/Montserrat-Black.ttf');
    font-size: 2rem;
}

/* Heading End */

/* Navbar Base */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 1%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(39, 39, 39, 0.26);
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(1.8px);
    -webkit-backdrop-filter: blur(9.0px);
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo img {
    width: 120px;
    transition: width 0.3s ease;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    z-index: 99;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: #141313;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.active-link {
    color: #BF1E2E !important;
    border-bottom: 2px solid #BF1E2E;
}

/* Dropdown Menu */
.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-radius: 4px;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #141313;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f0f0f0;
    color: #BF1E2E;
}

/* ------------------- RESPONSIVE STYLES ------------------- */

@media (max-width: 1024px) {
    .navbar {
        padding: 8px 5%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 5%;
    }

    .logo img {
        width: 80px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.97);
        padding: 20px 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 18px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: none;
        padding-left: 0;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 8px 20px;
        background: rgba(255, 255, 255, 0.9);
    }

    .navbar.scrolled .hamburger span {
        background-color: #141313;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 2%;
    }

    .logo img {
        width: 60px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .nav-links li {
        margin: 8px 0;
    }
}

/* Nav Bar Ends */

/* Submenu Start */
.submenu-bar {
    display: flex;
    justify-content: center;
    gap: 160px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    background: rgba(39, 39, 39, 0.26);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1.8px);
    flex-wrap: wrap;
    position: absolute;
    top: 9%;
    left: 0;
    width: 100%;
    z-index: 10;
}

.submenu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    padding: 10px;
    min-width: 70px;
}

.submenu-item i {
    font-size: 24px;
    margin-bottom: 5px;
    transition: transform 0.3s;
}

.submenu-item:hover {
    color: #BF1E2E;
}

.submenu-item:hover i {
    transform: scale(1.2);
}

.submenu-item.active-submenu {
    color: #BF1E2E;
    /* or any highlight color */
    font-weight: bold;
    border-bottom: 2px solid #BF1E2E;
}

/* 1024px screens (tablets/small laptops) */
@media (max-width: 1024px) {
    .submenu-bar {
        /* gap: 30px; */
        padding: 12px 10px;
        top: 18%;
    }

    .submenu-item {
        font-size: 13px;
        min-width: 65px;
    }

    .submenu-item i {
        font-size: 22px;
    }
}

/* 768px screens (tablets) */
@media (max-width: 768px) {
    .submenu-bar {
        /* gap: 20px; */
        top: 13%;
        padding: 10px 5px;
    }

    .submenu-item {
        font-size: 12px;
        min-width: 60px;
    }

    .submenu-item i {
        font-size: 20px;
    }
}

/* 480px screens (mobile) */
@media (max-width: 480px) {
    .submenu-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 10px 0;
        gap: 15px;
        position: absolute;
        top: 11%;
    }

    .submenu-item {
        font-size: 11px;
        min-width: 50px;
    }

    .submenu-item i {
        font-size: 18px;
    }
}

/* Submenu End */


/* Hero Section */
/* Reset and base styles */

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/homeImg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 24, 24, 0.38);
    /* Adjusted for better contrast */
    z-index: -1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* .hero-content .line {
    display: inline-block;
    /* opacity: 0; */
/* Initial state for animation *
}
*/
.hero-content .line.left {
    animation: slideLeft 1s ease-out forwards;
    /* margin-left: 10%; */
}

.hero-content .line.right {
    animation: slideRight 1s ease-out forwards;
    /* margin-left: 50%; */
}

.dot {
    color: #ff3c3c;
}

/* Scroll Button */
.scroll-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4a4949;
    opacity: 1;
    /* Initial state for animation */
}

.scroll-icon {
    width: clamp(15px, 2vw, 25px);
    margin-bottom: 5px;
    filter: brightness(0) invert(1);
    /* White icon for contrast */
}

/* Social Icons */
.social-icons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
    opacity: 0;
    /* Initial state for animation */
}

.social-icons a {
    text-decoration: none;
}

.social-icons img {
    width: clamp(20px, 2vw, 30px);
    filter: brightness(0) invert(1);
    /* White icons for contrast */
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Animations */
@keyframes slideLeft {
    from {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }

    to {
        transform: translateX(0) rotate(45deg);
        opacity: 0.8;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(100%) rotate(0deg);
        opacity: 0;
    }

    to {
        transform: translateX(0) rotate(0deg);
        opacity: 0.8;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

[data-animation].animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

[data-animation="slide-up"].animated {
    animation-name: slideUp;
}

[data-animation="slide-left"].animated {
    animation-name: slideLeft;
}

[data-animation="slide-right"].animated {
    animation-name: slideRight;
}

/* Responsive Breakpoints */
/* @media (max-width: 1440px) {
    .hero-content h1 {
        font-size: clamp(1.8rem, 4vw, 4rem);
    }

    .hero-content .line.right {
        margin-left: clamp(15px, 4vw, 50px);
    }

    .social-icons {
        right: 10px;
    }
} */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: clamp(1.5rem, 3.5vw, 3rem);
    }

    .hero-content .line.right {
        margin-left: clamp(10px, 3vw, 30px);
    }

    .scroll-icon {
        width: clamp(12px, 1.5vw, 20px);
    }

    .social-icons {
        top: 45%;
        right: 5px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-content {
        padding: 10px;
    }

    .hero-content h1 {
        font-size: clamp(1.2rem, 3vw, 2.5rem);
    }

    .hero-content .line.right {
        margin-left: clamp(5px, 2vw, 20px);
    }

    .scroll-button {
        bottom: 10px;
    }

    .scroll-icon {
        width: clamp(10px, 1.5vw, 15px);
    }

    .social-icons {
        top: 40%;
        right: 5px;
        gap: 10px;
    }

    .social-icons img {
        width: clamp(15px, 1.5vw, 20px);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero-content {
        top: -20%;
        padding: 5px;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 2.5vw, 1.2rem);
    }

    .hero-content .line.right {
        margin-left: clamp(2px, 1.5vw, 10px);
    }

    .scroll-button {
        bottom: 5px;
    }

    .scroll-icon {
        width: clamp(8px, 1vw, 12px);
    }

    .social-icons {
        top: 30%;
        right: 2px;
        gap: 8px;
    }

    .social-icons img {
        width: clamp(12px, 1vw, 15px);
    }
}

/************************* Section-2 *************************/
/* Reset and base styles */
.container-sec2 {
    width: 100%;
    /* max-width: 1440px; */
    margin: 0 auto;
    padding: 0 20px;
}

/* Content section */
.content {
    width: 100%;
    background-color: #F4F4F4;
    text-align: center;
    padding: 2% 0;
    margin: 5% 0;
}

.content h3 {
    text-align: left;
    padding: 10px 0;
    font-size: clamp(1.9rem, 5vw, 5rem);
    /* Responsive font size */
    color: #000;
}

.vision {
    max-width: 80%;
    margin: 0 auto;
    font-size: clamp(1.2rem, 3vw, 2.8rem);
    color: #000;
    text-align: left;
    line-height: 1.5;
}

.vision-text {
    max-width: 80%;
    margin: 0 auto;
    font-size: clamp(1rem, 2.5vw, 2.5rem);
    color: #000;
    text-align: left;
    line-height: 1.5;
}

.vision span {
    font-weight: bold;
}

.highlight1 {
    color: #D32F2F;
    /* Accessible red color */
}

/* Image Gallery */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.image-gallery img {
    max-width: 100%;
    width: clamp(200px, 30vw, 475px);
    /* Responsive width */
    height: clamp(200px, 35vw, 500px);
    /* Responsive height */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.14);
    /* Optimized shadow */
    object-fit: cover;
    border-radius: 4px;
    /* Slight rounding for modern look */
    transition: transform 0.3s ease;
    /* Smooth hover effect */
}

.image-gallery img:hover {
    transform: scale(1.05);
}

.margin-img {
    margin-top: 20px;
}

/* Animations */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bloomEffect {
    0% {
        opacity: 0;
        transform: scale(0.9);
        text-shadow: none;
    }

    50% {
        opacity: 0.8;
        transform: scale(1.03);
        /* text-shadow: 0 0 10px rgba(10, 8, 58, 0.4); */
    }

    100% {
        opacity: 1;
        transform: scale(1);
        /* text-shadow: 0 0 15px rgba(10, 8, 58, 0.5); */
    }
}

[data-animation].animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

[data-animation="slide-up"].animated {
    animation-name: slideUp;
}

[data-animation="bloomEffect"].animated {
    animation-name: bloomEffect;
}

/* Responsive Breakpoints */
@media (max-width: 1440px) {
    .image-gallery img {
        width: clamp(180px, 25vw, 240px);
        height: clamp(180px, 25vw, 240px);
    }
}

@media (max-width: 1024px) {
    .content {
        padding: 40px 0;
        margin: 8% 0;
    }

    .content h3 {
        font-size: clamp(1.5rem, 4vw, 2.3rem);
    }

    .vision {
        font-size: clamp(1rem, 2vw, 1.2rem);
        margin: 0 4%;
    }

    .vision-text {
        font-size: clamp(0.9rem, 2vw, 1.5rem);
        margin: 0 4%;
    }

    .image-gallery img {
        width: clamp(100px, 30vw, 200px);
        height: clamp(100px, 30vw, 200px);
    }
}

@media (max-width: 768px) {
    .content {
        padding: 30px 0;
        margin: 6% 0;
    }

    .content h3 {
        font-size: clamp(1.2rem, 3vw, 3rem);
        text-align: center;
    }

    .vision {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
        text-align: center;
        margin: 0 2%;
    }

    .vision-text {
        font-size: clamp(0.8rem, 2vw, 1.2rem);
        text-align: center;
        margin: 0 2%;
    }

    .image-gallery {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .image-gallery img {
        width: clamp(120px, 40vw, 160px);
        height: clamp(120px, 40vw, 160px);
        margin-top: 0;
        /* Remove margin for vertical layout */
    }

    .margin-img {
        margin-top: 0;
        /* Reset margin for consistency */
    }
}

@media (max-width: 480px) {
    .content {
        padding: 20px 0;
        margin: 5% 0;
    }

    .content h3 {
        font-size: clamp(1.5rem, 5vw, 1.9rem);
    }

    .vision {
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin: 0 2%;
        text-align: center;
    }

    .vision-text {
        font-size: clamp(1.0rem, 3vw, 16px);
        text-align: left;
        margin: 0 10%;
    }

    .image-gallery img {
        width: clamp(300px, 50vw, 300px);
        height: clamp(300px, 50vw, 300px);
    }

    .container-sec2 {
        padding: 0;

    }
}

/* Section-3 */

.container-3 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 2%;
}

/* Row Layout */
.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 0 10%;
    gap: 30;
}

/* Text Section */
.col-1 {
    flex: 1;
}

.heading {
    color: #BF1E2E;
    font-size: 14px;
}

.title {
    font-size: 3.2rem;
    margin: 5px 0;
    text-align: left;
}

.col-2 {
    flex: 1;
    padding: 10px;
}

.description {
    font-size: .95rem;
    color: #444;
    font-weight: 500;
    /* margin-top: 80px; */
}


/* Image Gallery */
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    position: relative;
}

.home-image-container {
    place-self: flex-end;
    /* position: relative; */
    /* display: inline-block; */
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.main-image1,
.main-image2 {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.overlay {
    z-index: -4;
    position: absolute;
    width: 100px;
    /* Adjust based on actual PNG size */
    height: auto;
}

.overlay-left {
    top: 0px;
    /* Adjust positioning above the first image */
    left: 70px;
}

.overlay-left2 {
    bottom: -65px;
    left: 70px;
}

.overlay-right {
    top: -30px;
    /* Adjust positioning above the third image */
    right: 80px;
}


@media screen and (max-width: 1024px) {}

@media screen and (max-width: 480px) {
    .container-3 {
        padding: 10px;
        text-align: center;
    }

    .row {
        flex-direction: column;
    }

    .title {
        font-size: 0.9rem;
        text-align: left;
    }

    .heading {
        text-align: left;
    }

    .description {
        font-weight: 400;
        font-size: 0.78rem;
        text-align: justify;
        margin-top: 10px;
    }

    .col-2 {
        padding: 0;
    }

    .overlay-left {
        top: -50px;
        left: 0px;
        z-index: -1;
    }

    .overlay-right {
        top: -40px;
        right: -9px;
        z-index: -2;
    }

    .overlay-left2 {
        bottom: -27px;
        left: -15px;
        z-index: -2;
    }

    .main-image,
    .main-image1,
    .main-image2 {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .gallery {
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        padding: 0;
    }

    /* First image full width */
    .gallery .home-image-container:nth-child(1) {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Second and third images side by side */
    .gallery .home-image-container:nth-child(2),
    .gallery .home-image-container:nth-child(3) {
        width: 50%;
        /* exactly 50% */
        padding: 0 10px;
        /* optional spacing */
    }

    .main-image {

        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;

    }

    .main-image1,
    .main-image2 {
        width: 100%;
        height: 300px;
        display: block;
        border-radius: 10px;
    }
}

/* @media screen and (max-width: 768px) {
    .container-3 {
        text-align: center;
    }

    .home-image-container {
        place-self: center;
    }

    .description {

        max-width: 100%;
        font-size: 0.98rem;
    }

    .row {
        flex-direction: column;
        text-align: left;
        padding: 10px 20px;
    }

    .gallery {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .tile-img {
        width: 80%;
    }
} */

/* Left Image Slide */
@keyframes imgSlideLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

[data-animation="imgSlideLeft"].animated {
    animation: imgSlideLeft 1s ease-out forwards;
}

/* Section-3 End */
/* Section- 4 */
/************************************ Tile Our Artisan********************************************/
.tile-container {
    width: 100%;
    margin: 0 auto;
    /* Center the container */
    display: flex;
    justify-content: space-between;
    /* Distribute columns evenly */
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

}

/* Tile Category */
.tile-category {
    color: #BF1E2E;
    font-size: 18px;
    text-align: left;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Layout Row */
.row-sec4 {
    display: flex;
    /* justify-content: center;
    align-items: center; */
    flex-direction: column;
    gap: 10px;
    place-self: end;
    flex: 1;
}

.r-4 {
    display: flex;
    flex-direction: column;
}

/* .rsec-4,
    .rse-43,
    .tab-rse {
        display: flex;
        flex-direction: row;
    } */

/* Wrapper around both heading and image tiles */
.tile-section-wrapper {
    padding: 5% 10%;
}

/* Overlaying .tile-row */
.tile-row {
    /* position: absolute;
    top: 30px;
    left: 20%; */
    /* transform: translateX(-50%); */
    /* z-index: 2; */
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    /* text-align: center; */
    pointer-events: none;
}

/* Tile headings */
.tile-category {
    font-size: 1.5rem;
    color: #BF1E2E;
}

.tile-artian {
    font-size: 1.5rem;
    color: #000;
    /* Semi-transparent bg */
    /* padding: 10px 15px; */
    border-radius: 5px;
    /* margin: 5px; */
    pointer-events: auto;
    /* Allow interaction if needed */
}

/* Ensure image section flows properly */


/* Tile Box */
.tile-box {
    width: 100%;
    place-self: flex-start;
}

/* Image Styling */
.tile-img {
    width: 100%;
    /* max-width: 350px; */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Overlay Styling for Second Column */
.tile-overlay {
    position: relative;
    width: 100%;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center the text */
    font-size: 22px;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
    /* Prevent text wrapping */
}

/* Third Column Styling */
.tile-details {
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* max-width: 300px; */
    width: 100%;
}

/* Tile Description */
.tile-description {
    font-size: 1.81rem;
    color: #444;
    margin-top: 30px;
    padding: 5% 0;
    margin-bottom: 10px;
    text-align: justify;

    /* Center text for consistency */
}

.tile-over {
    z-index: 2;
}

.tile-artian {
    font-size: 1.8rem;
    font-weight: 400;
    z-index: 2;
    text-align: left;
}

/* Explore Button */
.tile-button {
    background-color: #fff;
    color: #000;
    padding: 10px 15px;
    font-size: 14px;
    border: 2px solid #000000;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
    text-align: left;
    transition: 0.3s ease-in-out;
}

.tile-button:hover {
    background-color: #BF1E2E;
    color: white;
    border-color: #BF1E2E;
}

/* Responsive Design */

@media (max-width: 1440px) {
    .tile-description {
        font-size: 1.15rem;
    }
}

@media (max-width: 1024px) {
    .tile-container {
        /* max-width: 900px; */
        /* padding: 30px; */
        gap: 15px;
    }

    .tile-description {
        margin-top: 0;
        font-size: 0.82rem;
    }

    .tile-img {
        max-width: 300px;
    }

    .overlay-text {
        font-size: 20px;
        padding: 8px 12px;
    }

    .tile-details {
        max-width: 250px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .tile-container {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        padding: 0;
    }

    .tile-description {
        padding: 0;
        font-size: 1rem;
        text-align: justify;
    }

    /* .tile-container .row-sec4 {
        flex: 0 0 48%;
        max-width: 48%;
    } */

    .tile-img {
        width: auto;
    }

    /* First two columns (Marble + Center Image) */
    .tile-container .row-sec4:nth-child(1),
    .tile-container .row-sec4:nth-child(2) {
        flex: 0 0 48%;
        max-width: 48%;
    }

    /* Third column (text + image + button) full width */
    .tile-container .row-sec4:nth-child(3) {
        width: 100%;
        margin-top: 20px;
        flex-direction: row;
    }

    .tab-view {
        width: 100%;
        flex-direction: column;
    }

    .tab-rse {
        display: flex;
        flex-direction: column;
    }

    /* Make third column (image left, text right) horizontal layout */
    .tile-container .row-sec4:nth-child(3) .tile-details {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    /* Image in third column */
    .tile-container .row-sec4:nth-child(3) .tile-details .tile-box {
        flex: 1;
        max-width: 45%;
    }

    /* Description and button section */
    .tile-container .row-sec4:nth-child(3) .tile-details .rse-43 {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    /* Description and button alignment */
    .tile-container .row-sec4:nth-child(3) .tile-description,
    .tile-container .row-sec4:nth-child(3) .tile-button {
        text-align: left;
    }

    /* Third column text block: ensure it respects width and wraps properly */
    .tile-container .row-sec4:nth-child(3) .tile-details .rse-43 {
        flex: 1;
        max-width: 55%;
        /* Allow enough space for text */
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 14px;
        /* Adjust font size if needed */
    }

    /* Optional: Limit image to avoid pushing text */
    .tile-container .row-sec4:nth-child(3) .tile-details .tile-box img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }

    /* Ensure text stays within the bounds */
    .tile-container .row-sec4:nth-child(3) .tile-description,
    .tile-container .row-sec4:nth-child(3) .tile-button {
        max-width: 100%;
        /* width: 100%; */
    }


}


@media (max-width: 480px) {
    .tile-container {
        gap: 10px;
        flex-direction: column;
        padding: 10px;
    }

    .tile-details {
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }

    /* .tile-category {
        font-size: 16px;
    } */

    .tile-section-wrapper {
        padding: 5% 0%;
    }

    /* .row-sec4 p:not(.tile-category) {
        font-size: 0.9rem;
    } */

    .tile-img {
        max-width: 100%;
    }

    .overlay-text {
        font-size: 16px;
        padding: 6px 8px;
    }

    .overlay-left2 {
        bottom: -27px;
        left: 70px;
    }

    .tile-description {
        font-size: 0.98rem;
        margin-top: 20px;
    }

    .tile-button {
        font-size: 12px;
        padding: 8px 12px;
        text-align: center;
        /* max-width: 34%; */
    }
}


/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes imgSlideLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

[data-animation].animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

[data-animation="slide-up"].animated {
    animation-name: slideUp;
}

[data-animation="imgSlideLeft"].animated {
    animation-name: imgSlideLeft;
}

[data-animation="slide-right"].animated {
    animation-name: slideRight;
}

/* Section-4 End */

/* Section-5 Start */
/* .black-sec {
    width: 90%;
    height: auto;
    margin: 20px;
} */

/* 
.black-sec {
  position: relative;
  width: 90vw;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  margin: auto;
  overflow: hidden;
  background: #000;
}
*/
/* Black Section */
.black-sec {
    width: 100%;
    height: auto;
    background-color: #000;
    position: relative;
    justify-items: center;
    overflow: hidden;
    margin: 5% 0;
}

.black-image-container img {
    background: none;
}

.black-image-container {
    /* position: relative; */
    width: 100%;
    /* max-width: 1200px; */
    /* height: 400px; */
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    background-image: url("../img/home_gif.gif");
    background-size: cover;
    padding: 10%;
    flex-wrap: wrap;
    gap: 10%;
    background-repeat: no-repeat;
    /* Fixed height for the slideshow, adjust as needed */
    overflow: hidden;
}



/* .black-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("./img/home_gif.gif");
    /* Replace with your actual image if needed *
    /*  *\
    color: white;
    text-align: center;
} */

.black-box {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.number-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.number {
    font-size: 4rem;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px white;
    font-family: 'Poppins', sans-serif;
}

.plus {
    font-size: 30px;
    font-weight: 500;
    color: white;
    position: absolute;
    top: 0;
    right: -20px;
}

.black-box p {
    margin-top: 10px;
    margin-left: 10px;
    font-size: 16px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .black-image-container {
        gap: 50px;
        /* padding: 40px 15px; */
    }

    .number {
        font-size: 70px;
    }

    .plus {
        font-size: 22px;
        right: -15px;
    }

    .black-box p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .black-image-container {
        flex-direction: row;
        gap: 40px;
    }

    .number {
        font-size: 60px;
    }

    .plus {
        font-size: 20px;
        right: -12px;
    }

    .image-container {
        max-width: 100%;
        height: 250px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .image-container {
        max-width: 900px;
        height: 300px;
    }

    .slide {
        width: 100%;
        height: auto;
    }

}

@media (max-width: 480px) {
    .image-container {
        max-width: 100%;
        height: 200px;
        padding: 0 10px;
    }

    .slide {
        width: 100%;
        height: auto;
    }

    .black-box {
        width: 27%
    }

    .black-image-container {
        /* padding: 1%; */
        flex-direction: column;
        align-items: center;
    }

    .number {
        font-size: 3.5rem;
        margin-left: -10px;
    }
}


/*
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: cover;
    /* Ensures the image fits within the container *
    opacity: 0;
    /* All slides start invisible *
    transition: opacity 0.5s ease-in-out;
} */

/* Animation for each slide with different delays */
.slide1 {
    animation: fade 18s infinite;
    /* Total duration = 18s (3s per slide x 6) */
}

.slide2 {
    animation: fade 18s infinite;
    animation-delay: 3s;
}

.slide3 {
    animation: fade 18s infinite;
    animation-delay: 6s;
}

.slide4 {
    animation: fade 18s infinite;
    animation-delay: 9s;
}

.slide5 {
    animation: fade 18s infinite;
    animation-delay: 12s;
}

.slide6 {
    animation: fade 18s infinite;
    animation-delay: 15s;
}

/* Keyframes for fade animation */
@keyframes fade {
    0% {
        opacity: 0;
    }

    16.67% {
        opacity: 1;
    }

    /* 1/6 of 18s = 3s, visible for ~3s */
    33.33% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}



/* Section-5 End */
/* Section-5.0 Start */
/* ********************* */
/* Product Tiles Grid */
.product-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.tile {
    flex: 1 1 calc(25% - 20px);
    /* 4 items per row with gap */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s;
}

.tile:hover {
    transform: translateY(-5px);
}

.tile img {
    width: 100%;
    height: 400px;
    /* Set your fixed height */
    object-fit: cover;
    display: block;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}


.tile h3 {
    padding: 15px;
    font-size: 1.2rem;
    color: #333;
}

/* Tablet View: 2 tiles per row */
@media (max-width: 768px) {
    .tile {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Mobile View: 1 tile per row */
@media (max-width: 480px) {
    .tile {
        flex: 1 1 100%;
    }
}

/* Section-5.0 End */



/* Section-5.2 Start */
/* Blog Section */
.blog-section {
    max-width: 80%;
    margin: auto;
    padding: 1rem;
    box-sizing: border-box;
}

.news-heading {
    color: #BF1E2E;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.main-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-content {
    width: 100%;
    height: auto;
    background-color: #F4F4F4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px auto;
    padding: 1% 1.5%;
    flex-direction: row;
}

.blog-description {
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 14px;
    color: #aaa;
    text-align: center;
}

.blog-left {
    flex: 1;
    min-width: 50%;
}

.blog-right {
    flex: 1;
    min-width: 100%;
}

.blog-content .blog-left .blogl-p {
    color: #BF1E2E;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Right Section */
.blog-right {
    flex: 1;
    min-width: 50%;
    margin-top: 20px;
    text-align: justify;
}

/* Paragraph in Right Section */
.blog-right .blogr-p {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.5;
}

.blog-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 10px;
    box-sizing: border-box;
}

.blog-slider {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.blog-card {
    flex: 0 0 33.3333%;
    /* Show 3 at a time */

    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

.blog-img {
    width: 100%;
    border-radius: 10px;
}

.blog-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.blog-date {
    font-size: 13px;
    color: #999;
}

.HomeblogBtn {
    width: 100%;
    height: 100%s;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

/* Navigation buttons */
.nav-btn {
    /* position: absolute;
    transform: translateY(-70%);*/
    width: 5%;
    background-color: #333;
    color: white;

    justify-content: center;
    font-size: 24px;
    padding: 8px 14px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    /* z-index: 10; */
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: #555;
}

/* 
/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 28px;
    }

    .blog-card {
        width: 250px;
    }

    .blog-section {
        max-width: 100%;
    }

    .blog-content {
        padding: 2%;
        flex-direction: column;
    }

    .nav-btn {
        font-size: 16px;
        padding: 1%;
    }

    .blog-left {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-btn {
        font-size: 18px;
        padding: 5px 9px;
        margin: 10px 0;
        width: 40px;
    }

    .blog-card {
        flex: 0 0 100%;
        padding: 10px;
        text-align: center;
    }

    .blog-content {
        padding: 0;
        text-align: center;
    }
}

/* Section-5.2 End */

/* Section-6 Start */
.container-6 {
    width: 100%;
    max-width: 80%;
    /* Replace min-width with max-width for responsiveness */
    height: auto;
    background-color: #F4F4F4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px auto;
    /* Center the container */
    padding: 40px;
    /* Add padding for better spacing */
}

/* Left Section */
.container-6 .left-sec6 {
    flex: 1;
    min-width: 300px;
    /* Ensure the section doesn't shrink too much */
}

/* Paragraph Styling */
.container-6 .left-sec6 .psec6 {
    color: #BF1E2E;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Heading Styling */
.container-6 .left-sec6 h4 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

.container-6 .left-sec6 .lpsec6 {
    color: #BF1E2E;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
}

/* Right Section */
.container-6 .right-sec6 {
    flex: 1;
    min-width: 300px;
    margin-top: 20px;
}

/* Paragraph in Right Section */
.container-6 .right-sec6 .psec6 {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Button Styling */
.container-6 .tile-button {
    background-color: #F4F4F4;
    color: #000;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #000;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
}

.container-6 .tile-button:hover {
    background-color: #BF1E2E;
    color: #fff;
    border-color: #BF1E2E;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container-6 {
        max-width: 900px;
        padding: 30px;
    }

    .container-6 .left-sec6 h4 {
        font-size: 20px;
    }

    .container-6 .left-sec6 .psec6,
    .container-6 .right-sec6 .psec6 {
        font-size: 14px;
    }

    .container-6 .tile-button {
        font-size: 12px;
        padding: 8px 15px;
    }
}

@media (max-width: 768px) {
    .container-6 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 10px;
    }

    .container-6 .left-sec6,
    .container-6 .right-sec6 {
        width: 100%;
        /* max-width: 400px; */
    }

    .container-6 .left-sec6 h4 {
        font-size: 18px;
    }

    .container-6 .left-sec6 .psec6 {
        font-size: 1.5rem;
    }

    .container-6 .right-sec6 .psec6 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container-6 {
        padding: 15px;
        margin: 10px auto;
    }

    .container-6 .left-sec6 .psec6 {
        font-size: 1.5rem;
    }

    .container-6 .left-sec6 h4 {
        font-size: 16px;
    }

    .container-6 .right-sec6 .psec6 {
        font-size: 12px;
    }

    .container-6 .tile-button {
        font-size: 12px;
        padding: 8px 15px;
        text-align: center;
    }
}

/* Section-6 End */



/* Footer */
.footer {
    background-color: #1C2526;
    /* Dark background as per the image */
    color: #fff;
    padding: 40px 0;
}

/* Footer Container */
.footer-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Footer Columns */
.footer-column {
    flex: 1;
    min-width: 0;
}

/* Newsletter Section */
.footer-newsletter {
    padding: 0 20px;
}

.footer-newsletter h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-form input {
    width: 100%;
    max-width: 250px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    background-color: #BF1E2E;
    /* Red button */
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button svg {
    width: 20px;
    height: 20px;
}

/* Navigation Links */
.footer-links {
    text-align: left;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #BF1E2E;
}

/* Contact Info */

.footer-contact {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* padding: 10px; */
    /* max-width: 400px;
    margin: auto; */
}

.foot-con {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.city-text {
    display: flex;
    flex-direction: column;
}

.city-title {
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}


.foot-con a {
    text-decoration: none;
}

.footer-contact img {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #fff;
    text-align: left;
    flex: 1;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .footer-contact {
        padding: 10px 15px;
        text-align: left;
    }

    .foot-con {
        flex-direction: row;
        align-items: flex-start;
    }

    .footer-contact p {
        font-size: 14px;
    }
}

.footer-logo {
    margin-top: 20px;
    text-align: center;
}

.footer-logo img {
    width: 200px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
}

.footer-bottom a {
    color: #aaa;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 1440px) {}

@media (max-width: 1024px) {
    .footer-container {
        /* max-width: 900px; */
        padding: 0 30px;
    }

    .footer-newsletter h3 {
        font-size: 20px;
    }

    .newsletter-form input {
        max-width: 200px;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 14px;
    }

    .footer-logo {
        margin-top: 3%;
        text-align-last: center;
    }

    .footer-logo img {
        width: 80px;
    }

}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: row;
        padding: 0 20px;
        gap: 30px;
    }

    .footer-logo img {
        width: 80px;
        justify-content: center;
    }

    .footer-column {
        width: 100%;
        max-width: 400px;
    }

    .footer-newsletter h3 {
        font-size: 18px;
    }

    .newsletter-form {
        justify-content: center;
    }

    .newsletter-form input {
        max-width: 100%;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        /* justify-content: center; */
        gap: 10px;
    }

    .footer-links li {
        margin: 0 10px;
        font-size: 0.8rem;

    }

    .footer-contact p {
        font-size: 0.8rem;
    }

    .footer-logo {
        margin-top: 35%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0;
    }

    .footer-container {
        padding: 0 15px;
        gap: 20px;
        flex-direction: column;
    }

    .footer-newsletter h3 {
        font-size: 16px;
    }

    .newsletter-form input {
        padding: 8px;
        font-size: 12px;
    }

    .newsletter-form button {
        padding: 8px;
    }

    .newsletter-form button svg {
        width: 16px;
        height: 16px;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 12px;
    }

    .footer-colLeft {
        width: 50%;
        position: relative;
    }

    .footer-logo {
        margin-top: 10%;
    }

    .footer-links {
        display: inline;
        width: 50%;
        position: absolute;
        left: 50%;
    }

    .footer-logo img {
        width: 100px;
    }

    .footer-bottom {
        text-align: center;
        padding: 5px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/*****************************************-------------------BRANDS----------------------******************************************************/
/*****************************************-------------------BRANDS----------------------******************************************************/
#stickyBackground {
    background: fixed;
    background-position: sticky;
    background-color: #f4f4f4;
}

.br-sec1 {
    display: none;
    transition: all 0.3s ease-in-out;
}

.tab-btn.active-glow {
    font-size: 1.5rem;
    /* or whatever size you like */
    color: #000000;
    /* glowing color */
    /* text-shadow: 0 0 10px #ffb300, 0 0 20px #ffb300; */
    transition: all 0.3s ease-in-out;
}

.b-over1 {
    top: 30%;
    left: 6%;
    width: 200px;
}

.b-over11 {
    bottom: 48%;
    right: 10%;
    width: 200px;
}

.b-over2 {
    transform: rotate(180deg);
    top: -16%;
    left: 10%;
    width: 200px;
}

.b-over21 {
    transform: rotate(180deg);
    top: -12%;
    right: 6%;
    width: 250px;
}

.b-over22 {
    transform: rotate(180deg);
    bottom: -5%;
    right: 2%;
    width: 200px;
    height: 200px;
}

.b-over3 {
    top: -14%;
    left: 8%;
    width: 200px;
}

.b-over31 {
    top: 15%;
    right: 15%;
    width: 200px;
}

.b-over4 {
    top: 40%;
    left: 2%;
    width: 220px;
}

.b-over41 {
    top: -50%;
    right: 20%;
    width: 150px;
}

.brand-contain {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 11% 10%;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

/* Left Section */
.brand-left {
    flex: 1 1 40%;
    padding-right: 20px;
    margin-top: 5rem;
}

.brand-left h1 {
    font-size: 52px;
    font-weight: bold;
    line-height: 1.2;
}

.brand-left h1 .h1-span {
    color: #bf1e2e;
}

.brand-left p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.scroll-indicator {
    margin-top: 40px;
    font-size: 14px;
    color: #888;
    text-align: left;
}

.scroll-indicator i {
    font-size: 22px;
    display: block;
    margin-bottom: 5px;
}

/* Right Section */
.brand-right {
    flex: 1 1 50%;
    margin-top: 2rem;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
    margin-top: 60px;
    justify-items: anchor-center;
}

.brand-grid img {
    width: 100%;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-grid img:hover {
    transform: scale(1.05);
}

.brand-arti {
    top: 10%;
    left: 20%;
}

/* Social Icons */
.social-icons {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
}

.social-icons a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
}

.social-icons a:hover {
    color: #bf1e2e;
}

.brandover-1,
.brandover-2,
.brandover-3,
.brandover-4,
.b-over1,
.b-over11,
.b-over2,
.b-over21,
.b-over22,
.b-over3,
.b-over31,
.b-over4,
.b-over5 {
    position: absolute;
    z-index: 1;
    /* width: 150px; */
}

.brandover-1 {
    width: 208.93px;
    height: 208.93px;
    transform: rotate(50deg);
    top: -3%;
    left: -2%;
}

.brandover-2 {
    width: 208.93px;
    height: 208.93px;
    top: -10%;
    left: -5%;
}

.brand-scroll {
    justify-items: center;
    justify-content: center;
}

.brand-head {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    /* Prevent it from interfering with clicks */
    z-index: 1;
    /* Bring in front of backgrounds but behind main content */
}

.brandover-3 {
    width: 208.93px;
    height: 208.93px;
    bottom: -10%;
    left: 5%;
    z-index: -5;
}

.brandover-4 {
    width: 208.93px;
    height: 208.93px;
    bottom: -9%;
    right: 10%;
    z-index: -5;
}

/* Brand Section-1 Start */

.br-sec1 {
    width: 100%;
    height: auto;
    padding-top: 80px;
}

.brand-tabs-section {
    padding: 5% 0;
    text-align: center;
    position: relative;
    top: 50%;
    left: 0;
}

.brand-logos-wrapper {
    width: 100%;
    overflow-x: auto;
    /* scroll-behavior: smooth; */
    padding: 20px 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.brand-logos {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 10px;
    padding-left: 50vw;
    /* start from half of screen */
    transition: transform 0.5s ease-in-out;
}

.brand-logos::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar on mobile */
}

.tab-btn {
    flex: 0 0 auto;
    margin: 0 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    transform: scale(1.2);
    /* box-shadow: 0 0 15px #ff9800; */
}

.tab-slide {
    flex: 0 0 auto;
    margin: 0 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-slide.active {
    transform: scale(1.2);
    /* box-shadow: 0 0 15px #ff9800; */
}

.brand-logos img {
    width: 180px;
    height: 60px;
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.brand-logos img.active {
    opacity: 1;
    /* border-bottom: 2px solid #000; */
}

.brand-logos img.active:hover {
    opacity: 1;
    color: #000;
}

.brand-description {
    max-width: 720px;
    margin: 0 auto 4rem;
    font-size: 14px;
    color: #333;
    padding: 25px 50px;
}

.tab-content-container {
    display: flex;
    justify-content: center;
}

.tab-content {
    display: none;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.tab-content.active {
    display: flex;
}

.card-contain {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 5% 10%;
}

.card {
    width: 470px;
    height: 405px;
    background: #d9d9d9;
    border-radius: 12px;
    z-index: 2;
    transition: 0.3s ease;
}

.card-div {
    width: 468px;
    height: 185px;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

/* Scroll Button */
.scroll-button {
    position: relative;
    bottom: 10px;
    right: 10px;
    text-align: center;
    font-size: 12px;
}

.scroll-button img.scroll-img {
    width: 30px;
    margin-bottom: 5px;
}

/* Tablet */
@media (max-width: 1024px) {
    .brandover-4 {
        left: 65%;
        width: 220px;
    }

    .brandover-1 {
        top: -5%;
        left: -7%;
    }

    .brand-left h1 {
        font-size: 42px;
        text-align: left;
    }

    .brand-left p {
        font-size: 16px;
        text-align: left;
    }

    .brand-grid {
        gap: 20px 0;
        justify-content: center;
    }

    .brand-logos img {
        width: 150px;
        height: 50px;
    }

    .tab-content {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        height: auto;
    }

    .card-div {
        width: 90%;
        height: auto;
    }

    .social-icons {
        left: 10px;
        bottom: 20px;
    }
}

/* Tablet */
/* Mobile */
@media (max-width: 784px) {
    .brandover-4 {
        left: 65%;
        width: 220px;
    }

    .brand-left h1 {
        font-size: 42px;
        text-align: center;
    }

    .brand-left p {
        font-size: 16px;
        text-align: center;
    }

    .brand-grid {
        gap: 20px 0;
        justify-content: center;
    }

    .brand-logos img {
        width: 150px;
        height: 50px;
    }

    .brandover-1 {
        top: 2%;
        left: -8%;
    }

    .tab-content {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        height: auto;
    }

    .card-div {
        width: 90%;
        height: auto;
    }

    .social-icons {
        left: 10px;
        bottom: 20px;
    }
}

/* Mobile */
/* Small */
@media (max-width: 480px) {
    .brand-left h1 {
        font-size: 30px;
    }

    .brand-left p {
        font-size: 14px;
        padding: 0 10px;
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .brand-contain {
        position: none;
        display: flex;
        flex-direction: column;
    }

    .b-over1 {
        top: 12%;
        left: -5%;
        width: 100px;
    }

    .b-over11 {
        bottom: 35%;
        right: 5%;
        width: 100px;
        transform: rotate(45deg);
    }

    .b-over2 {
        transform: rotate(180deg);
        top: -10%;
        left: -5%;
        width: 100px;
    }

    .b-over21 {
        transform: rotate(180deg);
        top: -12%;
        right: 6%;
        width: 100px;
    }

    .b-over22 {
        transform: rotate(180deg);
        bottom: 30%;
        right: 2%;
        width: 140px;
        height: 100px;
    }

    .b-over3 {
        top: -14%;
        left: 8%;
        width: 100px;
    }

    .b-over31 {
        top: 15%;
        right: 1%;
        width: 100px;
    }

    .b-over4 {
        top: 40%;
        left: 2%;
        width: 100px;
    }

    .brandover-1 {
        width: 150px;
        height: 150px;
        transform: rotate(50deg);
    }

    .brandover-3 {
        width: 140px;
        height: 140px;
        top: 40%;
        left: -10%;
    }

    .brandover-4 {
        width: 100px;
        height: 100px;
        bottom: -5%;
        right: 37%;
    }

    .brand-logos img {
        width: 130px;
        height: 40px;
    }

    .brand-logos {
        padding-left: 22%;
    }

    .scroll-button {
        left: 45%;
    }

    .scroll-button p {
        font-size: 12px;
    }

    .scroll-button .scroll-img {
        width: 16px;
    }

    .card-contain {
        padding: 10px;
        align-items: center;
        display: flex;
        flex-direction: column;
        /* Center the cards if needed */
    }

    .card {
        width: 100%;
        height: auto;
    }

    .card-div {
        width: 100%;
        height: auto;
    }

    .brand-description {
        padding: 25px 20px;
    }

    .social-icons {
        width: 10%;
        height: auto;
        position: absolute;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
        transform: none;
        top: -10%;
    }

    .social-icons img {
        width: 18px;
        height: 18px;
    }
}

/* Small */

/*****************************************-------------------BRANDS Ends----------------------******************************************************/

/*****************************************-------------------ABOUT Start----------------------******************************************************/
.about-hd,
.contact-hd,
.products-hd,
.blog-hd,
.marbles-hd,
.privacy-hd {
    width: 100%;
    height: 100%;
    position: relative;
}

.ab-head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/pinkBlue.jpg");
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.ab-content,
.ct-content,
.bg-content,
.pr-content {
    text-align: center;
    padding: 10% 5%;
    position: relative;
    z-index: 1;
}

.pd-content,
.mb-content {
    text-align: center;
    padding: 220px 20px;
    position: relative;
    z-index: 1;
}

/* h2 {
  font-size: 3rem;
  color: #000;
} */
.bg-content,
.ab-content,
.pd-content,
.ct-content,
.pr-content p {
    font-size: 1.2rem;
    color: #333;
    text-transform: uppercase;
}

.abmain-sec,
.promain-sec,
.privacy-sec,
.marble-sec {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 5% 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.ab-left {
    flex: 1 1 500px;
}

.main-img {
    flex: 1 1 400px;
    text-align: center;
}

.main-img img {
    max-width: 100%;

    padding: 20px;
    border-radius: 10px;
}

.main-text {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    padding: 20px;
}

.main-text span {
    font-weight: bold;
    color: #000;
    display: block;
    font-size: 30px;
    margin-bottom: 10px;
}

/* Responsive Media Queries */
@media screen and (max-width: 768px) {
    .abmain-sec {
        flex-direction: column;
        text-align: center;
    }

    .ab-left,
    .main-img {
        flex: 1 1 100%;
    }

    .team-head h1 {
        font-size: 2rem;
    }

    .ab-content p {
        font-size: 1rem;
    }

    .main-text {
        font-size: 1rem;
    }
}

.ab-team {
    width: 100%;
    height: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background-color: #f7f7f7; */
    text-align: center;
}

.team-head h1 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 30px;
}

.team-cards {
    display: flex;
    justify-content: center;
    /* flex-wrap: wrap; */
    gap: 3%;
}

.about-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* padding: 20px; */
    /* width: 300px; */
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-top: 15px;
}

/* Responsive for tablets and mobile */
@media screen and (max-width: 768px) {
    .team-cards {
        flex-direction: column;
        align-items: center;
    }

    .about-card {
        width: 90%;
        margin-bottom: 10px;
    }

    .team-head h1 {
        font-size: 2rem;
    }
}


.offerings-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 5% 10%;
    background-color: #f9f9f9;
    border-radius: 12px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

/* .offerings-column {
    flex: 1 1 45%;
  min-width: 280px;
} */

.offerings-column h3 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #222;
}

.offerings-column ul {
    list-style: none;
    padding: 0;
}

.offerings-column li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
}

.offerings-column li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00796B;
    font-weight: bold;
}

.offerings-column p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .offerings-container {
        flex-direction: column;
    }

    .offerings-column {
        flex: 1 1 100%;
    }
}

/* Client Start*/

.client {
    width: 100%;
    padding: 60px 20px;
    background-color: #f4f4f4;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    box-shadow: 0 7px 10px 10px #86858538;
    overflow: hidden;
}

.client-head,
.client-text {
    text-align: center;
}

.client-head h6 {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.client-text p {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.client-slider {
    overflow: hidden;
}

.client-slide-track {
    display: flex;
    transition: transform 0.5s ease;
}

.client-slide {
    flex: 0 0 250px;
    margin-right: 20px;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cli-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background-color: #ccc;
    padding: 10px;
}

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* Tablet view: 2 clients */
@media (max-width: 768px) {
    .client-slide {
        flex: 0 0 45%;
        /* Show 2 items */
    }

    .client-head h6 {
        font-size: 1.5rem;
    }
}

/* Mobile view: 1 client */
@media (max-width: 480px) {
    .client-slide {
        flex: 0 0 100%;
        /* Show 1 item */
        margin-right: 0;
    }

    .cli-img {
        padding: 8px;
    }
}


.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.slider-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 1.2%;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    width: 60px;

    transition: background 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev,
.slider-btn.next {
    position: static;
    transform: none;
}

/* Tablet view (768px and below) */

@media (max-width: 1024px) {
    .slider-btn {

        padding: 12px 1.9%;
    }
}

@media (max-width: 768px) {
    .slider-controls {
        gap: 15px;
        margin-top: 16px;
    }

    .slider-btn {
        padding: 14px 5px;
        font-size: 16px;
    }
}

/* Mobile view (480px and below) */
@media (max-width: 480px) {
    .slider-controls {
        gap: 10px;
        margin-top: 12px;
    }

    .slider-btn {

        padding: 5%;

        /* font-size: 14px; */
    }

}


/* Client End*/
/*****************************************-------------------ABOUT Ends----------------------******************************************************/
/*****************************************-------------------Contact Start----------------------******************************************************/
/* Contact Head */
/*****************************************-------------------Contact Start----------------------******************************************************/
/* Contact Head */
.ctmain-sec {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 4% 10%;

}

/* Background Image Container */
.ct-head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/pinkBlue.jpg");
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.contact-left {
    flex: 1;
    display: flex;
    width: 100%;
    /* height: 100%; */
    background-image: url("../img/bw3-granite.jpg");
    border-top-left-radius: 20%;
    border-bottom-right-radius: 20%;
    background-size: cover;
    background-position: center;
    position: sticky;
    top: 0;
}

.contact-left img {
    width: 90%;
    height: auto;
    max-height: 90%;
    object-fit: cover;
    border-radius: 20px;
}

.contact-right {
    flex: 2;
    padding: 20px;
    /* padding: 40px; */
    overflow-y: auto;
    background-color: #F4F4F4;
}

.contact-head h1 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

input,
textarea,
select {
    padding: 10px 12px;
    border: none;
    border-bottom: 2px solid #aaa;
    font-size: 14px;
    background: transparent;
    outline: none;
}

button {
    width: fit-content;
    background-color: #000;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #222;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 40px 15px;
        border-radius: 30px;
        flex-direction: column;
    }

    .contact-left {
        position: relative;
        height: auto;
    }

    .contact-left img {
        width: 100%;
        max-height: 300px;
    }

    .contact-right {
        padding: 20px;
    }

    .contact-head h1 {
        font-size: 2rem;
    }

    .contact-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {


    .ctmain-sec {
        display: flex;
        width: 100%;
        overflow: hidden;
        padding: 4% 5%;
    }

    .contact-form {
        padding: 10%;
    }

    .form-navigation {
        gap: 10px;
    }
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Client Logo Grid */
.client-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 20px 0;
}

.cli-img {
    width: 120px;
    height: 120px;
    background-color: #a09393;
    padding: 25px;
    border-radius: 10px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {


    .cli-img {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
}

@media (max-width: 480px) {

    .ab-content,
    .ct-content {
        padding: 20%;
    }

    .cli-img {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .contact-left {
        width: 100%;
        height: auto;
        padding: 30%;
    }
}

.contact-dt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}

/* Info Box */
.info {
    flex: 1 1 100%;
    padding: 20px 10px;
    border: 12px solid #fff;
    background-color: #e7e7e7b8;
    border-radius: 10px;
}

.info h3 {
    color: #BF1E2E;
    font-size: 24px;
    padding: 20px 0 0 0px;
}

.info h5 {
    color: #000000;
    font-size: 18px;
    margin-bottom: 20px;
}

.info p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-left: 10px;
}

/* Contact Items */
.footer-column.footer-contact .foot-con {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    /* margin-bottom: 15px; */
}

.foot-con img {
    width: 20px;
    height: 20px;
}

/* Media Queries for Responsive Layout */
/* @media (min-width: 768px) {
    .contact-dt {
        flex-direction: row;
    }

    .contact-map,
    .info {
        flex: 1 1 48%;
    }

    .contact-map iframe {
        height: 100%;
        min-height: 300px;
    }
}
*/
@media (max-width: 480px) {
    .info h3 {
        font-size: 20px;
    }

    .info h5 {
        font-size: 16px;
    }

    .info p {
        font-size: 14px;
    }

    .foot-con img {
        width: 18px;
        height: 18px;
    }
}

/*  */
/* Contact Form */
.contact-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f3f3f3;
    border-radius: 10px;
    box-sizing: border-box;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input,
select,
textarea {
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    margin: 10px 0;
}

textarea {
    resize: vertical;
}

button {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #bf1e2e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;

}

button:hover {
    background-color: #a91625;
}

/* Mobile responsiveness */

@media (max-width: 600px) {
    .ctmain-sec {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    button {
        width: 100%;
        text-align: center;
    }
}

/* Contact Form */

/*  FAQ */
.faq-section {
    width: 100%;
    margin: 20px 0;
    padding: 5vh 20vh;
    /* background-color: #e7e7e7b8; */
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 30px;
}

details {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

summary {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

details[open] summary {
    color: #c70000;
}

details p {
    margin-top: 10px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 480px) {
    .faq-section {
        margin-top: 0px;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 20px 20px;
        margin-top: 20px;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    details {
        padding: 15px;
    }

    summary {
        font-size: 1rem;
    }
}

/* FAQ */
/*****************************************-------------------Contact End----------------------******************************************************/
/*****************************************-------------------Product Start----------------------******************************************************/
.pd-head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/pinkBlue.jpg");
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* Product Section */
.pro-sec {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 60px 40px; */
    height: 100%;
    /* min-height: 600px; */
    /* Minimum height to accommodate at least 2 rows of 300px images + gaps */
    box-sizing: border-box;
    /* Include padding in height calculation */
}

.pro-text {
    text-align: center;
    padding: 30px 30px;
    margin-bottom: 20px;
    font-size: 3rem;
    /* Space between text and images */
}

.image-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 5%;
    width: 100%;
    height: 100%;
    /* Prevent overflow from breaking layout */
}

.image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.03);
}

/* Responsive for tablets */
@media (max-width: 768px) {
    .product-sec {
        padding: 40px 20px;
        min-height: 400px;
        /* Adjust for 2 columns */
    }

    .pro-text {
        padding: 20px;
    }

    .promain-sec {
        flex-direction: column;
        padding: 0px 20px;
    }

    .pro-left,
    .product-img {
        flex: 1 1 100%;
    }

    .pro-img {
        height: auto;
    }
}


/* Responsive for mobile */
@media (max-width: 480px) {
    .product-sec {
        padding: 20px 10px;
        min-height: 300px;
        /* Adjust for 1 column */
    }

    .promain-sec {
        padding: 0;
        max-width: 100%;
    }

    /* .pd-content { */
    /* padding: 80px 20px; */
    /* } */

    .pro-text {
        padding: 15px;
        font-size: 30px;
    }

    .pro-img {
        border-radius: 10px;
        width: 100%;
        height: 100%;
    }

    .image-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .image-container img {
        height: 250px;
        /* Reduce height on mobile for better fit */
    }
}

/* Content Image Start */

/* .product-img img { 
  width: 100%;
  height: auto;
  border-radius: 10px;
  }*/
.pro-left {
    flex: 1 1 500px;
}

.product-img {
    flex: 1 1 400px;
    text-align: center;
}

.pro-img {
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

/* Content Image End */

/* Product Slider */
.similar-products {
    padding: 5%;
    text-align: center;
}

.similar-products h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.similar-products h2 span {
    font-weight: 300;
}

.product-slider-container {
    position: relative;
    /* max-width: 1200px; */
    margin: 0 auto;
    overflow: hidden;
}

.product-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.product-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: center;
}

.product-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 6px;
}

.product-slide p {
    margin-top: 10px;
    font-weight: bold;
}

/* Show 3 slides on desktop */
@media (min-width: 1024px) {
    .product-slide {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

/* Show 2 slides on tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .product-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Default to 1 slide on mobile and smaller */
@media (max-width: 767px) {
    .product-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.product-slider-container .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(14, 13, 13);
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    width: 60px;
    /* height: 60px; */
    border-radius: 50%;
}

.product-slider-container .slider-btn.prev {
    left: 10px;
}

.product-slider-container .slider-btn.next {
    right: 10px;
}

/* Ensure buttons are clickable and visible */
.slider-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/*****************************************-------------------Product End----------------------******************************************************/
/*****************************************-------------------Blog Start----------------------******************************************************/
.bg-head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/pinkBlue.jpg");
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.blogpg-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 5%;
    width: 100%;
    height: 100%;
}

.blogpg-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.b-log h6 {
    color: #4b4a4a;
}

.b-log h1 {
    text-align: left;
    color: #333;
}

.b-log p {
    color: #272727;
    padding: 10px 0;
    font-size: 14px;
}

.image-container img:hover {
    transform: scale(1.03);
}

/* Extra Large Screens (Desktops) */
@media (max-width: 1200px) {
    .blogpg-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets and small laptops */
@media (max-width: 992px) {
    .blogpg-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile screens */
@media (max-width: 480px) {
    .b-log h1 {
        text-align: left;
        color: #333;
        font-size: 1.7rem;
    }

    .b-log p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .blogpg-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .blogpg-container img {
        height: 220px;
    }
}


/*****************************************-------------------Blog End----------------------******************************************************/
/*****************************************-------------------Marbles Page Start----------------------******************************************************/
.mb-head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/pinkBlue.jpg");
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.marble-sec {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 4% 0;
}


.marble-contain {
    width: 100%;
    padding: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marble-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.card__title h2 {
    font-size: 1.3rem;
    font-family: var(--font-title);
    color: #fff;
    line-height: 1.1;
    text-align: left;
}

.card__description p {
    font-family: var(--font-text);
    font-size: 0.8rem;
    line-height: 1.5;
    color: #e9e6e6;
}

.flow>*+* {
    margin-top: var(--flow-space, 1em);
}

/* CARD COMPONENT */
.card {
    position: relative;
    /* Make the card a positioning context */
    display: grid;
    place-items: center;
    width: 100%;
    /* max-width: 16.875rem; */
    /* height: auto; */
    overflow: hidden;
    border-radius: 0.625rem;
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

.card>* {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.card__background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* behind the overlay content */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__content {
    position: relative;
    z-index: 2;
    /* make sure this sits above the image */
    --flow-space: 0.9375rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: flex-end;
    height: 55%;
    padding: 12% 1.25rem 1.875rem;
    background: linear-gradient(180deg,
            hsla(0, 0%, 0%, 0) 0%,
            hsla(0, 0%, 0%, 0.3) 10%,
            hsl(0, 0%, 0%) 100%);
}

.card__content--container {
    --flow-space: 1.25rem;
}

.card__description {
    color: #fff;
}

.card__title {
    position: relative;
    width: fit-content;
    width: -moz-fit-content;
    color: #fff;
    /* Prefijo necesario para Firefox  */
}

.card__title::after {
    content: "";
    position: absolute;
    height: 0.3125rem;
    width: calc(100% + 1.25rem);
    bottom: calc((1.25rem - 0.5rem) * -1);
    left: -1.25rem;
    background-color: var(--brand-color);
}

.card__button {
    padding: 0.75em 1.6em;
    width: fit-content;
    width: -moz-fit-content;
    /* Prefijo necesario para Firefox  */
    font-variant: small-caps;
    font-weight: bold;
    border-radius: 0.45em;
    border: none;
    background-color: var(--brand-color);
    font-family: var(--font-title);
    font-size: 1.125rem;
    color: var(--black);
}

.card__button:focus {
    outline: 2px solid black;
    outline-offset: -5px;
}

@media (any-hover: hover) and (any-pointer: fine) {
    .card__content {
        transform: translateY(62%);
        transition: transform 500ms ease-out;
        transition-delay: 500ms;
    }

    .card__title::after {
        opacity: 0;
        transform: scaleX(0);
        transition: opacity 1000ms ease-in, transform 500ms ease-out;
        transition-delay: 500ms;
        transform-origin: right;
    }

    .card__background {
        transition: transform 500ms ease-in;
    }

    .card__content--container> :not(.card__title),
    .card__button {
        opacity: 0;
        transition: transform 500ms ease-out, opacity 500ms ease-out;
    }

    .card:hover,
    .card:focus-within {
        transform: scale(1.05);
        transition: transform 500ms ease-in;
    }

    .card:hover .card__content,
    .card:focus-within .card__content {
        transform: translateY(0);
        transition: transform 500ms ease-in;
    }

    .card:focus-within .card__content {
        transition-duration: 0ms;
    }

    .card:hover .card__background,
    .card:focus-within .card__background {
        transform: scale(1.3);
    }

    .card:hover .card__content--container> :not(.card__title),
    .card:hover .card__button,
    .card:focus-within .card__content--container> :not(.card__title),
    .card:focus-within .card__button {
        opacity: 1;
        transition: opacity 500ms ease-in;
        transition-delay: 1000ms;
    }

    .card:hover .card__title::after,
    .card:focus-within .card__title::after {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: left;
        transition: opacity 500ms ease-in, transform 500ms ease-in;
        transition-delay: 500ms;
    }
}

@media (hover: none) and (pointer: coarse) {
    .card__content {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive media queries for small to large screens */
@media (max-width: 1024px) {
    .marble-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive media queries for small to large screens */
@media (max-width: 768px) {
    .card {
        max-width: 90vw;
        aspect-ratio: 3 / 4;
    }

    .card__content {
        padding: 8% 1rem 1.25rem;
    }

    .card__title {
        font-size: 1rem;
    }

    .card__button {
        font-size: 0.95rem;
        padding: 0.5em 1em;
    }

    .marble-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .card {
        max-width: 100%;
        aspect-ratio: 3/ 4;
    }

    .card__content {
        padding: 10% 0.75rem 1rem;
    }

    .card__title {
        font-size: 0.95rem;
    }

    .card__button {
        font-size: 0.875rem;
        padding: 0.4em 0.9em;
    }

    .marble-col {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*****************************************-------------------Marbles Page End----------------------******************************************************/
/*****************************************-------------------Privacy Page End----------------------******************************************************/
.privacy-container {
    width: 100%;
    margin: auto;
    padding: 30px 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.pr-head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/pinkBlue.jpg");
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.privacy-sec h1 {
    text-align: center;
    color: #333;
}

.accordion {
    margin-top: 30px;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.accordion-header {
    background-color: #f2f2f2;
    padding: 15px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-body {
    display: none;
    padding: 15px;
    background-color: #fff;
    line-height: 1.6;
}

.accordion-body ul {
    padding: 0 5%;
}

@media (max-width: 600px) {
    .container {
        padding: 20px 10px;
    }
}

/* *********************************-------------Marbles-PG Start------------**************************************** */

/* Main Container */
.marble-detail {
    display: flex;
    align-items: stretch;
    /* Make children equal height if possible */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: 500px;
    /* Adjust as needed */
    overflow: hidden;
    flex-wrap: wrap;
    padding: 6% 5%;
}

/* Left Section (Semi-Circle Image) */
.marble-left {
    flex: 1 1 40%;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Create a semi-circle by rounding only the right side */
.semi-circle {
    width: 100%;
    height: 100%;
    /* Using large radius on top-right and bottom-right gives a half circle shape */
    border-top-right-radius: 250px;
    border-bottom-right-radius: 250px;
    overflow: hidden;
    background-color: #eee;
    display: flex;
    justify-content: flex-start;
    /* Align image so that only left side is visible */
    align-items: center;
}

.semi-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Translate the image to shift its center toward the left */
    /* transform: translateX(-25%); */
}

/* Right Section (Text Content) */
.marble-right {
    flex: 1 1 60%;
    min-width: 280px;
    padding: 30px;
    overflow-y: auto;
}

.marble-right h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #0a083a;
    text-align: left;
}

.marble-right h2 {
    margin-top: 20px;
    font-size: 20px;
    color: #0a083a;
}

.marble-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

/* Responsive Styling */

/* Tablets and small laptops */
@media (max-width: 768px) {
    .marble-detail {
        flex-direction: column;
    }

    .marble-left,
    .marble-right {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .semi-circle {
        width: 20%;
        height: 20%;
        border-top-right-radius: 200px;
        border-bottom-right-radius: 200px;
    }

    .semi-circle img {
        transform: translateX(-0%);
    }

    .marble-right {
        padding: 20px;
        text-align: center;
    }

    .marble-right h1 {
        font-size: 24px;
    }

    .marble-right p {
        font-size: 15px;
    }
}

/* Mobiles */
@media (max-width: 480px) {
    .semi-circle {
        margin-top: 15%;
        width: 100%;
        height: 50%;
        border-top-right-radius: 160px;
        border-bottom-right-radius: 160px;
    }

    .marble-right h1 {
        font-size: 20px;
    }

    .marble-right p {
        font-size: 0.9rem;
        text-align: justify;
    }
}

.product-specs {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.spec-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

.spec-group label {
    flex: 0 0 100px;
    /* adjust label width as needed */
    font-size: 16px;
    font-weight: bold;
    color: #0a083a;
}

.spec-group span {
    flex: 1;
    font-size: 16px;
    color: #333;
    /* Remove any borders/outlines if these are in an input, but here they're static text */
}

/* Responsive behavior */
@media (max-width: 480px) {
    .spec-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .spec-group label {
        margin-bottom: 5px;
        flex: none;
    }
}

/* *********************************-------------Marbles-PG Start------------**************************************** */