:root {
            --primary-color: #E8F5E9;
            --secondary-color: #2D5F3F;
            --accent-color: #B4A7D6;
            --accent-yellow: #F39C12;
            --accent-blue: #3498DB;
            --accent-teal: #1ABC9C;
            --accent-red: #E74C3C;
            --card-bg: #FFF9E6;
        }

        * {
            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;
            }
        }

        /* Preloader */
        .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);
        }

        .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;
        }

        .preloader p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Navigation */
        .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;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(45, 95, 63, 0.3);
            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);
        }

        .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-color);
            color: var(--primary-color) !important;
            transform: translateX(10px) scale(1.02);
            box-shadow: 0 4px 15px rgba(180, 167, 214, 0.5);
        }

        /* Hero Section */
        .page-hero {
            background: var(--primary-color);
            color: var(--secondary-color);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
            min-height: 50vh;
            display: flex;
            align-items: center;
            border-bottom: 3px solid var(--accent-color);
        }

        .page-hero::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% 80%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--secondary-color);
            text-shadow: 0 4px 20px rgba(45, 95, 63, 0.2);
        }

        .page-hero p {
            font-size: 1.5rem;
            opacity: 0.95;
            color: var(--secondary-color);
        }

        /* Content Section */
        .content-section {
            background: var(--primary-color);
            padding: 100px 0;
            position: relative;
        }

        /* Contact Info Cards */
        .contact-info-card {
            background: var(--card-bg);
            border-radius: 25px;
            padding: 2.5rem;
            height: 100%;
            box-shadow: 0 10px 40px rgba(45, 95, 63, 0.15);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
            border: 2px solid var(--accent-blue);
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--accent-teal);
        }

        .contact-info-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(26, 188, 156, 0.1), 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);
            }
        }

        .contact-info-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(26, 188, 156, 0.3);
            border-color: var(--accent-teal);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: var(--accent-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(26, 188, 156, 0.3);
        }

        .contact-info-card:hover .card-icon {
            transform: scale(1.1) rotate(360deg);
            background: var(--accent-color);
        }

        .card-icon i {
            font-size: 2rem;
            color: var(--primary-color);
        }

        .contact-info-card h4 {
            color: var(--accent-teal);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-info-card:hover h4 {
            color: var(--accent-color);
        }

        .contact-info-card p {
            color: var(--secondary-color);
            line-height: 1.8;
            margin: 0;
            text-align: center;
            opacity: 0.9;
        }

        /* Contact Form */
        .contact-form {
            background: var(--card-bg);
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(45, 95, 63, 0.15);
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid var(--accent-blue);
        }

        .contact-form.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-form h3 {
            color: var(--accent-teal);
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .form-label {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .form-control,
        .form-select {
            border: 2px solid var(--accent-blue);
            border-radius: 12px;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
            background: white;
            color: var(--secondary-color);
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--accent-teal);
            box-shadow: 0 0 0 0.2rem rgba(26, 188, 156, 0.25);
        }

        .btn-submit {
            background: var(--accent-teal);
            border: none;
            color: var(--primary-color);
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(26, 188, 156, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(26, 188, 156, 0.6);
            background: var(--accent-color);
        }

        /* Regional Contacts */
        .regional-section {
            margin-top: 5rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .regional-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .regional-section h3 {
            color: var(--accent-teal);
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 2rem;
            text-align: center;
        }

        .regional-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(45, 95, 63, 0.15);
            transition: all 0.4s ease;
            border: 2px solid var(--accent-blue);
            border-left: 5px solid var(--accent-color);
        }

        .regional-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(26, 188, 156, 0.3);
            border-left-width: 8px;
            border-color: var(--accent-teal);
        }

        .regional-card h5 {
            color: var(--accent-teal);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .regional-card p {
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .regional-card i {
            color: var(--accent-teal);
            margin-right: 0.5rem;
        }

        /* Scroll to top */
        .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);
        }

        .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);
            background: var(--accent-teal);
        }

        /* 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 h5 {
            color: var(--accent-teal);
            margin-bottom: 1.5rem;
            font-weight: 700;
            font-size: 1.3rem;
            position: relative;
            display: inline-block;
        }

        footer h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-teal);
        }

        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;
        }

        footer p {
            color: var(--secondary-color);
        }

        .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;
        }

        .social-icons a::before {
            display: none;
        }

        .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);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }

            .page-hero p {
                font-size: 1.2rem;
            }

            .contact-form {
                padding: 2rem;
            }
        }