        :root {
            --primary-orange: #1E3A8A;
            --dark-orange: #1E3A8A;
            --light-orange: #1E3A8A;
            --dark-black: #1a1a1a;
            --light-gray: #f8f9fa;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow-x: hidden;
        }

        /* Animated Background Elements */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 127, 0, 0.02) 50%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Floating Animation */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        /* Fade In Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        /* Navbar Toggler Styles */
        .navbar-toggler {
            border: none;
            padding: 0.375rem 0.5rem;
            font-size: 1.1rem;
            background: transparent;
            border-radius: 0.375rem;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
            outline: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 58, 138, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 1.5em;
            height: 1.5em;
        }

        /* Navbar Collapse Animation */
        .navbar-collapse {
            transition: all 0.3s ease-in-out;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--primary-orange) !important;
            font-size: 1.5rem;
        }

        .nav-link {
            color: var(--dark-black) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
        }

        .nav-link:hover {
            color: var(--primary-orange) !important;
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Mobile Navigation Styles */
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding: 1rem 0;
                background: rgba(255, 255, 255, 0.98);
                border-radius: 0.5rem;
                margin-top: 0.5rem;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            }

            .nav-item {
                margin: 0.25rem 0;
            }

            .nav-link {
                padding: 0.75rem 1.5rem;
                border-radius: 0.375rem;
                margin: 0 0.5rem;
            }

            .nav-link:hover {
                background: rgba(30, 58, 138, 0.1);
                transform: translateX(5px);
            }

            .nav-link::after {
                display: none;
            }

            .navbar-brand {
                font-size: 1.3rem;
            }
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(30, 58, 138, 0.6), rgba(30, 58, 138, 0.4)),
                url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(45deg, rgba(30, 58, 138, 0.8) 0%, transparent 50%),
                radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.3) 0%, transparent 70%);
            z-index: 1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 100%;
            padding: 2rem;
        }

        .hero-caption {
            font-size: 1rem;
            color: #ffd700;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease-out 0.2s forwards;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease-out 0.4s forwards;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #f0f0f0;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
            font-weight: 400;
            line-height: 1.6;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease-out 0.6s forwards;
        }

        .btn-hero {
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            color: var(--white);
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
            text-decoration: none;
            display: inline-block;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease-out 0.8s forwards;
            position: relative;
            overflow: hidden;
        }

        .btn-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn-hero:hover::before {
            left: 100%;
        }

        .btn-hero:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(30, 58, 138, 0.6);
            color: var(--white);
        }

        /* Animation Keyframes */
        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3) translateX(-50px);
            }

            50% {
                opacity: 1;
                transform: scale(1.05) translateX(-10px);
            }

            70% {
                transform: scale(0.9) translateX(5px);
            }

            100% {
                opacity: 1;
                transform: scale(1) translateX(0);
            }
        }

        /* Floating Elements Animation */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .floating-elements::before,
        .floating-elements::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .floating-elements::before {
            width: 60px;
            height: 60px;
            top: 20%;
            right: 20%;
            animation-delay: 0s;
        }

        .floating-elements::after {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 10%;
            animation-delay: 3s;
        }

        .particle {
            position: absolute;
            background: rgba(255, 215, 0, 0.6);
            border-radius: 50%;
            animation: particleFloat 8s linear infinite;
        }

        .particle:nth-child(1) {
            width: 4px;
            height: 4px;
            top: 80%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            width: 6px;
            height: 6px;
            top: 20%;
            left: 80%;
            animation-delay: 2s;
        }

        .particle:nth-child(3) {
            width: 3px;
            height: 3px;
            top: 60%;
            left: 90%;
            animation-delay: 4s;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(0px) rotate(0deg);
                opacity: 1;
            }

            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Text Glow Effect */
        .hero-title span {
            animation: textGlow 2s ease-in-out infinite alternate;
        }

        @keyframes textGlow {
            from {
                text-shadow:
                    2px 2px 8px rgba(0, 0, 0, 0.7),
                    0 0 20px rgba(255, 215, 0, 0.5);
            }

            to {
                text-shadow:
                    2px 2px 8px rgba(0, 0, 0, 0.7),
                    0 0 0px rgba(255, 215, 0, 0.4),
                    0 0 0px rgba(255, 215, 0, 0.2);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                background-attachment: scroll;
                padding: 1rem;
            }

            .hero-content {
                padding: 1rem;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }

            .btn-hero {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .hero-caption {
                font-size: 0.9rem;
                letter-spacing: 1px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .btn-hero {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            25% {
                transform: translateY(-10px);
            }

            50% {
                transform: translateY(-5px);
            }

            75% {
                transform: translateY(-15px);
            }
        }

        /* Section Styling */
        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-black);
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-orange), var(--dark-orange));
            border-radius: 2px;
        }

        /* Cards */
        .feature-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: none;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary-orange), var(--dark-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--white);
            font-size: 2rem;
            animation: float 3s ease-in-out infinite;
        }

        /* Form Styling */
        .form-container {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(45deg, var(--primary-orange), var(--dark-orange));
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            font-weight: 600;
            color: var(--dark-black);
            margin-bottom: 0.5rem;
        }

        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #1E3A8A;
            box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
        }

        .btn-submit {
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            border: none;
            padding: 12px 40px;
            font-weight: 600;
            border-radius: 10px;
            color: var(--white);
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
            color: var(--white);
        }

        /* Contact Section */
        .contact-info {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            margin-right: 1rem;
        }

        /* Social Media */
        .social-links {
            text-align: center;
            margin-top: 2rem;
        }

        .social-link {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            margin: 0 10px;
            line-height: 50px;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px);
            color: var(--white);
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
        }

        /* Map Section */
        .map-section {
            padding: 2rem 0;
            position: relative;
        }

        .map-title {
            font-size: 2rem;
            font-weight: 600;
            color: var(--dark-black);
            margin-bottom: 2rem;
            position: relative;
        }

        .map-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            border-radius: 2px;
        }

        .map-container {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border: 3px solid #1E3A8A;
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            padding: 5px;
        }

        .map-iframe {
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
        }

        /* Full Width Map Section */
        .map-section-full {
            position: relative;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 0;
            overflow: hidden;
        }

        .map-header {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
            position: relative;
        }

        .map-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(30,58,138,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        .map-title-main {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-black);
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .map-title-main::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            border-radius: 2px;
        }

        .map-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }

        .map-container-fluid {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        }

        .map-iframe-fluid {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(20%) contrast(1.1);
            transition: all 0.5s ease;
        }

        .map-iframe-fluid:hover {
            filter: grayscale(0%) contrast(1.2);
            transform: scale(1.02);
        }

        .map-overlay {
            position: absolute;
            top: 30px;
            left: 30px;
            z-index: 10;
            pointer-events: none;
        }

        .map-info-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            max-width: 300px;
            pointer-events: auto;
            animation: slideInLeft 0.8s ease-out;
            transition: all 0.3s ease;
        }

        .map-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        .map-info-card h4 {
            color: #1E3A8A;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border-bottom: 2px solid #1E3A8A;
            padding-bottom: 0.5rem;
        }

        .map-info-card p {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #495057;
            line-height: 1.4;
        }

        .btn-map-directions {
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            border: none;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .btn-map-directions:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
            color: white;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Map Design */
        @media (max-width: 768px) {
            .map-container-fluid {
                height: 400px;
            }

            .map-overlay {
                position: static;
                padding: 20px;
                background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
            }

            .map-info-card {
                max-width: 100%;
                margin-bottom: 0;
                animation: fadeInUp 0.8s ease-out;
            }

            .map-title-main {
                font-size: 2rem;
            }

            .map-header {
                padding: 60px 0 30px;
            }
        }

        @media (max-width: 576px) {
            .map-container-fluid {
                height: 350px;
            }

            .map-info-card {
                padding: 1rem;
            }

            .map-title-main {
                font-size: 1.8rem;
            }
        }

        /* Map Loading Animation */
        .map-container-fluid::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
            z-index: 5;
            animation: mapShimmer 2s infinite;
        }

        @keyframes mapShimmer {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }

        /* Interactive Elements */
        .map-section-full::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #1E3A8A, #2563EB, #1E3A8A);
            animation: gradientSlide 3s ease-in-out infinite;
        }

        @keyframes gradientSlide {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            color: #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .footer-waves {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 1;
        }

        .footer-waves svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
            transform: rotateY(180deg);
        }

        .footer-waves .wave {
            fill: #f8faff;
        }

        .footer-content {
            padding: 5rem 0 3rem;
            position: relative;
            z-index: 2;
        }

        .footer-brand {
            margin-bottom: 2rem;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #3b82f6, #1d4ed8);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }

        .logo-icon i {
            color: white;
            font-size: 1.8rem;
        }

        .brand-text h3 {
            color: #f1f5f9;
            font-weight: 700;
            margin: 0;
            font-size: 1.5rem;
        }

        .brand-tagline {
            color: #94a3b8;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .brand-description {
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .brand-social-section {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(59, 130, 246, 0.08);
            border-radius: 16px;
            border: 1px solid rgba(59, 130, 246, 0.15);
        }

        .brand-social-title {
            color: #f1f5f9;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1rem;
            display: flex;
            align-items: center;
        }

        .brand-social-title i {
            color: #3b82f6;
        }

        .brand-social-links {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .brand-social-link {
            width: 50px;
            height: 50px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .brand-social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .brand-social-link:hover::before {
            left: 100%;
        }

        .brand-social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .brand-social-link.facebook {
            background: linear-gradient(135deg, #1877f2, #166fe5);
        }

        .brand-social-link.facebook:hover {
            box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
        }

        .brand-social-link.twitter {
            background: linear-gradient(135deg, #1da1f2, #0d8bd9);
        }

        .brand-social-link.twitter:hover {
            box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
        }

        .brand-social-link.instagram {
            background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
        }

        .brand-social-link.instagram:hover {
            box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
        }

        .brand-social-link.linkedin {
            background: linear-gradient(135deg, #0077b5, #005885);
        }

        .brand-social-link.linkedin:hover {
            box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
        }

        .brand-social-link.youtube {
            background: linear-gradient(135deg, #ff0000, #cc0000);
        }

        .brand-social-link.youtube:hover {
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
        }

        .brand-social-link i {
            font-size: 1.2rem;
            z-index: 2;
        }

        .social-description {
            color: #64748b;
            font-size: 0.85rem;
            margin: 0;
            font-style: italic;
            text-align: center;
        }

        .footer-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #3b82f6;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            color: #94a3b8;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .footer-links-section {
            height: 100%;
        }

        .footer-title {
            color: #f1f5f9;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(45deg, #3b82f6, #1d4ed8);
            border-radius: 2px;
        }

        .footer-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav li {
            margin-bottom: 0.75rem;
        }

        .footer-nav a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }

        .footer-nav a:hover {
            color: #3b82f6;
            padding-left: 15px;
        }

        .footer-nav a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: #3b82f6;
            transition: width 0.3s ease;
        }

        .footer-nav a:hover::before {
            width: 10px;
        }

        .footer-contact-section {
            height: 100%;
        }

        .contact-info-list {
            margin-bottom: 2rem;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 0.75rem 0;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            transform: translateX(5px);
        }

        .contact-info-item i {
            color: #3b82f6;
            font-size: 1rem;
            margin-top: 0.2rem;
            width: 20px;
            flex-shrink: 0;
        }

        .contact-info-item span {
            color: #94a3b8;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .newsletter-section {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .newsletter-title {
            color: #f1f5f9;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 8px;
            background: rgba(15, 23, 42, 0.5);
            color: #e2e8f0;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #3b82f6;
            background: rgba(15, 23, 42, 0.8);
        }

        .newsletter-input::placeholder {
            color: #64748b;
        }

        .newsletter-btn {
            padding: 0.75rem 1rem;
            background: linear-gradient(45deg, #3b82f6, #1d4ed8);
            border: none;
            border-radius: 8px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: linear-gradient(45deg, #2563eb, #1e40af);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .footer-social {
            margin-top: 1.5rem;
        }

        .social-title {
            color: #f1f5f9;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .social-link:hover::before {
            background: rgba(255, 255, 255, 0.2);
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .facebook {
            background: linear-gradient(45deg, #1877f2, #166fe5);
        }

        .twitter {
            background: linear-gradient(45deg, #1da1f2, #0d8bd9);
        }

        .instagram {
            background: linear-gradient(45deg, #e4405f, #fd1d1d, #fcb045);
        }

        .linkedin {
            background: linear-gradient(45deg, #0077b5, #005885);
        }

        .youtube {
            background: linear-gradient(45deg, #ff0000, #cc0000);
        }

        .footer-bottom {
            background: rgba(15, 23, 42, 0.8);
            border-top: 1px solid rgba(59, 130, 246, 0.2);
            padding: 2rem 0;
            position: relative;
            z-index: 2;
        }

        .footer-bottom-content {
            position: relative;
        }

        .copyright-section {
            margin-bottom: 1rem;
        }

        .copyright {
            color: #94a3b8;
            margin: 0 0 0.5rem 0;
            font-size: 0.9rem;
        }

        .government-info {
            color: #64748b;
            font-size: 0.85rem;
            margin: 0;
            display: flex;
            align-items: center;
        }

        .government-info i {
            color: #3b82f6;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .footer-bottom-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-bottom-links a:hover {
            color: #3b82f6;
        }

        .footer-bottom-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: #3b82f6;
            transition: width 0.3s ease;
        }

        .footer-bottom-links a:hover::after {
            width: 100%;
        }

        .footer-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: -2s;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            animation-delay: -4s;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 70%;
            animation-delay: -1s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            33% {
                transform: translateY(-20px) rotate(120deg);
            }

            66% {
                transform: translateY(10px) rotate(240deg);
            }
        }

        /* Responsive Footer */
        @media (max-width: 768px) {
            .footer-content {
                padding: 3rem 0 2rem;
            }

            .brand-logo {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }

            .brand-social-section {
                text-align: center;
            }

            .brand-social-links {
                justify-content: center;
                gap: 0.75rem;
            }

            .brand-social-link {
                width: 45px;
                height: 45px;
            }

            .brand-social-link i {
                font-size: 1.1rem;
            }

            .footer-stats {
                justify-content: center;
                gap: 1.5rem;
            }

            .footer-bottom-links {
                justify-content: center;
                margin-top: 1rem;
                gap: 1rem;
            }

            .newsletter-form {
                flex-direction: column;
                gap: 0.75rem;
            }

            .social-links {
                justify-content: center;
            }

            .copyright-section {
                text-align: center;
            }

            .government-info {
                justify-content: center;
            }
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(30, 58, 138, 0.8);
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .carousel-control-prev {
            left: 30px;
        }

        .carousel-control-next {
            right: 30px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: #1E3A8A;
            border-color: rgba(255, 255, 255, 0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            bottom: 30px;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: 2px solid rgba(30, 58, 138, 0.8);
            transition: all 0.3s ease;
        }

        .carousel-indicators .active {
            background-color: #1E3A8A;
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .form-container {
                padding: 2rem;
            }
        }

        /* Loading Animation */
        .loading {
            display: none;
        }

        .loading.show {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #ffffff;
            border-radius: 50%;
            border-top-color: var(--primary-orange);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--primary-orange), var(--dark-orange));
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(255, 127, 0, 0.3);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 127, 0, 0.5);
        }

        .scroll-to-top:active {
            transform: translateY(-1px) scale(1.05);
        }

        /* Fix About Section Spacing */
        .section {
            padding: 100px 0;
            position: relative;
            margin-top: 0;
            clear: both;
        }

        .section:first-of-type {
            margin-top: 0;
            padding-top: 120px;
        }

        /* Ensure proper spacing after hero section */
        #about {
            margin-top: 0;
            padding-top: 120px;
            background: var(--white);
            position: relative;
            z-index: 10;
        }

        /* Hero section should not interfere */
        .hero-section {
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }

        /* Section Separator */
        .section-separator {
            height: 5px;
            background: linear-gradient(90deg, #1E3A8A, #2563EB);
            width: 100%;
            position: relative;
            z-index: 5;
        }

        /* Registration Section Styles */
        .registration-section {
            background: linear-gradient(135deg, #f0f4ff 0%, #e8f2ff 50%, #f8faff 100%);
            position: relative;
            overflow: hidden;
        }

        .registration-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(30, 58, 138, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
            z-index: 1;
        }

        .registration-header {
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .registration-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
        }

        .registration-icon i {
            color: white;
            font-size: 2rem;
        }

        .registration-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 2rem;
        }

        .registration-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e5e7eb;
            color: #6b7280;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .step.active .step-number {
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            color: white;
            box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
        }

        .step span {
            font-size: 0.875rem;
            font-weight: 500;
            color: #6b7280;
        }

        .step.active span {
            color: #1E3A8A;
            font-weight: 600;
        }

        .step-line {
            width: 60px;
            height: 2px;
            background: #e5e7eb;
        }

        .registration-form-container {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 2;
            border: 1px solid rgba(30, 58, 138, 0.1);
        }

        .form-header {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid #f3f4f6;
        }

        .form-title {
            color: #1f2937;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .form-subtitle {
            color: #6b7280;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .form-section {
            margin-bottom: 2rem;
        }

        .section-header {
            color: #1E3A8A;
            font-weight: 600;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0f4ff;
        }

        .floating-label {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .floating-label .form-control {
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            /* padding: 1rem 1rem 1rem 3rem; */
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafbfc;
        }

        .floating-label .form-control:focus {
            border-color: #1E3A8A;
            box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
            background: white;
            outline: none;
        }

        .floating-label .form-label {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: #fafbfc;
            padding: 0 0.5rem;
            color: #6b7280;
            font-weight: 500;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .floating-label .form-control:focus+.form-label,
        .floating-label .form-control:not(:placeholder-shown)+.form-label {
            top: 0;
            font-size: 0.85rem;
            color: #1E3A8A;
            background: white;
        }

        .form-actions {
            margin-top: 2rem;
            text-align: center;
        }

        .btn-registration-submit {
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            border: none;
            padding: 1rem 3rem;
            font-weight: 600;
            border-radius: 12px;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 200px;
        }

        .btn-registration-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(30, 58, 138, 0.3);
            background: linear-gradient(45deg, #1e40af, #3b82f6);
        }

        .btn-registration-submit .btn-loading {
            display: none;
        }

        .btn-registration-submit.loading .btn-text {
            display: none;
        }

        .btn-registration-submit.loading .btn-loading {
            display: inline;
        }

        .registration-success-message {
            background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
            border: 2px solid #10b981;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .success-icon {
            width: 60px;
            height: 60px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .success-icon i {
            color: white;
            font-size: 1.5rem;
        }

        .registration-success-message h5 {
            color: #065f46;
            margin-bottom: 0.5rem;
        }

        .registration-success-message p {
            color: #047857;
            margin-bottom: 0;
        }

        .registration-info-panel {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 2;
            border: 1px solid rgba(30, 58, 138, 0.1);
            height: fit-content;
        }

        .info-header {
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f3f4f6;
        }

        .info-title {
            color: #1f2937;
            font-weight: 600;
        }

        .info-content {
            margin-bottom: 2rem;
        }

        .info-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: #f9fafb;
            border-radius: 12px;
            border-left: 4px solid #1E3A8A;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon i {
            color: white;
            font-size: 1rem;
        }

        .info-text h6 {
            color: #1f2937;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .info-text p {
            color: #6b7280;
            font-size: 0.9rem;
            margin-bottom: 0;
            line-height: 1.5;
        }

        .help-section {
            background: linear-gradient(135deg, #eff6ff, #f0f9ff);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #dbeafe;
        }

        .help-title {
            color: #1E3A8A;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .help-contact {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .help-link {
            color: #1E3A8A;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .help-link:hover {
            background: white;
            color: #1e40af;
            transform: translateX(4px);
        }        /* Responsive Design */
        @media (max-width: 768px) {
            .registration-steps {
                flex-direction: column;
                gap: 1rem;
            }

            .step-line {
                width: 2px;
                height: 30px;
            }

            .registration-form-container,
            .registration-info-panel {
                padding: 1.25rem;
                margin-bottom: 1.5rem;
            }

            .floating-label .form-control {
                padding: 0.875rem 0.875rem 0.875rem 2.5rem;
                font-size: 0.95rem;
            }

            .floating-label label {
                font-size: 0.9rem;
                padding-left: 2.5rem;
            }

            .form-section {
                margin-bottom: 1.5rem;
            }

            .section-header {
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .btn-registration-submit {
                width: 100%;
                padding: 1rem;
                font-size: 1rem;
            }

            .registration-header {
                margin-bottom: 1.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .registration-subtitle {
                font-size: 1rem;
            }

            .form-title {
                font-size: 1.2rem;
            }

            .form-subtitle {
                font-size: 0.9rem;
            }

            .info-title {
                font-size: 1.2rem;
            }

            .info-item {
                padding: 1rem;
                margin-bottom: 1rem;
            }

            .info-icon {
                width: 45px;
                height: 45px;
            }

            .info-text h6 {
                font-size: 0.95rem;
            }

            .info-text p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            .registration-section {
                padding: 60px 0;
            }

            .registration-form-container,
            .registration-info-panel {
                padding: 1rem;
            }

            .floating-label .form-control {
                padding: 0.75rem 0.75rem 0.75rem 2.25rem;
                font-size: 0.9rem;
            }

            .floating-label label {
                font-size: 0.85rem;
                padding-left: 2.25rem;
            }

            .btn-registration-submit {
                padding: 0.875rem;
                font-size: 0.95rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .form-title {
                font-size: 1.1rem;
            }

            .info-title {
                font-size: 1.1rem;
            }

            .info-item {
                padding: 0.875rem;
            }

            .info-icon {
                width: 40px;
                height: 40px;
            }

            .info-icon i {
                font-size: 0.9rem;
            }

            .info-text h6 {
                font-size: 0.9rem;
            }

            .info-text p {
                font-size: 0.8rem;
            }

            .col-6 {
                margin-bottom: 1rem;
            }

            .row .col-6:last-child {
                margin-bottom: 0;
            }
        }

        /* Contact Section Styles */
        .contact-section {
            background: linear-gradient(135deg, #f8faff 0%, #eff6ff 50%, #f0f9ff 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 30%, rgba(30, 58, 138, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
            z-index: 1;
        }

        .contact-header {
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .contact-icon-header {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
        }

        .contact-icon-header i {
            color: white;
            font-size: 2rem;
        }

        .contact-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 0;
        }

        .contact-form-container {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 2;
            border: 1px solid rgba(30, 58, 138, 0.1);
        }

        .modern-contact-form .floating-label select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 1rem center;
            background-repeat: no-repeat;
            background-size: 1.5em 1.5em;
            padding-right: 3rem;
        }

        .modern-contact-form .floating-label textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn-contact-submit {
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            border: none;
            padding: 1rem 3rem;
            font-weight: 600;
            border-radius: 12px;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 200px;
        }

        .btn-contact-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(30, 58, 138, 0.3);
            background: linear-gradient(45deg, #1e40af, #3b82f6);
        }

        .btn-contact-submit .btn-loading {
            display: none;
        }

        .btn-contact-submit.loading .btn-text {
            display: none;
        }

        .btn-contact-submit.loading .btn-loading {
            display: inline;
        }

        .contact-success-message {
            background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
            border: 2px solid #10b981;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .contact-success-message .success-icon {
            width: 60px;
            height: 60px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .contact-success-message h5 {
            color: #065f46;
            margin-bottom: 0.5rem;
        }

        .contact-success-message p {
            color: #047857;
            margin-bottom: 0;
        }

        .quick-contact-panel {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 2;
            border: 1px solid rgba(30, 58, 138, 0.1);
            height: fit-content;
        }

        .quick-contact-header {
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f3f4f6;
        }

        .panel-title {
            color: #1f2937;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .panel-subtitle {
            color: #6b7280;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .quick-contact-items {
            margin-bottom: 2rem;
        }

        .quick-contact-item {
            background: #f9fafb;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid #1E3A8A;
            transition: all 0.3s ease;
        }

        .quick-contact-item:hover {
            background: #f3f4f6;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .quick-contact-item:last-child {
            margin-bottom: 0;
        }

        .quick-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .phone-icon {
            background: linear-gradient(45deg, #10b981, #059669);
        }

        .email-icon {
            background: linear-gradient(45deg, #3b82f6, #2563eb);
        }

        .time-icon {
            background: linear-gradient(45deg, #f59e0b, #d97706);
        }

        .quick-icon i {
            color: white;
            font-size: 1.2rem;
        }

        .quick-details h6 {
            color: #1f2937;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .quick-details p {
            color: #6b7280;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .quick-btn {
            background: linear-gradient(45deg, #1E3A8A, #2563EB);
            color: white;
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .quick-btn:hover {
            background: linear-gradient(45deg, #1e40af, #3b82f6);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
        }

        .emergency-contact {
            background: linear-gradient(135deg, #fef2f2, #fef7f7);
            border-radius: 16px;
            padding: 1.5rem;
            border: 2px solid #fecaca;
            text-align: center;
        }

        .emergency-title {
            color: #dc2626;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .emergency-contact p {
            color: #7f1d1d;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .emergency-btn {
            background: linear-gradient(45deg, #dc2626, #b91c1c);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .emergency-btn:hover {
            background: linear-gradient(45deg, #b91c1c, #991b1b);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
        }

        /* Responsive Contact Design */
        @media (max-width: 768px) {

            .contact-form-container,
            .quick-contact-panel {
                padding: 1.5rem;
            }

            .quick-contact-item {
                padding: 1.25rem;
            }

            .emergency-contact {
                padding: 1.25rem;
            }
        }

        /* Responsive Footer */
        @media (max-width: 768px) {
            .footer-content {
                padding: 3rem 0 1.5rem;
            }

            .footer-bottom-links {
                justify-content: center;
                margin-top: 1rem;
            }

            .help-buttons {
                flex-direction: column;
            }

            .help-btn {
                min-width: auto;
            }
        }