@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Navbar container */
.navbar {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    /* Ensures navbar stays at top */
    z-index: 1000;
}

/* Logo Section */
.logo-section .logo {
    width: 60px;
    /* Adjusted size to look cleaner */
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #4b5563;
    /* Gray-600 */
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li a:hover {
    color: #f73266;

}

.nav-links li a.active {
    color:  #f73266;
   
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;

}

.btn-connexion {
    padding: 10px 25px;
    background-color: white;
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-connexion:hover {
    background-color: #d4af37;
    color: white;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    color: #000;
}

.cart-icon:hover {
    color: #f73266;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff3b30;
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px 20px;
    min-height: 100vh;
    margin-top: -85px;
    text-align: center;
    overflow: hidden;
}

/* Hero Slider Background */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroSliderEffect 18s linear infinite;
    transform: scale(1.1);
}

.slider-item:nth-child(2) { animation-delay: 6s; }
.slider-item:nth-child(3) { animation-delay: 12s; }

@keyframes heroSliderEffect {
    0% { opacity: 0; transform: scale(1.1); }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; transform: scale(1); }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65));
    z-index: 2;
}

/* Content Column */
.hero-content {
    position: relative;
    max-width: 100%;
    z-index: 10;
    padding-top: 3.5rem;
}

.hero-content h1 {
    font-size: clamp(42px, 8vw, 76px);
    line-height: 1.1;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-content .highlight {
    color: #d4af37; /* Gold accent on dark background */
    display: block;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 auto 40px auto;
    max-width: 600px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background-color: #ff6b81;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    width: fit-content;
}

.btn-primary:hover {
    background-color: #ff4757;
    transform: translateY(-2px);
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-secondary:hover {
    background-color: #fff9e6;
    transform: translateY(-2px);
}

/* Universe/Collection Section */
.universe-section {
    padding: 80px 50px;
    background-color: #fffcf8;
    /* Light cream background */
}

.universe-section h1 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 60px;
}

/* Grid Layout */
.universe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Empty State Styling */
.empty-universe-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

.empty-universe-card {
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    border: 1px solid #fceef2;
    animation: fadeInUp 0.8s ease-out forwards;
}

.empty-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe4e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(255, 107, 129, 0.1);
    animation: bounceIcon 3s ease-in-out infinite;
}

.empty-icon {
    font-size: 50px;
    color: #ff6b81;
}

.empty-universe-card h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.empty-universe-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.empty-loader {
    height: 4px;
    width: 120px;
    background: #f1f5f9;
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.empty-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ff6b81, transparent);
    animation: loaderMove 2s infinite linear;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes loaderMove {
    to { left: 100%; }
}

/* Universe Card */
.universe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.universe-card:hover {
    transform: translateY(-10px);
}

/* Card Header (Image Background) */
.card-header {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.card-header img {
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease;
}

/* Background Colors */
.bg-pink {
    background-color: #ffeef5;
}

.bg-orange {
    background-color: #fff5e6;
}

.bg-purple {
    background-color: #f5efff;
}

.bg-blue {
    background-color: #e6f5ff;
}

/* Card Body */
.card-body {
    padding: 24px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.card-body p {
    font-size: 14px;
    color: #888;
    margin-bottom: 0px;
}

/* Arrow Button */
.card-arrow-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d4af37;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0;
    /* Override generic button margin */
    padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.card-arrow-btn:hover {
    background-color: #c49f27;
    transform: scale(1.1);
    border: none;
    color: white;
}

/* Services Section */
.services-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Service Content Card */
.service-content-card {
    flex: 1;
    background-color: #fff0f3;
    /* Light pink bg */
    padding: 60px;
    border-radius: 30px;
    max-width: 600px;
}

.service-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #d4af37;
    color: #d4af37;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 24px;
    background: white;
}

.service-content-card h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-pink {
    color: #ff6b81;
    display: block;
}

.service-content-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Feature List */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #334155;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #d4af37;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

/* Service Image */
.service-image-container {
    flex: 1;
    height: 600px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Subtitle (Global) */
.section-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
    display: block;
}

/* Best Sellers Section */
.best-sellers-section {
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.best-sellers-section h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 60px;
}

/* Empty Products State */
.empty-products-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    width: 100%;
}

.empty-products-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.empty-star-icon {
    font-size: 60px;
    color: #fbbf24;
    margin-bottom: 20px;
    animation: pulseGlow 2s ease-in-out infinite;
}

.empty-products-card h2 {
    font-size: 26px;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 800;
}

.empty-products-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.empty-star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: #e2e8f0;
    font-size: 24px;
}

.empty-star-rating i {
    animation: starPulse 1.5s infinite alternate;
}

.empty-star-rating i:nth-child(2) { animation-delay: 0.2s; }
.empty-star-rating i:nth-child(3) { animation-delay: 0.4s; }
.empty-star-rating i:nth-child(4) { animation-delay: 0.6s; }
.empty-star-rating i:nth-child(5) { animation-delay: 0.8s; }

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(251, 191, 36, 0)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.4)); }
}

@keyframes starPulse {
    from { color: #e2e8f0; transform: scale(1); }
    to { color: #fbbf24; transform: scale(1.2); }
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    justify-content: center;
}

/* Product Card */
.product-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 24px;
    position: relative;
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    z-index: 10;
}

.badge-sale {
    background-color: #ff6b81;
}

.badge-new {
    background-color: #f7a072;
    /* Orange-ish */
}

/* Image Wrapper */
.product-image-wrapper {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background-color: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-category {
    font-size: 14px;
    color: #94a3b8;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.stars {
    columns: #fbbf24;
    color: #fbbf24;
    letter-spacing: 2px;
}

.review-count {
    color: #94a3b8;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.old-price {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
}

/* Outline Button */
.btn-outline {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    color: #334155;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    justify-content: center;
    margin-left: 0;
    /* Reset generic button margin */
}

.btn-outline:hover {
    border-color: #0f172a;
    color: #0f172a;
    background-color: #f8fafc;
    transform: none;
}

/* Testimonials Section */
.testimonial-section {
    padding: 80px 50px;
    background-color: #fffcf8;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background-color: #121212;
    color: white;
    padding: 60px;
    border-radius: 40px;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    position: relative;
    align-items: center;
}

.quote-icon {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-image-wrapper img {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 300;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #888;
    font-size: 14px;
}

.testimonial-author {
    margin-bottom: 30px;
}

.btn-light {
    padding: 12px 24px;
    background-color: white;
    color: #121212;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
}

/* Engagements Section */
.engagements-section {
    padding: 100px 50px;
    background-color: #fcfcfc;
    /* Slightly off-white to make cards pop */
    text-align: center;
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.engagement-card {
    background-color: #ffffff !important;
    /* Force white */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    text-align: left;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    /* Subtle shadow for visibility */
}

.engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #0f172a;
}

.engagement-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.engagement-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 16px;
}

/* Footer Section */
footer {
    background-color: #153e35;
    color: white;
    padding: 80px 0 30px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}

/* Brand Col */
.col-brand {
    flex: 1.5;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    /* filter: brightness(0) invert(1); */
    /* Make logo white */
}

.footer-desc {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background-color: white;
    color: #153e35;
    border-color: white;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: white;
    flex: 1;
    padding: 10px 0;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

.small-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.small-text a {
    color: white;
    text-decoration: underline;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablets & Small Desktops (max-width: 991px) */
@media (max-width: 991px) {
    /* Services Section */
    .services-section {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }
    
    .service-content-card {
        padding: 40px 30px;
        border-radius: 24px;
        max-width: 100%;
        width: 100%;
    }
    
    .service-content-card h2 {
        font-size: 32px;
    }
    
    .service-image-container {
        width: 100%;
        height: 400px;
    }
    
    .service-image {
        border-radius: 24px;
    }
    
    /* Testimonial Section */
    .testimonial-section {
        padding: 60px 20px;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 50px 30px;
        border-radius: 24px;
    }
    
    .testimonial-image-wrapper img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        margin: 0 auto;
        border: 3px solid rgba(255, 255, 255, 0.15);
    }
    
    .testimonial-text {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        margin-bottom: 20px;
    }
    
    .quote-icon {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.05;
        font-size: 60px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        min-height: calc(100vh - 120px);
        padding: 120px 20px 60px 20px;
    }
    
    .hero-content h1 {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 16px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    /* Universe/Collection Section */
    .universe-section {
        padding: 60px 20px;
    }
    
    .universe-section h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .universe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .universe-card {
        border-radius: 16px;
    }
    
    .card-header {
        height: 160px;
    }
    
    .card-header img {
        top: 5px;
        left: 5px;
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        border-radius: 8px;
    }
    
    .card-body {
        padding: 16px;
    }
    
    .card-body h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .card-body p {
        font-size: 12px;
    }
    
    .card-arrow-btn {
        bottom: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    /* Engagements Section */
    .engagements-section {
        padding: 60px 20px;
    }
    
    .engagements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .engagement-card {
        padding: 24px;
        border-radius: 16px;
    }
    
    .icon-box {
        margin-bottom: 16px;
        width: 48px;
        height: 48px;
    }
    
    .engagement-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .engagement-card p {
        font-size: 14px;
    }
}

/* Extra Small Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
    /* Hero Buttons stack */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    /* Services Section adjustments */
    .service-content-card {
        padding: 30px 20px;
    }
    
    .service-content-card h2 {
        font-size: 26px;
    }
    
    .service-image-container {
        height: 280px;
    }
    
    /* Universe cards on narrow screens */
    .universe-grid {
        gap: 12px;
    }
    
    .card-header {
        height: 120px;
    }
    
    .card-header img {
        top: 4px;
        left: 4px;
        width: calc(100% - 8px);
        height: calc(100% - 8px);
        border-radius: 6px;
    }
    
    .card-body {
        padding: 12px;
    }
    
    .card-body h3 {
        font-size: 14px;
    }
    
    .card-arrow-btn {
        bottom: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    /* Testimonial card */
    .testimonial-card {
        padding: 40px 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}