/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Prevent any element from causing horizontal scroll */
* {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    max-width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #f39c12;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #f39c12;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cta-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.hero-image {
    text-align: center;
}

.hero-image i {
    font-size: 15rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    flex-shrink: 0;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-btn:hover {
    background: #2980b9;
    transform: scale(1.05);
}

/* Booking Options Styles */
.booking-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1rem;
}

.service-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    animation: glow 2s ease-in-out infinite alternate;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.service-btn:active {
    transform: translateY(-1px);
    transition: transform 0.1s;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #1ea952);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6), 0 4px 15px rgba(0,0,0,0.2);
    animation: whatsappGlow 2s ease-in-out infinite alternate;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1ea952, #128c3e);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8), 0 8px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.call-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.6), 0 4px 15px rgba(0,0,0,0.2);
    animation: callGlow 2s ease-in-out infinite alternate;
}

.call-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    box-shadow: 0 0 30px rgba(231, 76, 60, 0.8), 0 8px 25px rgba(231, 76, 60, 0.4);
    transform: translateY(-3px);
}

/* Real-time glow animations */
@keyframes glow {
    0% {
        filter: brightness(1) drop-shadow(0 0 5px currentColor);
    }
    100% {
        filter: brightness(1.1) drop-shadow(0 0 15px currentColor);
    }
}

@keyframes whatsappGlow {
    0% {
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.4), 0 4px 15px rgba(0,0,0,0.2);
    }
    100% {
        box-shadow: 0 0 25px rgba(37, 211, 102, 0.8), 0 4px 15px rgba(0,0,0,0.2);
    }
}

@keyframes callGlow {
    0% {
        box-shadow: 0 0 15px rgba(231, 76, 60, 0.4), 0 4px 15px rgba(0,0,0,0.2);
    }
    100% {
        box-shadow: 0 0 25px rgba(231, 76, 60, 0.8), 0 4px 15px rgba(0,0,0,0.2);
    }
}

/* Rotating icon animation */
@keyframes rotateIcon {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Pulse animation for buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 0 10px rgba(52, 152, 219, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
}

.service-btn:focus {
    animation: pulse 1.5s infinite;
    outline: none;
}

/* Icon bounce effect */
.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Gallery/Slideshow Section */
.gallery {
    padding: 80px 0;
    background: white;
}

.slideshow-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    aspect-ratio: 1 / 1;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 3rem 2rem 2rem;
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}

.dots-container {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.1);
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #3498db;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-title::after {
    background: #f39c12;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #f39c12;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.3rem;
    margin-right: 1rem;
    color: #3498db;
    width: 25px;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
    transform: scale(1.02);
}

.submit-btn {
    background: #f39c12;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f39c12;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Sticky Social Media Icons */
.social-sticky {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 60px;
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.facebook { background: #3b5998; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.twitter { background: #1da1f2; }
.whatsapp { background: #25d366; }
.phone { background: #27ae60; animation: pulse 2s infinite; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 0 15px;
        position: relative;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo p {
        font-size: 0.85rem;
    }
    
    /* Add repair icon to header on mobile */
    .nav-container::after {
        content: '\f0ad';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        color: rgba(255, 255, 255, 0.8);
        animation: rotateIcon 3s linear infinite;
    }
    
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 1.5rem;
        padding: 0 20px !important;
        justify-items: center;
        align-items: center;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
        text-align: center !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-weight: 700;
        letter-spacing: -0.5px;
        padding: 0 10px;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        text-align: center !important;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.95;
        font-weight: 400;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
        display: block;
        margin: 0 auto;
        text-align: center;
        border-radius: 25px;
        font-weight: 600;
        min-width: 160px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .hero-image {
        display: none !important;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 5px;
    }
    
    .service-card {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        padding: 1.5rem;
        min-height: 380px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    /* Mobile booking options */
    .booking-options {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .service-btn {
        width: 100%;
        min-width: auto;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-sticky {
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        position: fixed;
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 1001;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
        opacity: 0.95;
    }
    
    .slideshow-container {
        max-width: 90%;
        aspect-ratio: 1 / 1;
    }
    
    .slide {
        width: 100%;
        height: 100%;
    }
    
    .slide-content {
        padding: 2rem 1rem 1rem;
    }
    
    .slide-content h3 {
        font-size: 1.4rem;
    }
    
    .prev, .next {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
        position: relative;
    }
    
    /* Add repair icon to header on small mobile */
    .nav-container::after {
        content: '\f0ad';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.6rem;
        color: rgba(255, 255, 255, 0.8);
        animation: rotateIcon 3s linear infinite;
    }
    
    .hero {
        padding: 120px 0 70px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content {
        padding: 0 15px !important;
        gap: 1.2rem;
        justify-items: center;
        align-items: center;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        text-align: center !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        font-weight: 700;
        letter-spacing: -0.3px;
        padding: 0 5px;
    }
    
    .hero-content p {
        font-size: 0.85rem;
        text-align: center !important;
        width: 100%;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
        margin-bottom: 1.8rem;
        opacity: 0.95;
        font-weight: 400;
    }
    
    .hero-image {
        display: none !important;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .services, .gallery, .videos, .contact {
        padding: 50px 0;
    }
    
    .slideshow-container {
        max-width: 95%;
        aspect-ratio: 1 / 1;
    }
    
    .service-card {
        padding: 1.2rem;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        min-height: 360px;
    }
    
    .service-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    /* Social icons for small screens */
    .social-sticky {
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        position: fixed;
        gap: 5px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.4);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

/* Videos Section */
.videos {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Removed hover effect to prevent video visibility issues */

.video-card.playing {
    border: 3px solid #3498db;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: #f8f9fa;
}

/* Prevent any hover effects on video container */
.video-container:hover {
    background: #f8f9fa !important;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
    outline: none;
    background: #f8f9fa;
}

/* Prevent any hover effects on video element */
.video-container video:hover {
    background: #f8f9fa !important;
    opacity: 1 !important;
    filter: none !important;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Video controls styling */
.video-container video::-webkit-media-controls-panel {
    background-color: rgba(0,0,0,0.8);
}

.video-container video::-webkit-media-controls-play-button {
    background-color: #3498db;
    border-radius: 50%;
}

/* Responsive adjustments for videos */
@media (max-width: 768px) {
    .videos {
        padding: 60px 0;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-container {
        aspect-ratio: 9/16;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-container {
        aspect-ratio: 9/16;
    }
}
