:root {
            /* Better Pastel Color Palette with High Contrast */
            --primary-color: #E8F5E9;
            /* Very light mint - Primary BG */
            --secondary-color: #2D5F3F;
            /* Dark forest green - Primary text */
            --accent-color: #B4A7D6;
            /* Soft lavender purple */
            --accent-purple: #9B59B6;
            /* Rich purple */
            --accent-yellow: #F39C12;
            /* Warm orange */
            --accent-blue: #3498DB;
            /* Bright blue */
            --accent-teal: #1ABC9C;
            /* Vibrant teal */
            --accent-pink: #FF6B9D;
            /* Hot pink - for particles */
            --card-bg: #FFF9E6;
            /* Soft cream for cards */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--secondary-color);
            overflow-x: hidden;
            background: var(--primary-color);
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Enhanced Preloader with Pastel Colors */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 1;
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .preloader.hidden {
            opacity: 0;
            transform: scale(1.1);
            pointer-events: none;
        }

        .preloader-content {
            text-align: center;
            color: var(--secondary-color);
            animation: floatIn 1s ease-out;
        }

        @keyframes floatIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cricket-loader {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
        }

        .cricket-ball-loader {
            position: absolute;
            width: 40px;
            height: 40px;
            background: var(--accent-teal);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            margin: -20px 0 0 -20px;
            animation: bounce-loader 1s ease-in-out infinite;
            box-shadow: 0 10px 30px rgba(26, 188, 156, 0.5);
        }

        .cricket-ball-loader::before,
        .cricket-ball-loader::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--secondary-color);
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .cricket-ball-loader::after {
            transform: translateY(-50%) rotate(90deg);
        }

        @keyframes bounce-loader {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-30px) scale(1.1);
            }
        }

        .stumps-loader {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .stump {
            width: 6px;
            height: 60px;
            background: var(--accent-yellow);
            border-radius: 3px;
            animation: stump-wave 1.5s ease-in-out infinite;
        }

        .stump:nth-child(1) {
            animation-delay: 0s;
        }

        .stump:nth-child(2) {
            animation-delay: 0.2s;
        }

        .stump:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes stump-wave {

            0%,
            100% {
                transform: scaleY(1);
                opacity: 0.5;
            }

            50% {
                transform: scaleY(1.3);
                opacity: 1;
            }
        }

        .preloader h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            animation: pulse 2s ease-in-out infinite;
        }

        .preloader p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .loading-bar {
            width: 200px;
            height: 4px;
            background: rgba(45, 95, 63, 0.2);
            margin: 2rem auto 0;
            border-radius: 2px;
            overflow: hidden;
        }

        .loading-progress {
            height: 100%;
            background: var(--accent-teal);
            animation: loading-progress 2s ease-in-out infinite;
        }

        @keyframes loading-progress {
            0% {
                width: 0%;
            }

            50% {
                width: 70%;
            }

            100% {
                width: 100%;
            }
        }

        /* Full Screen Hero Carousel with Pastel Overlay */
        .hero-carousel {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 700px;
            overflow: hidden;
            background: var(--primary-color);
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-track {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            z-index: 1;
        }

        .carousel-slide.active {
            opacity: 1;
            z-index: 2;
            animation: slideZoom 20s ease-in-out infinite;
        }

        @keyframes slideZoom {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .carousel-media {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            opacity: 0.75;
            z-index: 2;
            animation: overlayPulse 10s ease-in-out infinite;
        }

        @keyframes overlayPulse {

            0%,
            100% {
                opacity: 0.75;
            }

            50% {
                opacity: 0.85;
            }
        }

        /* Hero Content with Enhanced Animations */
        .hero-content-overlay {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            z-index: 10;
            padding: 2rem 0;
        }

        .hero-content-overlay h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
            text-shadow: 0 4px 20px rgba(45, 95, 63, 0.2);
            animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1), textGlow 3s ease-in-out infinite;
            line-height: 1.2;
        }

        @keyframes textGlow {

            0%,
            100% {
                text-shadow: 0 4px 20px rgba(45, 95, 63, 0.2);
            }

            50% {
                text-shadow: 0 4px 30px rgba(243, 156, 18, 0.4), 0 0 50px rgba(180, 167, 214, 0.3);
            }
        }

        .hero-content-overlay p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            color: var(--secondary-color);
            animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both, fadeInOut 4s ease-in-out infinite;
            line-height: 1.8;
            text-shadow: 0 2px 10px rgba(45, 95, 63, 0.3);
        }

        @keyframes fadeInOut {

            0%,
            100% {
                opacity: 0.95;
            }

            50% {
                opacity: 1;
            }
        }

        .hero-buttons {
            animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-buttons .btn {
            padding: 1rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            border: 3px solid var(--secondary-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: buttonFloat 3s ease-in-out infinite;
        }

        @keyframes buttonFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .hero-buttons .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(180, 167, 214, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .hero-buttons .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 170, 165, 0.6);
            animation: none;
        }

        .hero-buttons .btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .hero-buttons .btn-light {
            background: var(--accent-color);
            color: var(--primary-color);
        }

        .hero-buttons .btn-outline-light {
            background: transparent;
            color: var(--secondary-color);
        }

        .hero-buttons .btn-outline-light:hover {
            background: var(--accent-color);
            color: var(--primary-color);
        }

        /* Animated Floating Cricket Elements */
        .cricket-element {
            position: absolute;
            opacity: 0.15;
            pointer-events: none;
            color: var(--accent-purple);
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
        }

        .cricket-element:nth-child(1) {
            top: 10%;
            left: 5%;
            font-size: 4rem;
            animation: float1 8s, spin 20s linear infinite;
        }

        .cricket-element:nth-child(2) {
            top: 70%;
            right: 10%;
            font-size: 3rem;
            animation: float2 10s, spin 15s linear infinite reverse;
        }

        .cricket-element:nth-child(3) {
            bottom: 15%;
            left: 15%;
            font-size: 5rem;
            animation: float3 12s, pulse 4s infinite;
        }

        @keyframes float1 {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(30px, -30px) rotate(180deg);
            }
        }

        @keyframes float2 {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(-40px, 20px) rotate(-180deg);
            }
        }

        @keyframes float3 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(20px, -40px) scale(1.2);
            }
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.2;
            }

            50% {
                opacity: 0.4;
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Enhanced Carousel Controls with Pastel Colors */
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 15;
            width: 60px;
            height: 60px;
            background: var(--accent-color);
            backdrop-filter: blur(10px);
            border: 2px solid var(--secondary-color);
            border-radius: 50%;
            color: var(--primary-color);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: controlPulse 2s ease-in-out infinite;
        }

        @keyframes controlPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(180, 167, 214, 0.7);
            }

            50% {
                box-shadow: 0 0 0 15px rgba(180, 167, 214, 0);
            }
        }

        .carousel-control:hover {
            background: var(--accent-teal);
            transform: translateY(-50%) scale(1.2);
            box-shadow: 0 5px 20px rgba(26, 188, 156, 0.8);
            animation: none;
        }

        .carousel-control.prev {
            left: 30px;
        }

        .carousel-control.next {
            right: 30px;
        }

        /* Enhanced Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 15;
            display: flex;
            gap: 12px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            background: rgba(45, 95, 63, 0.3);
            border: 2px solid var(--secondary-color);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
            animation: indicatorBounce 2s ease-in-out infinite;
        }

        @keyframes indicatorBounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .indicator:hover {
            background: var(--accent-yellow);
            transform: scale(1.3);
        }

        .indicator.active {
            background: var(--accent-color);
            width: 40px;
            border-radius: 6px;
            animation: indicatorGlow 1.5s ease-in-out infinite;
        }

        @keyframes indicatorGlow {

            0%,
            100% {
                box-shadow: 0 0 10px rgba(180, 167, 214, 0.5);
            }

            50% {
                box-shadow: 0 0 20px rgba(180, 167, 214, 0.8);
            }
        }

        /* Animated Particles with Pastel Colors */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--accent-teal);
            border-radius: 50%;
            animation: floatParticle 15s infinite ease-in-out;
            box-shadow: 0 0 10px rgba(26, 188, 156, 0.6);
        }

        @keyframes floatParticle {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translate(var(--tx), var(--ty)) scale(0);
                opacity: 0;
            }
        }

        /* Enhanced Navigation with Pastel Colors */
        .navbar {
            background: var(--accent-color);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(45, 95, 63, 0.2);
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1000;
            border-bottom: 3px solid transparent;
            animation: navSlideDown 0.8s ease-out;
        }

        @keyframes navSlideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(45, 95, 63, 0.3);
            background: var(--accent-color);
            border-bottom-color: var(--accent-teal);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            transform: translateX(5px) scale(1.05);
            color: var(--secondary-color);
        }

        .navbar-brand i {
            font-size: 2rem;
            color: var(--primary-color);
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-5px) rotate(10deg);
            }
        }

        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 600;
            margin: 0 0.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover::before {
            left: 0;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 40px rgba(45, 95, 63, 0.2);
            border-radius: 15px;
            padding: 1rem;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-item {
            border-radius: 10px;
            padding: 0.75rem 1.25rem;
            transition: all 0.3s ease;
            margin: 0.25rem 0;
            color: var(--secondary-color);
        }

        .dropdown-item:hover {
            background: var(--accent-teal);
            color: var(--primary-color) !important;
            transform: translateX(10px) scale(1.02);
            box-shadow: 0 4px 15px rgba(26, 188, 156, 0.4);
        }

        /* Enhanced Content Section */
        .content-section {
            padding: 100px 0;
            position: relative;
            background: var(--primary-color);
            overflow: hidden;
        }

        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(243, 156, 18, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(155, 89, 182, 0.15) 0%, transparent 50%);
            animation: backgroundFloat 20s ease-in-out infinite;
        }

        @keyframes backgroundFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(30px, -30px) scale(1.1);
            }
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            display: inline-block;
            width: 100%;
            animation: titleFloat 3s ease-in-out infinite;
        }

        @keyframes titleFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
            animation: lineExpand 2s ease-in-out infinite;
        }

        @keyframes lineExpand {

            0%,
            100% {
                width: 100px;
            }

            50% {
                width: 150px;
            }
        }

        .section-title.animate {
            animation: fadeInUp 0.8s ease-out forwards, titleFloat 3s ease-in-out infinite 0.8s;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--secondary-color);
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            line-height: 1.8;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-subtitle.animate {
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Enhanced Feature Cards with Pastel Colors */
        .custom-card {
            border: none;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(45, 95, 63, 0.2);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px) rotateX(10deg);
            background: var(--card-bg);
            position: relative;
            border: 2px solid var(--accent-teal);
        }

        .custom-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--accent-teal);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .custom-card:hover::before {
            transform: scaleX(1);
        }

        .custom-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 244, 163, 0.3), transparent);
            animation: shimmer 3s linear infinite;
            pointer-events: none;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .custom-card.animate {
            opacity: 1;
            transform: translateY(0) rotateX(0deg);
            animation: cardFloat 4s ease-in-out infinite;
        }

        @keyframes cardFloat {

            0%,
            100% {
                transform: translateY(0) rotateX(0deg);
            }

            50% {
                transform: translateY(-10px) rotateX(2deg);
            }
        }

        .custom-card:nth-child(1) {
            transition-delay: 0.3s;
        }

        .custom-card:nth-child(2) {
            transition-delay: 0.4s;
        }

        .custom-card:nth-child(3) {
            transition-delay: 0.5s;
        }

        .custom-card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 25px 60px rgba(26, 188, 156, 0.4);
            animation: none;
        }

        .card-body {
            padding: 3rem 2rem;
            position: relative;
            z-index: 1;
        }

        .card-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: var(--accent-teal);
            display: inline-block;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            animation: iconSpin 10s linear infinite;
        }

        @keyframes iconSpin {

            0%,
            90%,
            100% {
                transform: rotate(0deg) scale(1);
            }

            95% {
                transform: rotate(360deg) scale(1.2);
            }
        }

        .custom-card:hover .card-icon {
            transform: scale(1.3) rotateY(360deg);
            animation: none;
        }

        .custom-card h4 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .custom-card:hover h4 {
            transform: translateX(5px);
        }

        .custom-card p {
            color: var(--secondary-color);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        --text-light);
        line-height: 1.8;
        font-size: 1.1rem;
        }

        /* Enhanced Newsletter Section */
        .newsletter-section {
            background: var(--card-bg);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            z-index: 10;
            border-top: 3px solid var(--accent-color);
            border-bottom: 3px solid var(--accent-color);
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
            animation: newsletterPulse 8s ease-in-out infinite;
        }

        @keyframes newsletterPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.5;
            }

            50% {
                transform: scale(1.1);
                opacity: 1;
            }
        }

        .newsletter-section::after {
            content: '✉';
            position: absolute;
            font-size: 15rem;
            opacity: 0.05;
            color: var(--accent-purple);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: iconRotate 20s linear infinite;
            pointer-events: none;
        }

        @keyframes iconRotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .newsletter-content {
            position: relative;
            z-index: 2;
            opacity: 1;
            transform: scale(1);
        }

        .newsletter-content.animate {
            animation: zoomIn 0.8s ease-out forwards, contentFloat 4s ease-in-out infinite 0.8s;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes contentFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .newsletter-section h2 {
            color: var(--secondary-color);
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            animation: textBounce 2s ease-in-out infinite;
        }

        @keyframes textBounce {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .newsletter-section p {
            color: var(--secondary-color);
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
            animation: formSlide 1s ease-out 0.3s both;
        }

        @keyframes formSlide {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .newsletter-form .form-control {
            height: 60px;
            border-radius: 50px;
            border: 3px solid var(--secondary-color);
            padding: 0 2rem;
            font-size: 1.1rem;
            background: var(--primary-color);
            transition: all 0.3s ease;
            color: var(--secondary-color);
        }

        .newsletter-form .form-control:focus {
            background: var(--primary-color);
            box-shadow: 0 10px 40px rgba(26, 188, 156, 0.4);
            transform: translateY(-3px);
            outline: none;
            border-color: var(--accent-teal);
        }

        .newsletter-form .form-control::placeholder {
            color: var(--secondary-color);
            opacity: 0.6;
        }

        .newsletter-form .btn {
            height: 60px;
            border-radius: 50px;
            padding: 0 3rem;
            font-weight: 700;
            font-size: 1.1rem;
            background: var(--accent-teal);
            border: none;
            color: var(--primary-color);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: buttonGlow 2s ease-in-out infinite;
        }

        @keyframes buttonGlow {

            0%,
            100% {
                box-shadow: 0 5px 20px rgba(26, 188, 156, 0.4);
            }

            50% {
                box-shadow: 0 5px 30px rgba(26, 188, 156, 0.7);
            }
        }

        .newsletter-form .btn:hover {
            background: var(--accent-color);
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 10px 30px rgba(180, 167, 214, 0.6);
            animation: none;
        }

        /* Enhanced Footer */
        footer {
            background: var(--card-bg);
            color: var(--secondary-color);
            padding: 4rem 0 2rem;
            position: relative;
            overflow: hidden;
            border-top: 3px solid var(--accent-teal);
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-color);
            animation: shimmerLine 3s linear infinite;
            background-size: 200% 100%;
        }

        @keyframes shimmerLine {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        footer h5 {
            color: var(--accent-teal);
            margin-bottom: 1.5rem;
            font-weight: 700;
            font-size: 1.3rem;
            position: relative;
            display: inline-block;
            animation: headingFloat 3s ease-in-out infinite;
        }

        @keyframes headingFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        footer h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-teal);
            animation: lineGrow 2s ease-in-out infinite;
        }

        @keyframes lineGrow {

            0%,
            100% {
                width: 50px;
            }

            50% {
                width: 80px;
            }
        }

        footer a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 20px;
        }

        footer a::before {
            content: '▸';
            position: absolute;
            left: 0;
            opacity: 0;
            transition: all 0.3s ease;
            color: var(--accent-teal);
        }

        footer a:hover {
            color: var(--accent-teal);
            transform: translateX(10px);
        }

        footer a:hover::before {
            opacity: 1;
            left: -5px;
            animation: arrowBounce 0.5s ease-in-out infinite;
        }

        @keyframes arrowBounce {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(5px);
            }
        }

        .social-icons a {
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            background: var(--accent-teal);
            color: var(--primary-color);
            margin: 0 0.5rem;
            font-size: 1.5rem;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            padding-left: 0;
            animation: socialFloat 3s ease-in-out infinite;
        }

        @keyframes socialFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .social-icons a::before {
            display: none;
        }

        .social-icons a:nth-child(1) {
            animation-delay: 0s;
        }

        .social-icons a:nth-child(2) {
            animation-delay: 0.2s;
        }

        .social-icons a:nth-child(3) {
            animation-delay: 0.4s;
        }

        .social-icons a:nth-child(4) {
            animation-delay: 0.6s;
        }

        .social-icons a:hover {
            background: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-10px) rotate(360deg) scale(1.2);
            box-shadow: 0 10px 30px rgba(180, 167, 214, 0.6);
            animation: none;
        }

        /* Enhanced Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--accent-color);
            color: var(--primary-color);
            border: 3px solid var(--secondary-color);
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            transform: translateY(100px) scale(0);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
            box-shadow: 0 8px 25px rgba(180, 167, 214, 0.5);
            animation: buttonPulse 2s ease-in-out infinite;
        }

        @keyframes buttonPulse {

            0%,
            100% {
                box-shadow: 0 8px 25px rgba(180, 167, 214, 0.5);
            }

            50% {
                box-shadow: 0 8px 35px rgba(180, 167, 214, 0.8), 0 0 0 10px rgba(180, 167, 214, 0.2);
            }
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .scroll-top:hover {
            transform: translateY(-8px) scale(1.1) rotate(360deg);
            box-shadow: 0 15px 40px rgba(26, 188, 156, 0.8);
            animation: none;
            background: var(--accent-teal);
        }

        .scroll-top i {
            animation: arrowUp 1.5s ease-in-out infinite;
        }

        @keyframes arrowUp {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        /* Decorative Floating Shapes */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            pointer-events: none;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            background: var(--accent-yellow);
            top: 10%;
            left: 5%;
            animation: float1 15s ease-in-out infinite;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            background: var(--accent-purple);
            top: 60%;
            right: 10%;
            animation: float2 20s ease-in-out infinite;
        }

        .shape-3 {
            width: 180px;
            height: 180px;
            background: var(--accent-blue);
            bottom: 20%;
            left: 50%;
            animation: float3 18s ease-in-out infinite;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content-overlay h1 {
                font-size: 2.5rem;
            }

            .hero-content-overlay p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .newsletter-section h2 {
                font-size: 2rem;
            }

            .newsletter-section p {
                font-size: 1.1rem;
            }

            .newsletter-form .form-control,
            .newsletter-form .btn {
                height: 50px;
                font-size: 1rem;
            }
        }

        /* Additional Sparkle Effects */
        @keyframes sparkle {

            0%,
            100% {
                opacity: 0;
                transform: scale(0);
            }

            50% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-teal);
            border-radius: 50%;
            animation: sparkle 2s ease-in-out infinite;
            pointer-events: none;
        }