/* premium.css - Modern UI Overrides */

:root {
    --primary-gradient: linear-gradient(135deg, #FF695F 0%, #FF9E96 100%);
    --secondary-gradient: linear-gradient(135deg, #03a4ed 0%, #4bc4f7 100%);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --font-heading: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fa;
    /* Lighter, cleaner background */
}

/* --- Typography & Headings --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.section-heading h2 {
    font-weight: 700;
}

.section-heading h2 em {
    font-style: normal;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading h2 span {
    color: #03a4ed;
    /* Fallback */
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.main-blue-button-hover a,
.main-red-button-hover a {
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-image: var(--secondary-gradient) !important;
    /* Force override */
    border: none !important;
    font-weight: 600;
}

.main-red-button-hover a {
    background-image: var(--primary-gradient) !important;
}

.main-blue-button-hover a:hover,
.main-red-button-hover a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #fff !important;
}

/* --- Glassmorphism Cards --- */
.service-item,
.owl-services .item,
.our-portfolio .item .thumb,
.pricing-item {
    background: var(--glass-bg);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.owl-services .item:hover,
.our-portfolio .item:hover .thumb {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* --- Navbar --- */
.header-area.header-sticky {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* --- Hero Section Refinements --- */
.main-banner {
    background-image: linear-gradient(to right bottom, #fff, #f0f8ff);
}

.main-banner .left-content h2 {
    text-shadow: none;
    /* Clean look */
}

/* --- Footer & Subscribe --- */
.subscribe {
    background: var(--secondary-gradient);
    border-radius: 30px;
    margin-top: 50px;
}

footer p {
    color: #666;
}

/* --- Animations --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.left-image img,
.right-image img {
    animation: float 6s ease-in-out infinite;
}

/* --- Responsive YouTube Embeds --- */
.nacc .thumb iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: 100%;
    /* Fallback */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Fix: Inactive slides blocking playback */
.our-videos ul.nacc li {
    pointer-events: none;
    /* Opacity and visibility handled by MainStyle.css */
}

.our-videos ul.nacc li.active {
    pointer-events: auto;
}