:root {
    --primary-color: #2c3e50;
    --secondary-color: #4a6fa5;
    --accent-color: #6a5acd;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --gradient-start: #1e1e2f;
    --gradient-end: #2a2a3a;
    --glow-color: rgba(106, 90, 205, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--light-color);
    line-height: 1.6;
    min-height: 100vh;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px var(--glow-color);
    }
    50% {
        box-shadow: 0 0 20px var(--glow-color);
    }
    100% {
        box-shadow: 0 0 10px var(--glow-color);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
nav {
    background: rgba(30, 30, 47, 0.9);
    box-shadow: 0 2px 20px rgba(106, 90, 205, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.logo span {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-color);
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover {
    color: white;
    background: rgba(106, 90, 205, 0.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links i {
    margin-right: 8px;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: white;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 90, 205, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Products Section */
.products {
    padding: 4rem 0;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(106, 90, 205, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    position: relative;
    font-size: 2.2rem;
    font-weight: 600;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin: 1rem auto;
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: rgba(30, 30, 47, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(106, 90, 205, 0.4);
    border-color: rgba(106, 90, 205, 0.5);
}

.product-icon {
    background: linear-gradient(135deg, var(--accent-color), #7b68ee);
    color: white;
    font-size: 2.5rem;
    padding: 2rem;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.product-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
    display: block;
    text-shadow: 0 0 10px var(--glow-color);
}

.payment-method {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.payment-method i {
    color: var(--accent-color);
    margin-right: 8px;
}

.qris-img {
    width: 180px;
    height: auto;
    display: block;
    margin: 1rem auto 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s;
}

.qris-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--glow-color);
}

/* Footer */
footer {
    background: rgba(20, 20, 35, 0.9);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 3px;
}

.footer-column p, .footer-column a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
    line-height: 1.7;
}

.footer-column a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.footer-column i {
    width: 25px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(106, 90, 205, 0.2);
    color: white;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--glow-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(30, 30, 47, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
        transition: left 0.4s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
        
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Payment Button Styles */
.payment-btn {
    background: linear-gradient(135deg, var(--accent-color), #7b68ee);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0.5rem 0;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--glow-color);
}

/* QRIS Popup Styles */
.qris-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: rgba(30, 30, 47, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(106, 90, 205, 0.5);
    box-shadow: 0 0 30px var(--glow-color);
    position: relative;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.close-popup:hover {
    color: white;
}

.popup-content h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.popup-content p {
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.8);
}

/* WhatsApp Confirmation Button */
.confirm-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.confirm-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.confirm-btn i {
    margin-right: 8px;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    backdrop-filter: blur(5px);
    background: rgba(20, 20, 35, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(30, 30, 47, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(106, 90, 205, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 90, 205, 0.2);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid greenyellow;
    margin-right: 1rem;
}

.client-details h4 {
    color: white;
    margin-bottom: 0.3rem;
}

.client-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.rating {
    color: #FFD700;
    font-size: 1rem;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 3fr;
    }
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    /* background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: rgba(30, 30, 47, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(106, 90, 205, 0.3);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(106, 90, 205, 0.3);
}

.blog-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 20px rgba(106, 90, 205, 0.5);
}

.date-day {
    font-size: 1.5rem;
    line-height: 1;
}

.date-month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.blog-category {
    color: var(--accent-color);
    font-weight: 600;
}

.blog-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.read-more-btn {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.read-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more-btn:hover {
    color: white;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 4rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.view-all-btn:hover {
    background: #5a4cad;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 90, 205, 0.4);
}

.view-all-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 3fr;
    }
        
    .blog-image-container {
        height: 250px;
    }
}

.ai-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-width: 90%;
    background: rgba(30,30,47,0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(106,90,205,0.7);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.ai-chatbot.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(106,90,205,0.3);
    border-radius: 15px 15px 0 0;
    position: relative;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6a5acd, #9370db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    position: relative;
}

.ai-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(106,90,205,0.5);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.chatbot-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chatbot-messages {
    height: 300px;
    overflow-y: auto;
    padding: 1rem;
}

.message {
    margin-bottom: 1rem;
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    animation: messageIn 0.3s ease;
}

@keyframes messageIn {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.ai-message {
    background: rgba(106,90,205,0.2);
    color: white;
    border-radius: 15px 15px 15px 5px;
    margin-right: auto;
}

.chatbot-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.chatbot-input input {
    flex: 1;
    padding: 0.8rem;
    border-radius: 50px;
    border: none;
    background: rgba(20,20,35,0.7);
    color: white;
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--accent-color);
    color: white;
    margin-left: 0.5rem;
    cursor: pointer;
}

.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a5acd, #9370db);
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(106,90,205,0.5);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}

.neon-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20,20,35,0.9);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 15px rgba(106,90,205,0.5);
    z-index: 1000;
    overflow: hidden;
    backdrop-filter: blur(5px);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-50%) translateY(100px); }
    to { transform: translateX(-50%) translateY(0); }
}

.neon-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.neon-content i {
    color: var(--accent-color);
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.neon-content p {
    color: white;
    margin: 0;
    font-size: 0.9rem;
}

.neon-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #6a5acd, #9370db, #6a5acd) border-box;
    mask-composite: exclude;
    animation: borderGlow 3s infinite;
}

@keyframes borderGlow {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* PROMO BAR ELEGAN */
.luxury-promo-bar {
    position: fixed;
    top: 70px;
    width: 100%;
    background: linear-gradient(135deg, #6a5acd 0%, #4b3d99 100%);
    color: white;
    padding: 12px 0;
    z-index: 999;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(106, 90, 205, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.luxury-marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.promo-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: luxury-marquee 25s linear infinite;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.highlight {
    background-color: #ffd700;
    color: #4b3d99;
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 5px;
    font-weight: 700;
}

.discount {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.code {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 5px;
    font-family: monospace;
}

.icon {
    margin-left: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.close-promo {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 15px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.close-promo:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes luxury-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Adjust main content margin */
main {
    margin-top: 110px !important;
}

@media (max-width: 768px) {
    .luxury-promo-bar {
        top: 60px;
        padding: 8px 0;
    }
    
    .promo-content {
        font-size: 0.8rem;
        animation: luxury-marquee 18s linear infinite;
    }
    
    main {
        margin-top: 90px !important;
    }
}

/* Tutorial Video Section */
.tutorial-section {
  padding: 4rem 0;
  background: rgba(106, 90, 205, 0.05);
}

.tutorial-section .section-title {
  text-align: center;
  color: var(--light-color);
  margin-bottom: 0.5rem;
}

.tutorial-section .section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.video-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container {
  display: none;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-container.active {
  display: block;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-container h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(106, 90, 205, 0.8);
  color: white;
  padding: 1rem;
  margin: 0;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-carousel {
    border-radius: 0;
  }
  
  .video-container h3 {
    font-size: 1rem;
  }
}

/* Video Container Fix */
.video-wrapper {
  position: relative;
  padding-bottom: 48.50%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

