:root {
    --primary: #2b5cff;
    --primary-dark: #1f47d6;
    --secondary: #00cc88;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary);
    left: 0;
    bottom: 0;
    transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(43, 92, 255, 0.05);
    top: -150px;
    right: -150px;
}

.hero:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 204, 136, 0.05);
    bottom: -100px;
    left: -100px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.animated-text-container {
    height: 70px;
    margin-bottom: 20px;
    overflow: hidden;
}

.animated-text {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
}

.animated-text span {
    display: block;
    animation: slide 9s infinite;
}

@keyframes slide {
    0% {
        transform: translateY(0);
    }

    33% {
        transform: translateY(-100%);
    }

    66% {
        transform: translateY(-200%);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-visual {
    flex: 1;
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
}

/* Video Slider */
.swiper {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.mySwiper {
    width: 100% !important;
    max-width: 100% !important;
}

.swiper-slide {
    position: relative;
}

.slide-video,
.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px;
    z-index: 10;
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary);
}

/* Features Section */
.features {
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover:before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(43, 92, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
}

/* Products Section */
.products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--light-gray);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary);
}

.product-img-photo {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-img-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-photo img {
    transform: scale(1.1);
}


.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.tag {
    background: rgba(0, 204, 136, 0.1);
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-enquire {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-enquire:hover {
    background: var(--primary-dark);
}

/* Principals Section */
.principals-section {
    background: var(--light);
}

.principals-slider {
    overflow: hidden;
    padding: 30px 0;
}

.principals-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
}

.principals-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.principal-card {
    background: white;
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
}

.principal-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.principal-card span {
    font-weight: 600;
    color: var(--dark);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonialsSwiper {
    height: auto;
    padding-bottom: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: var(--gray);
    font-weight: 500;
}

/* CTA Section */
.cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-card p a {
    color: var(--primary);
    transition: var(--transition);
}

.contact-card p a:hover {
    color: var(--secondary);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Section Navigation Indicator - Modern Glassmorphism Design */
.section-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

/* Vertical progress line */
.section-nav::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
            rgba(43, 92, 255, 0.08) 0%,
            rgba(43, 92, 255, 0.25) 50%,
            rgba(43, 92, 255, 0.08) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: -1;
}

.section-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Modern frosted glass dot */
.section-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(43, 92, 255, 0.35);
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 4px 12px rgba(43, 92, 255, 0.08),
        inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Outer ripple ring */
.section-nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    opacity: 0;
}

/* Inner glow effect */
.section-nav-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(43, 92, 255, 0.4),
            transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

/* Hover state */
.section-nav-item:hover .section-nav-dot {
    transform: scale(1.4);
    border-color: rgba(43, 92, 255, 0.6);
    background: linear-gradient(135deg,
            rgba(43, 92, 255, 0.25),
            rgba(0, 204, 136, 0.15));
    box-shadow:
        0 6px 24px rgba(43, 92, 255, 0.2),
        0 0 0 6px rgba(43, 92, 255, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.section-nav-item:hover .section-nav-dot::before {
    border-color: rgba(43, 92, 255, 0.25);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.section-nav-item:hover .section-nav-dot::after {
    opacity: 1;
}

/* Active state with soft glow */
.section-nav-item.active .section-nav-dot {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg,
            rgba(43, 92, 255, 0.95),
            rgba(31, 71, 214, 0.9));
    border-color: rgba(43, 92, 255, 0.8);
    box-shadow:
        0 0 20px rgba(43, 92, 255, 0.5),
        0 0 40px rgba(43, 92, 255, 0.25),
        0 6px 15px rgba(43, 92, 255, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    animation: soft-pulse 3s ease-in-out infinite;
}

.section-nav-item.active .section-nav-dot::before {
    border-color: rgba(43, 92, 255, 0.35);
    opacity: 1;
    animation: ripple 2.5s ease-out infinite;
}

.section-nav-item.active .section-nav-dot::after {
    opacity: 1;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.8),
            transparent);
    animation: glow-pulse 3s ease-in-out infinite;
}

/* Soft pulsing animation */
@keyframes soft-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 20px rgba(43, 92, 255, 0.5),
            0 0 40px rgba(43, 92, 255, 0.25),
            0 6px 15px rgba(43, 92, 255, 0.3),
            inset 0 1px 3px rgba(255, 255, 255, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow:
            0 0 30px rgba(43, 92, 255, 0.7),
            0 0 60px rgba(43, 92, 255, 0.35),
            0 8px 20px rgba(43, 92, 255, 0.4),
            inset 0 1px 3px rgba(255, 255, 255, 0.4);
    }
}

/* Ripple wave animation */
@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* Inner glow pulse */
@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Modern glassmorphism label */
.section-nav-label {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--dark);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

/* Label arrow */
.section-nav-label::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid rgba(255, 255, 255, 0.98);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    filter: drop-shadow(2px 0 4px rgba(0, 0, 0, 0.03));
}

/* Label hover animation */
.section-nav-item:hover .section-nav-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Scroll to top button - Modern & Soft */
.scroll-to-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #1f47d6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 12px 48px rgba(43, 92, 255, 0.25),
        0 4px 16px rgba(43, 92, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: white;
}

.scroll-to-top:hover::before {
    opacity: 1;
}

.scroll-to-top:active {
    transform: translateY(-4px) scale(1);
}

/* ========== THEME SWITCHER ========== */
.theme-switcher {
    position: fixed;
    top: 100px;
    right: 40px;
    z-index: 1001;
    display: flex;
    gap: 10px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px;
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.theme-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.theme-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), #1f47d6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.theme-btn:hover::before {
    opacity: 0.15;
}

.theme-btn.active {
    background: linear-gradient(135deg, var(--primary), #1f47d6);
    color: white;
    box-shadow: 0 4px 12px rgba(43, 92, 255, 0.3);
}

.theme-btn.active::before {
    opacity: 1;
}

/* ========== LIQUID/BLOB THEME ========== */
body[data-theme="liquid"] .section-nav-dot {
    border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
    background: linear-gradient(135deg,
            rgba(147, 51, 234, 0.8),
            rgba(79, 70, 229, 0.7),
            rgba(59, 130, 246, 0.6));
    border: none;
    animation: liquid-morph 8s ease-in-out infinite, liquid-float 3s ease-in-out infinite;
    box-shadow:
        0 8px 24px rgba(147, 51, 234, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

body[data-theme="liquid"] .section-nav-dot::before {
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.4),
            transparent 70%);
    animation: liquid-ripple 3s ease-out infinite;
}

body[data-theme="liquid"] .section-nav-dot::after {
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.6),
            transparent);
    animation: liquid-glow 3s ease-in-out infinite;
}

body[data-theme="liquid"] .section-nav-item:hover .section-nav-dot {
    transform: scale(1.5);
    border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%;
    background: linear-gradient(135deg,
            rgba(168, 85, 247, 0.9),
            rgba(99, 102, 241, 0.8),
            rgba(96, 165, 250, 0.7));
}

body[data-theme="liquid"] .section-nav-item.active .section-nav-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg,
            rgba(168, 85, 247, 1),
            rgba(99, 102, 241, 0.9),
            rgba(96, 165, 250, 0.8));
    box-shadow:
        0 0 30px rgba(147, 51, 234, 0.7),
        0 0 60px rgba(147, 51, 234, 0.4),
        0 8px 24px rgba(147, 51, 234, 0.5);
}

/* Liquid morphing animation */
@keyframes liquid-morph {

    0%,
    100% {
        border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
    }

    25% {
        border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
    }

    50% {
        border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%;
    }

    75% {
        border-radius: 60% 40% 45% 55% / 40% 60% 40% 60%;
    }
}

@keyframes liquid-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

@keyframes liquid-ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes liquid-glow {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* ========== 3D/ISOMETRIC THEME ========== */
body[data-theme="isometric"] .section-nav-dot {
    border-radius: 4px;
    background: linear-gradient(135deg,
            rgba(251, 191, 36, 0.95),
            rgba(245, 158, 11, 0.9));
    border: none;
    transform: rotateX(45deg) rotateZ(45deg);
    transform-style: preserve-3d;
    box-shadow:
        0 6px 0 rgba(217, 119, 6, 0.8),
        0 10px 0 rgba(180, 83, 9, 0.6),
        0 14px 0 rgba(146, 64, 14, 0.4),
        0 18px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body[data-theme="isometric"] .section-nav-dot::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
            rgba(252, 211, 77, 0.4),
            transparent);
    border-radius: 4px;
    transform: translateZ(-1px);
}

body[data-theme="isometric"] .section-nav-dot::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 50%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.5),
            transparent);
    border-radius: 2px;
}

body[data-theme="isometric"] .section-nav-item:hover .section-nav-dot {
    transform: rotateX(45deg) rotateZ(45deg) translateY(-8px) scale(1.3);
    box-shadow:
        0 8px 0 rgba(217, 119, 6, 0.9),
        0 14px 0 rgba(180, 83, 9, 0.7),
        0 20px 0 rgba(146, 64, 14, 0.5),
        0 26px 30px rgba(0, 0, 0, 0.3);
}

body[data-theme="isometric"] .section-nav-item.active .section-nav-dot {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg,
            rgba(251, 191, 36, 1),
            rgba(245, 158, 11, 1));
    box-shadow:
        0 0 20px rgba(251, 191, 36, 0.6),
        0 8px 0 rgba(217, 119, 6, 1),
        0 14px 0 rgba(180, 83, 9, 0.8),
        0 20px 0 rgba(146, 64, 14, 0.6),
        0 26px 30px rgba(0, 0, 0, 0.4);
    animation: isometric-bounce 2s ease-in-out infinite;
}

@keyframes isometric-bounce {

    0%,
    100% {
        transform: rotateX(45deg) rotateZ(45deg) translateY(0);
    }

    50% {
        transform: rotateX(45deg) rotateZ(45deg) translateY(-6px);
    }
}

/* Theme-specific label styles */
body[data-theme="liquid"] .section-nav-label {
    background: linear-gradient(135deg,
            rgba(168, 85, 247, 0.95),
            rgba(99, 102, 241, 0.9));
    color: white;
    border-color: rgba(168, 85, 247, 0.5);
}

body[data-theme="liquid"] .section-nav-label::after {
    border-left-color: rgba(168, 85, 247, 0.95);
}

body[data-theme="isometric"] .section-nav-label {
    background: linear-gradient(135deg,
            rgba(251, 191, 36, 0.95),
            rgba(245, 158, 11, 0.9));
    color: var(--dark);
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-50%) translateX(10px) rotateY(-10deg);
}

body[data-theme="isometric"] .section-nav-label::after {
    border-left-color: rgba(251, 191, 36, 0.95);
}

body[data-theme="isometric"] .section-nav-item:hover .section-nav-label {
    transform: translateY(-50%) translateX(0) rotateY(0);
}

/* ========== LIQUID/BLOB THEME - FULL SITE ========== */

/* Buttons */
body[data-theme="liquid"] .btn {
    border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border: none;
    color: white;
    animation: liquid-morph 8s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.3);
}

body[data-theme="liquid"] .btn:hover {
    background: linear-gradient(135deg, #c084fc, #818cf8);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.4);
}

body[data-theme="liquid"] .btn-outline {
    background: transparent;
    border: 3px solid #a855f7;
    color: #a855f7;
}

body[data-theme="liquid"] .btn-outline:hover {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: white;
}

/* Header */
body[data-theme="liquid"] header {
    background: linear-gradient(135deg,
            rgba(168, 85, 247, 0.95),
            rgba(99, 102, 241, 0.9));
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.2);
}

body[data-theme="liquid"] .logo-text {
    color: white;
}

body[data-theme="liquid"] .logo-text span {
    color: #fbbf24;
}

body[data-theme="liquid"] .nav-links a {
    color: white;
}

body[data-theme="liquid"] .nav-links a:hover,
body[data-theme="liquid"] .nav-links a.active {
    color: #fbbf24;
}

body[data-theme="liquid"] .nav-links a:after {
    background: #fbbf24;
}

/* Hero Section */
body[data-theme="liquid"] .hero {
    background: linear-gradient(135deg,
            rgba(168, 85, 247, 0.1) 0%,
            rgba(99, 102, 241, 0.1) 50%,
            rgba(59, 130, 246, 0.1) 100%);
}

body[data-theme="liquid"] .hero:before,
body[data-theme="liquid"] .hero:after {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent);
    border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
    animation: liquid-morph 10s ease-in-out infinite;
}

body[data-theme="liquid"] .animated-text {
    color: #a855f7;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cards */
body[data-theme="liquid"] .feature-card,
body[data-theme="liquid"] .product-card,
body[data-theme="liquid"] .service-card,
body[data-theme="liquid"] .testimonial-card,
body[data-theme="liquid"] .contact-card {
    border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95),
            rgba(248, 237, 255, 0.9));
    border: 2px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.15);
    animation: liquid-morph 12s ease-in-out infinite;
}

body[data-theme="liquid"] .feature-card:hover,
body[data-theme="liquid"] .product-card:hover,
body[data-theme="liquid"] .service-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 20px 48px rgba(147, 51, 234, 0.25);
    border-color: rgba(168, 85, 247, 0.4);
}

body[data-theme="liquid"] .feature-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(99, 102, 241, 0.15));
    color: #a855f7;
    border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
    animation: liquid-morph 6s ease-in-out infinite;
}

body[data-theme="liquid"] .feature-card:before {
    background: linear-gradient(90deg, #a855f7, #6366f1);
}

/* Section Titles */
body[data-theme="liquid"] .section-title h2 {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-theme="liquid"] .section-title h2:after {
    background: linear-gradient(90deg, #ec4899, #a855f7);
}

/* Stats Section */
body[data-theme="liquid"] .stats {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
}

/* Swiper */
body[data-theme="liquid"] .swiper {
    border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%;
    animation: liquid-morph 10s ease-in-out infinite;
}

body[data-theme="liquid"] .swiper-pagination-bullet-active {
    background: #ec4899;
}

/* Footer */
body[data-theme="liquid"] footer {
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
}

body[data-theme="liquid"] .footer-col h3:after {
    background: linear-gradient(90deg, #a855f7, #ec4899);
}

body[data-theme="liquid"] .social-links a:hover {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

/* Scroll to top */
body[data-theme="liquid"] .scroll-to-top {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
    animation: liquid-morph 8s ease-in-out infinite;
    color: white;
    border: none;
}

body[data-theme="liquid"] .scroll-to-top::before {
    background: linear-gradient(135deg, #c084fc, #818cf8);
}

/* ========== 3D/ISOMETRIC THEME - FULL SITE ========== */

/* ========== 3D/ISOMETRIC THEME - FULL SITE ========== */

/* Buttons */
body[data-theme="isometric"] .btn {
    border-radius: 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    color: var(--dark);
    font-weight: 700;
    transform: perspective(500px) rotateX(5deg);
    box-shadow:
        0 4px 0 #d97706,
        0 8px 0 #b45309,
        0 12px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

body[data-theme="isometric"] .btn:hover {
    transform: perspective(500px) rotateX(5deg) translateY(-6px);
    box-shadow:
        0 6px 0 #d97706,
        0 12px 0 #b45309,
        0 18px 0 #0c4a6e,
        0 24px 30px rgba(0, 0, 0, 0.3);
}

body[data-theme="isometric"] .btn-outline {
    background: transparent;
    border: 3px solid #0ea5e9;
    color: #0ea5e9;
}

body[data-theme="isometric"] .btn-outline:hover {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border-color: #d97706;
}

/* Header */
body[data-theme="isometric"] header {
    background: linear-gradient(135deg,
            rgba(251, 191, 36, 0.95),
            rgba(245, 158, 11, 0.9));
    backdrop-filter: blur(20px);
    box-shadow:
        0 4px 0 rgba(217, 119, 6, 0.8),
        0 8px 20px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(2deg);
}

body[data-theme="isometric"] .logo-text {
    color: var(--dark);
    text-shadow: 2px 2px 0 rgba(217, 119, 6, 0.3);
}

body[data-theme="isometric"] .logo-text span {
    color: #dc2626;
}

body[data-theme="isometric"] .nav-links a {
    color: var(--dark);
    font-weight: 600;
}

body[data-theme="isometric"] .nav-links a:hover,
body[data-theme="isometric"] .nav-links a.active {
    color: #dc2626;
}

body[data-theme="isometric"] .nav-links a:after {
    background: #dc2626;
    height: 3px;
}

/* Hero Section */
body[data-theme="isometric"] .hero {
    background: linear-gradient(135deg,
            rgba(251, 191, 36, 0.1) 0%,
            rgba(245, 158, 11, 0.1) 100%);
}

body[data-theme="isometric"] .hero:before,
body[data-theme="isometric"] .hero:after {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent);
    border-radius: 8px;
    transform: perspective(500px) rotateX(45deg) rotateZ(45deg);
}

body[data-theme="isometric"] .animated-text {
    color: #f59e0b;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(217, 119, 6, 0.2);
}

/* Cards */
body[data-theme="isometric"] .feature-card,
body[data-theme="isometric"] .product-card,
body[data-theme="isometric"] .service-card,
body[data-theme="isometric"] .testimonial-card,
body[data-theme="isometric"] .contact-card {
    border-radius: 12px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98),
            rgba(254, 249, 195, 0.9));
    border: 3px solid rgba(251, 191, 36, 0.3);
    transform: perspective(1000px) rotateX(5deg);
    box-shadow:
        0 6px 0 rgba(217, 119, 6, 0.4),
        0 12px 0 rgba(180, 83, 9, 0.3),
        0 18px 30px rgba(0, 0, 0, 0.15);
}

body[data-theme="isometric"] .feature-card:hover,
body[data-theme="isometric"] .product-card:hover,
body[data-theme="isometric"] .service-card:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-12px);
    box-shadow:
        0 10px 0 rgba(217, 119, 6, 0.5),
        0 18px 0 rgba(180, 83, 9, 0.4),
        0 24px 0 rgba(146, 64, 14, 0.3),
        0 30px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(251, 191, 36, 0.6);
}

body[data-theme="isometric"] .feature-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.2));
    color: #f59e0b;
    border-radius: 8px;
    box-shadow:
        0 4px 0 rgba(217, 119, 6, 0.3),
        0 8px 15px rgba(0, 0, 0, 0.1);
}

body[data-theme="isometric"] .feature-card:before {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    height: 6px;
}

/* Section Titles */
body[data-theme="isometric"] .section-title h2 {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(217, 119, 6, 0.2);
}

body[data-theme="isometric"] .section-title h2:after {
    background: linear-gradient(90deg, #f59e0b, #dc2626);
    height: 6px;
    box-shadow: 0 4px 8px rgba(217, 119, 6, 0.3);
}

/* Stats Section */
body[data-theme="isometric"] .stats {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow:
        0 6px 0 rgba(217, 119, 6, 0.8),
        0 12px 30px rgba(0, 0, 0, 0.2);
}

body[data-theme="isometric"] .stats {
    color: var(--dark);
}

body[data-theme="isometric"] .stat-item h3 {
    color: var(--dark);
    text-shadow: 2px 2px 0 rgba(217, 119, 6, 0.3);
}

/* Swiper */
body[data-theme="isometric"] .swiper {
    border-radius: 12px;
    transform: perspective(1000px) rotateY(-5deg);
    box-shadow:
        0 8px 0 rgba(217, 119, 6, 0.5),
        0 16px 0 rgba(180, 83, 9, 0.4),
        0 24px 30px rgba(0, 0, 0, 0.2);
}

body[data-theme="isometric"] .swiper-pagination-bullet-active {
    background: #dc2626;
}

body[data-theme="isometric"] .swiper-button-next,
body[data-theme="isometric"] .swiper-button-prev {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 4px 0 #d97706;
}

/* Footer */
body[data-theme="isometric"] footer {
    background: linear-gradient(180deg, #451a03 0%, #78350f 100%);
    box-shadow: 0 -6px 0 rgba(217, 119, 6, 0.3);
}

body[data-theme="isometric"] .footer-col h3 {
    color: #fbbf24;
}

body[data-theme="isometric"] .footer-col h3:after {
    background: linear-gradient(90deg, #fbbf24, #dc2626);
    height: 4px;
}

body[data-theme="isometric"] .social-links a:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-8px);
    box-shadow:
        0 4px 0 #d97706,
        0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Scroll to top */
body[data-theme="isometric"] .scroll-to-top {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 12px;
    color: var(--dark);
    border: none;
    box-shadow:
        0 4px 0 #d97706,
        0 8px 0 #b45309,
        0 12px 20px rgba(0, 0, 0, 0.2);
}

body[data-theme="isometric"] .scroll-to-top:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 6px 0 #0369a1,
        0 12px 0 #075985,
        0 18px 0 #0c4a6e,
        0 24px 30px rgba(0, 0, 0, 0.3);
}

body[data-theme="isometric"] .scroll-to-top::before {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */

/* Base state - hidden before scroll */
.scroll-reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Visible state after scroll */
.scroll-reveal.revealed {
    opacity: 1;
}

/* Fade Up Animation */
.scroll-reveal.fade-up {
    transform: translateY(60px);
}

.scroll-reveal.fade-up.revealed {
    transform: translateY(0);
}

/* Slide From Left */
.scroll-reveal.slide-left {
    transform: translateX(-80px);
}

.scroll-reveal.slide-left.revealed {
    transform: translateX(0);
}

/* Slide From Right */
.scroll-reveal.slide-right {
    transform: translateX(80px);
}

.scroll-reveal.slide-right.revealed {
    transform: translateX(0);
}

/* Zoom In */
.scroll-reveal.zoom {
    transform: scale(0.8);
}

.scroll-reveal.zoom.revealed {
    transform: scale(1);
}

/* Bounce Effect */
.scroll-reveal.bounce {
    transform: translateY(60px) scale(0.9);
}

.scroll-reveal.bounce.revealed {
    transform: translateY(0) scale(1);
    animation: bounce-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounce-in {
    0% {
        transform: translateY(60px) scale(0.9);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* Stagger delays for child elements */
.scroll-reveal.delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal.delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal.delay-3 {
    transition-delay: 0.3s;
}

.scroll-reveal.delay-4 {
    transition-delay: 0.4s;
}

.scroll-reveal.delay-5 {
    transition-delay: 0.5s;
}

.scroll-reveal.delay-6 {
    transition-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 60px;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .swiper {
        height: 350px;
    }

    /* Hide section navigation on tablets and mobile */
    .section-nav {
        display: none;
    }

    /* Hide theme switcher on tablets and mobile */
    .theme-switcher {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0 0 20px 0;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .animated-text {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .swiper {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 150px 0 80px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .animated-text {
        font-size: 1.8rem;
    }

    .animated-text-container {
        height: 55px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

    .swiper {
        height: 250px;
    }
}