/* =================================================================== */
/* FINAL, CORRECTED AND CLEANED STYLESHEET */
/* =================================================================== */

/* General Body and Typography */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #374151;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.cursor-pointer {
    cursor: pointer;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
    /* STICKY HEADER STYLES */
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
}

.main-nav {
    display: none;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.main-nav a {
    color: #4b5563;
    text-decoration: none;
    margin: 0 0.75rem;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 0.9rem;
}

.main-nav a:hover {
    color: #111827;
}

.diwali-link {
    position: relative;
    color: #00A99D;
    font-weight: 600;
}

.diwali-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #00A99D;
    border-radius: 50%;
}

.header-actions .enquire-now-btn {
    background-color: #1f2937;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.header-actions .enquire-now-btn:hover {
    background-color: #374151;
}

.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.5rem;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.mobile-menu a:hover {
    color: #111827;
}

/* --- START OF CORRECTED HERO SLIDER SECTION --- */

/* These universal styles apply to ALL screen sizes */
.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    cursor: pointer;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#slide1 { background-image: url('./images/Slider/1.jpg'); }
#slide2 { background-image: url('./images/Slider/2.jpg'); }
#slide3 { background-image: url('./images/Slider/3.jpg'); }


/* Mobile Styles (Default) */
@media (min-width: 300px) and (max-width: 550px) {
.hero-section {
    height: 37vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}
}

@media (min-width: 550px) and (max-width: 767px) {
.hero-section {
    height: 55vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1249px) {
    .hero-section {
    height: 70vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}
}

/* Desktop Styles */
@media (min-width: 1250px) {
    .hero-section {
        height: 117vh;
    
    width: 100%;
    overflow: hidden;
    position: relative;
    
    }
}
/* --- END OF CORRECTED HERO SLIDER SECTION --- */

/* Common Section Styles */
.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}
.section-title-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b7280;
}
.section-subtitle {
    color: #6b7280;
    margin-bottom: 1.5rem;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.section-header-link {
    color: #0d9488;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}
.section-header-link:hover {
    text-decoration: underline;
}
.featured-clients, .gift-section, .view-collection-section, .featured-products-section, .about-section, .enquiry-section {
    padding: 2rem 0;
}
.featured-clients {
    text-align: center;
}
.client-logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), #000 10%, #000 90%, rgba(0,0,0,0));
    mask-image: linear-gradient(to right, rgba(0,0,0,0), #000 10%, #000 90%, rgba(0,0,0,0));
}
.client-logo-track {
    display: flex;
    gap: 2rem;
    width: calc(140px * 10);
    animation: scroll 15s linear infinite;
}
.client-logo {
    height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.client-logo:hover {
    filter: grayscale(0%);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-140px * 5)); }
}
.gift-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1024px;
    margin: auto;
}
.product-card {
    text-align: center;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.product-card-img {
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}
.product-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}
.product-card-desc {
    color: #6b7280;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}
.about-banner, .enquiry-banner {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}
.about-banner img, .enquiry-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}
.about-content {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}
.about-content .section-title {
    text-align: center;
    margin-bottom: 1rem;
}
.about-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: center;
}
.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}
.enquiry-form-container {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-sizing: border-box;
    font-size: 0.9rem;
}
.form-phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
}
.country-code-dropdown {
    padding: 0.75rem;
    background-color: #f3f4f6;
    border-right: 1px solid #d1d5db;
    font-size: 0.9rem;
}
.form-input-phone {
    width: 100%;
    padding: 0.75rem;
    border: none;
    outline: none;
    font-size: 0.9rem;
}
.submit-button {
    width: 100%;
    background-color: #1f2937;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}
.submit-button:hover {
    background-color: #374151;
}
.collection-slider-container {
    position: relative;
}
.collection-slider {
    overflow: hidden;
}
.collection-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
}
.collection-slide {
   flex: 0 0 calc(33.333% - 0.666rem);

    
    
}
.collection-slide img {
border-radius: 0.5rem;
width: 100%; 
height: auto; 
aspect-ratio: 1 / 1; 
 object-fit: cover;
}
.collection-slide-caption {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.collection-slide-caption img {
    border-radius: 0.25rem;
    width: 24px;
    height: 24px;
    margin-bottom: 0;
}
.collection-slide-caption h3 {
    font-weight: 600;
    font-size: 1rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    border: 1px solid #e5e7eb;
}
.slider-nav:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
.slider-nav-left { left: -18px; }
.slider-nav-right { right: -18px; }
.featured-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}
.featured-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    max-height: 500px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.featured-product-card {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
}

.featured-product-card img {
    border-radius: 0.375rem;
    margin-bottom: 0.75rem;
    width: 100%;
    max-height: 170px;
    object-fit: cover;
}
.product-number {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background-color: #111827;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}
.product-name {
    font-weight: 700;
    font-size: 0.9rem;
}
.product-price {
    color: #6b7280;
    font-size: 0.875rem;
}
.product-enquire-btn {
    display: inline-block;
    background-color: #91D9D1;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    margin-top: 0.75rem;
    transition: background-color 0.3s;
}
.product-enquire-btn:hover {
    background-color: #1f2937;
}
.testimonial-section {
    background-color: #f9fafb;
    padding: 2rem 0;
    overflow: hidden;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: #F3F4F6;
    padding: 0.75rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}
.marquee-content > span {
    display: inline-flex;
    align-items: center;
    margin: 0 1rem;
}
.circle-separator {
    width: 6px;
    height: 6px;
    background-color: #00A99D;
    border-radius: 50%;
    margin: 0 0.75rem;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.testimonial-container {
    text-align: center;
    margin-top: 2rem;
    position: relative;
}
.testimonial-slider-container {
    overflow: hidden;
    position: relative;
    max-width: 100%;
    margin: auto;
}
.testimonial-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}
.quote-icon {
    font-size: 3rem;
    color: #00A99D;
    line-height: 1;
}
.testimonial-text {
    font-size: 1rem;
    max-width: 100%;
    margin: 0 auto;
}
.testimonial-author {
    font-weight: 700;
    margin-top: 1rem;
    font-size: 0.9rem;
}
.verified-icon {
    color: #10b981;
}
.testimonial-company {
    color: #6b7280;
    font-size: 0.875rem;
}
.testimonial-rating {
    color: #f59e0b;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
}
.testimonial-nav-left { left: 0; }
.testimonial-nav-right { right: 0; }
.stats-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: left;
}
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
}
.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
}
.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
}
.site-footer {
    background-color: #1f2937;
    color: #d1d5db;
}
.site-footer .container {
    padding: 2rem 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}
.footer-subtitle {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li, .footer-contact li {
    margin-bottom: 0.5rem;
}
.footer-links a, .footer-contact {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
}
.footer-links a:hover {
    color: #ffffff;
}
.footer-contact i {
    margin-right: 0.5rem;
}
.newsletter-form {
    display: flex;
    margin-top: 0.75rem;
}
.newsletter-input {
    width: 100%;
    border-radius: 0.375rem 0 0 0.375rem;
    padding: 0.5rem;
    border: none;
    color: #1f2937;
    font-size: 0.875rem;
}
.newsletter-button {
    background-color: #14b8a6;
    color: white;
    font-weight: 700;
    border: none;
    padding: 0.5rem;
    border-radius: 0 0.375rem 0.375rem 0;
    cursor: pointer;
    font-size: 0.875rem;
}
.newsletter-button:hover {
    background-color: #0d9488;
}
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}
.social-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1rem;
}
.social-links a:hover {
    color: #ffffff;
}
.footer-bottom {
    border-top: 1px solid #4b5563;
    margin-top: 1.5rem;
    padding-top: 1rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #111827;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 1;
    text-decoration: none;
    z-index: 50;
}
.back-to-top:hover {
    transform: scale(1.1);
}

/* --- Responsive Design --- */
@media (max-width: 1023px) {
    .site-header {
        flex-wrap: nowrap;
    }
    .logo {
        order: 1;
        flex-grow: 0;
        text-align: left;
    }
    .mobile-menu-button {
        order: 2;
        margin-left: auto;
    }
    .header-actions {
        order: 3;
    }
}
@media (min-width: 320px) {
    .logo {
        font-size: 1.25rem;
    }
    .section-title {
        font-size: 1.125rem;
    }
    .section-title-large {
        font-size: 1.25rem;
    }
    .product-card-img {
        max-height: 150px;
    }
    .featured-product-card img {
        max-height: 120px;
    }
}
@media (min-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gift-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.25rem;
    }
    .section-title-large {
        font-size: 1.5rem;
    }
}
@media (min-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    .section-title-large {
        font-size: 1.875rem;
    }
    .featured-clients, .gift-section, .view-collection-section, .featured-products-section, .about-section, .enquiry-section {
        padding: 3rem 0;
    }
    .testimonial-section {
        padding: 3rem 0;
    }
    .gift-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .collection-slide {
        flex: 0 0 calc((100% / 2) - 1rem);
    }
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-content, .enquiry-form-container, .about-banner, .enquiry-banner {
        width: auto;
        max-width: none;
        margin: 0;
        aspect-ratio: auto;
        border: none;
        padding: 0;
    }
    .about-content {
        text-align: left;
    }
    .about-content .section-title, .about-content p {
        text-align: left;
    }
    .enquiry-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "form banner";
    }
    .enquiry-form-container {
        grid-area: form;
        text-align: left;
    }
    .enquiry-banner {
        grid-area: banner;
    }
    .testimonial-nav-left {
        left: 0.5rem;
    }
    .testimonial-nav-right {
        right: 0.5rem;
    }
    .product-card-img {
        max-height: 200px;
    }
    .featured-product-card img {
        max-height: 150px;
    }
    .about-banner img, .enquiry-banner img {
        max-height: 400px;
    }
}
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
    .mobile-menu-button {
        display: none;
    }
    .logo {
        font-size: 1.875rem;
    }
    .main-nav a {
        margin: 0 1rem;
        font-size: 1rem;
    }
    .header-actions .enquire-now-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    .featured-products-grid {
        grid-template-columns: 1fr 2fr;
    }
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .collection-slide {
        flex: 0 0 calc(20% - 0.8rem);;
    }
    .product-card-img {
        max-height: 250px;
    }
    .featured-product-card img {
        max-height: 200px;
    }
    .about-banner img, .enquiry-banner img {
        max-height: 450px;
    }
}
@media (min-width: 1200px) {
    .section-title {
        font-size: 1.875rem;
    }
    .section-title-large {
        font-size: 2.25rem;
    }
    .product-card-img {
        max-height: 300px;
    }
    .featured-product-card img {
        max-height: 250px;
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================================================================== */
/* "How It Works" Section Styles (Full-Width with Faded BACKGROUND) */
/* =================================================================== */

.how-it-works {
    padding-top: 3rem;
    padding-bottom: 3rem;
    /* This gradient fades the background color to white at the edges */
    background: linear-gradient(to right, 
        #ffffff 0%, 
        #f9fafb 15%, 
        #f9fafb 85%, 
        #ffffff 100%
    );
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

/* The container for the steps no longer has the fade effect */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.step-card {
    flex: 1;
    min-width: 220px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background-color: #ffffff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00A99D;
    margin-bottom: 0.75rem;
}

.step-description strong {
    font-weight: 600;
    color: #1f2937;
    display: block;
}

.step-description p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #d1d5db;
    margin-top: 3rem;
}

.mobile-arrow {
    display: none;
}

/* --- Responsive Styles for Mobile & Tablet --- */
@media (max-width: 992px) {
    /* On mobile, use a solid background color instead of a gradient */
    .how-it-works {
        background: #f9fafb;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .step-card {
        width: 100%;
        max-width: 400px;
    }
    
    .desktop-arrow {
        display: none;
    }
    
    .mobile-arrow {
        display: flex;
        margin-top: 0;
    }

    .steps-container .step-card:last-of-type ~ .step-arrow {
        display: none;
    }
}


.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.hidden {
    opacity: 0;
    pointer-events: none; /* Prevents interaction when hidden */
}

.lightbox-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.lightbox-overlay.hidden .lightbox-content {
    transform: scale(0.9);
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #9ca3af;
    cursor: pointer;
}

#form-messages {
    font-weight: 500;
}

.view-slider-container {
    position: relative;
}

.view-slider {
    overflow: hidden;
}

.view-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
}

.view-slide {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .view-slide {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (min-width: 1024px) {
    .view-slide {
        flex: 0 0 calc(33.333% - 0.666rem);
    }
}




.view-slide img {
    border-radius: 0.5rem;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; 
    object-fit: cover;
}

@media (min-width: 1024px) {
    .view-slide img {
        height: 450px;
    }
}

.view-slide-caption {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem; 
}

.view-slide-caption img {
    border-radius: 0.25rem;
    width: 24px;
    height: 24px;
}

.view-slide-caption h3 {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}
