/* 
    Sradha WebCreations Premium Architectural Design System
    Focus: Luxury, Responsiveness, Animations
*/

:root {
    --primary-blue: #3a86ff;
    --dark-blue: #1e3a8a;
    --accent-light: #60a5fa;
    --accent-gold: #c5a059;
    /* Luxury gold from screenshot */
    --bg-dark: #0f172a;
    --footer-bg: #05080f;
    --text-main: #f8fafc;
    --primary-gradient: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --bg-dark: #ffffff;
    --text-main: #1a1a1a;
    --footer-bg: #f1f5f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.5s ease;
}

p {
    text-align: justify;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Noto Serif', serif;
    color: var(--primary-blue);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
}

/* --- TOP HEADER --- */
.top-header {
    background: var(--top-bar-bg);
    color: #fff;
    padding: 12px 0;
    font-size: 0.85rem;
    transition: var(--transition);
}

[data-theme="light"] .top-header {
    color: #333;
    border-bottom: 1px solid #eee;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 30px;
}

.top-contact span i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.top-socials {
    display: flex;
    gap: 15px;
}

.top-socials a {
    background: rgba(255, 255, 255, 0.05);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.9rem;
    color: inherit;
}

[data-theme="light"] .top-socials a {
    background: #eee;
}

.top-socials a:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
}

/* --- STICKY HEADER --- */
header {
    background: linear-gradient(90deg, #fff 0%, #fff 25%, var(--primary-blue) 45%, var(--dark-blue) 100%);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: height 0.3s, padding 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo-box {
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    padding: 0 60px;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-list,
.nav-list li,
.dropdown-menu,
.dropdown-menu li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

.nav-link,
.dropdown-menu li a,
.nav-list a {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 0;
    position: relative;
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none;
    transition: 0.3s;
}

.nav-link:hover,
.nav-list a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link::after,
.nav-link::before {
    display: none !important;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
    border-radius: 0 0 8px 8px;
    list-style: none;
    /* Removed dots from dropdown */
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: #333;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: var(--primary-blue);
    padding-left: 30px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    padding-right: 30px;
    z-index: 100;
}

.theme-toggle {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(360deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: 0.4s;
}

[data-theme="light"] header .logo {
    color: #000;
}

/* Redefine X transformation */
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Ensure links in the blue area stay white in both modes */
.nav-link {
    color: #fff !important;
}

[data-theme="light"] header {
    background: linear-gradient(90deg, #fff 0%, #fff 25%, var(--primary-blue) 45%, var(--dark-blue) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    min-height: 600px;
    background: #000;
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero-slider {
        height: 85vh;
        min-height: 500px;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: 75vh;
        min-height: 450px;
    }
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
    transition: transform 8s linear;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 1000px;
    text-align: center;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    margin: 0 auto 25px auto;
    border-right: 4px solid var(--primary-blue);
}

.highlight {
    color: var(--primary-blue);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s 1s ease-out forwards;
    color: rgba(255, 255, 255, 0.7);
    text-align: justify;
}

.slide.active h1 {
    opacity: 1;
    animation: typing 3.5s steps(40, end) forwards, blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--primary-blue);
    }
}

.slide.active p {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    border-radius: 6px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    border-radius: 6px;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 20;
}

.dot {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #fff;
    width: 70px;
}

/* --- OTHER SECTIONS --- */
.py-section {
    padding: 100px 0;
}

.section-title {
    font-size: 25px;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reveal-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* --- FOOTER --- */
footer {
    background: var(--footer-bg);
    padding: 100px 0 30px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 80px;
}

.footer-about h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-blue);
    font-weight: 800;
}

.footer-about p {
    color: #64748b;
    margin-bottom: 35px;
    max-width: 250px;
    font-size: 0.95rem;
    text-align: justify;
}

.footer-socials {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 250px;
}

.footer-socials a,
.footer-socials a i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    transition: 0.3s;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.footer-socials a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none !important;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
    list-style: none !important;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none !important;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 8px;
    text-decoration: none !important;
}

.footer-contact p {
    display: flex;
    gap: 20px;
    color: #64748b;
    margin-bottom: 25px;
    font-size: 0.95rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-blue);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 0;
    text-align: center;
}

.footer-bottom p {
    color: #fff;
    /* Default white for dark theme */
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

[data-theme="light"] .footer-bottom p {
    color: var(--primary-blue);
}
}

justify-content: space-between;
font-size: 0.9rem;
color: #64748b;
}

/* --- PRICING SECTION --- */
.pricing-section {
    padding: 150px 0 100px;
    background: #0f172a;
    text-align: center;
}

[data-theme="light"] .pricing-section {
    background: #f1f5f9;
}

.pricing-section .section-title,
.pricing-subtitle {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.pricing-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px !important;
}

[data-theme="light"] .pricing-section .section-title,
[data-theme="light"] .pricing-subtitle {
    color: var(--primary-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    align-items: center;
}

.pricing-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.highlight {
    z-index: 2;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-blue);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.pricing-card p.subtitle {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 30px;
    display: block;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #475569;
}

.pricing-features i {
    font-size: 0.9rem;
}

.pricing-features .fa-check {
    color: #10b981;
}

.pricing-features .fa-times {
    color: #f43f5e;
}

/* --- BACK TO TOP --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.4);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--dark-blue);
}

/* --- STATS SECTION --- */
.stats-section {
    padding: 80px 0;
    background: #fff;
}

[data-theme="light"] .stats-section {
    background: #f8fafc;
}

.stats-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    gap: 20px;
}

.stat-item.blue {
    background: var(--primary-blue);
    color: #fff;
}

.stat-item.light {
    background: #f0f9ff;
    color: var(--primary-blue);
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.stat-item.light .stat-icon-box {
    background: var(--primary-blue);
    color: #fff;
}

.stat-content {
    text-align: left;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 100px 0;
    background: #f1f5f9;
}

[data-theme="light"] .testimonials-section {
    background: #fff;
}

.testimonial-slider-container {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    padding: 40px;
    min-height: 400px;
}

[data-theme="light"] .testimonial-slider-container {
    background: #f8fafc;
}

.testimonial-slide {
    display: none;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    animation: fadeIn 0.8s ease;
}

.testimonial-slide.active {
    display: grid;
}

.testimonial-image {
    width: 300px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.testimonial-content {
    text-align: left;
}

.testimonial-content h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    font-style: italic;
    position: relative;
    text-align: justify;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-blue);
    position: absolute;
    top: -30px;
    left: -20px;
    opacity: 0.2;
}

/* Slider Controls */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 100px);
    left: -50px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonial-nav span {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-blue);
    transition: 0.3s;
    pointer-events: auto;
}

.testimonial-nav span:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dot.active {
    background: var(--primary-blue);
    width: 25px;
    border-radius: 5px;
}

@media (max-width: 850px) {
    .testimonial-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-image {
        margin: 0 auto;
        width: 100%;
        max-width: 300px;
    }

    .testimonial-content {
        text-align: center;
    }

    .testimonial-nav {
        width: 100%;
        left: 0;
        top: auto;
        bottom: -60px;
        transform: none;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #1e40af; /* Vibrant corporate blue as requested */
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: flex;
        clip-path: none;
        margin-left: 0;
    }

    #nav-menu.active {
        right: 0;
        /* Slide in when active */
    }

    .nav-list {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100%;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link,
    .nav-list a {
        font-size: 1.1rem;
        width: 100%;
        padding: 20px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        display: block;
        transition: background 0.3s;
        text-decoration: none !important;
    }

    .nav-link::after,
    .nav-link::before,
    .nav-list a::after {
        display: none !important;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.02);
        box-shadow: none;
        padding: 0;
        display: none;
        width: 100%;
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.6);
        padding: 15px 60px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .logo-box {
        padding: 10px 30px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }

    .stats-container {
        flex-direction: column;
        border-radius: 8px;
    }

    .stat-item {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .top-header {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- ACCORDION --- */
.accordion {
    margin-top: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

[data-theme="dark"] .accordion {
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .accordion-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

.accordion-header span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.accordion-header i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: 0.4s;
}

.accordion-item.active .accordion-header {
    background: rgba(var(--primary-blue-rgb), 0.05);
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
    color: #000;
}

[data-theme="dark"] .accordion-item.active .accordion-header i {
    color: #fff;
}

.accordion-content {
    padding: 0 25px 25px;
    display: none;
    animation: slideDown 0.4s ease-out;
}

.accordion-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #666;
}

[data-theme="dark"] .accordion-content p {
    color: #fff;
}

.goal-list {
    padding-left: 20px;
    color: #666;
}

[data-theme="dark"] .goal-list {
    color: #fff;
}

.goal-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- VIDEO SERVICES SECTION --- */
.video-services {
    background: #fdfdfd;
}

[data-theme="dark"] .video-services {
    background: #0a0a0b;
}

.section-header-alt {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-alt h2 {
    font-size: 2.5rem;
    color: #e63946;
    /* Using a vibrant red for the automation header as per user preference */
    text-transform: capitalize;
    font-weight: 800;
}

[data-theme="dark"] .section-header-alt h2 {
    color: #ff4d4d;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.v-service-col {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.v-service-item {
    text-align: left;
}

.v-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.v-service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    text-align: justify;
}

[data-theme="dark"] .v-service-desc {
    color: #9ca3af;
}

.video-container-premium {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #000;
}

.video-container-premium iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsiveness */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .v-video-col {
        order: -1;
        /* Video on top on mobile */
    }

    .v-service-item {
        text-align: center;
    }
}
/* --- SERVICE INFINITE SLIDER --- */
.preview-image-slider {
    width: 100%;
    overflow: hidden;
    background: #f8fafc;
    padding: 40px 0;
    border-radius: 12px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

[data-theme="dark"] .preview-image-slider {
    background: #111827;
}

.slider-hint {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-infinite-slider {
    width: 100%;
    position: relative;
}

.service-track {
    display: flex;
    width: calc(250px * 12); /* Based on estimated slide width */
    animation: scroll 30s linear infinite;
    gap: 30px;
}

.service-slide {
    width: 250px;
    flex-shrink: 0;
    text-align: center;
}

.service-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid var(--primary-blue);
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.service-slide span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.service-slide:hover img {
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 9 - 270px)); } /* Adjust based on track length */
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .preview-image-slider {
        margin-top: 50px;
    }
}
