       :root {
            --dark-blue: #0a1435;
            --light-blue: #2563eb;
            --accent: #7e22ce;
            --yellow: #fcd980;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --dark-gray: #1e293b;
            --gradient: linear-gradient(135deg, var(--light-blue) 0%, var(--accent) 100%);
            --transition: all 0.3s ease;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 15px 40px rgba(37, 99, 235, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
            background-color: #f9f9f9;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Office Hours Banner */
        .office-hours-banner {
            background: var(--gradient);
            color: var(--white);
            padding: 12px 0;
            text-align: center;
            font-weight: 500;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .office-hours-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
        }

        .office-hours-banner .container {
            position: relative;
            z-index: 2;
        }

        /* Breadcrumb - Reduced margin */
        .breadcrumb {
            background: linear-gradient(90deg, #eef4fa 0%, #f0f4ff 100%);
            padding: 15px 0;
            margin-bottom: 20px; /* Reduced space below breadcrumb */
        }

        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            color: var(--dark-blue);
            opacity: 0.7;
        }

        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
        }

        .breadcrumb a {
            color: var(--dark-blue);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--light-blue);
            text-decoration: underline;
        }

        /* Contact Header - Reduced padding and smaller line */
        .contact-header {
            text-align: center;
            padding: 30px 0 20px; /* Reduced padding */
            position: relative;
            margin-bottom: 10px; /* Added margin to create space for the line */
        }

        .contact-header::before {
            content: '';
            position: absolute;
            bottom: 0; /* Position at the bottom of the header */
            left: 50%;
            transform: translateX(-50%);
            width: 60px; /* Shorter line */
            height: 4px; /* Thinner line */
            background: var(--gradient);
            border-radius: 2px;
        }

        .contact-header h1 {
            font-size: 2.5rem; /* Slightly smaller */
            color: var(--dark-blue);
            margin-bottom: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-header p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            text-align: justify;
        }

        /* Contact Content */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px; /* Reduced gap */
            margin: 30px 0 50px; /* Reduced margin */
        }

        /* Contact Info Card */
        .contact-info-card {
            background: var(--white);
            padding: 30px; /* Reduced padding */
            border-radius: 16px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient);
            z-index: 2;
        }

        .contact-info-card h2 {
            color: var(--dark-blue);
            margin-bottom: 25px;
            font-size: 1.6rem; /* Slightly smaller */
            font-family: 'Montserrat', sans-serif;
            position: relative;
            padding-bottom: 12px;
        }

        .contact-info-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px; /* Shorter line */
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px; /* Reduced gap */
            margin-bottom: 20px; /* Reduced margin */
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateX(5px);
        }

        .contact-icon {
            width: 50px; /* Slightly smaller */
            height: 50px;
            background: var(--light-gray);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .contact-item:hover .contact-icon {
            background: #2405f2;
        }

        .contact-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #2405f2;
            opacity: 0;
            transition: var(--transition);
        }

        .contact-item:hover .contact-icon::before {
            opacity: 1;
        }

        .contact-icon img {
            width: 24px; /* Slightly smaller */
            height: 24px;
            z-index: 2;
            position: relative;
            filter: invert(33%) sepia(89%) saturate(1004%) hue-rotate(202deg) brightness(93%) contrast(93%);
            transition: var(--transition);
        }

        .contact-item:hover .contact-icon img {
            filter: brightness(0) invert(1);
        }

        .contact-details h3 {
            color: var(--dark-blue);
            margin-bottom: 6px;
            font-size: 1.1rem; /* Slightly smaller */
            font-family: 'Montserrat', sans-serif;
        }

        .contact-details p {
            color: #64748b;
            line-height: 1.6;
            font-size: 0.95rem; /* Slightly smaller */
            text-align: justify;
        }

        .contact-details a {
            color: var(--light-blue);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        .contact-details a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--light-blue);
            transition: var(--transition);
        }

        .contact-details a:hover {
            color: #2405f2;
        }

        .contact-details a:hover::after {
            width: 100%;
            background: #2405f2;
        }

        /* Map Section */
        .map-section {
            background: var(--white);
            padding: 30px; /* Reduced padding */
            border-radius: 16px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .map-section:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .map-container h2 {
            color: var(--dark-blue);
            margin-bottom: 20px;
            font-size: 1.6rem; /* Slightly smaller */
            font-family: 'Montserrat', sans-serif;
            position: relative;
            padding-bottom: 12px;
        }

        .map-container h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px; /* Shorter line */
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }

        #map {
            height: 350px; /* Slightly smaller */
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        #map:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .map-note {
            color: #64748b;
            font-style: italic;
            text-align: center;
            font-size: 0.9rem;
            background: var(--light-gray);
            padding: 10px;
            border-radius: 8px;
        }

        /* Contact Form Section */
        .contact-form-section {
            background: var(--white);
            padding: 40px; /* Reduced padding */
            border-radius: 16px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .contact-form-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%232563eb' fill-opacity='0.03' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px; /* Reduced margin */
            position: relative;
            z-index: 2;
        }

        .form-header h2 {
            color: var(--dark-blue);
            margin-bottom: 12px;
            font-size: 1.9rem; /* Slightly smaller */
            font-family: 'Montserrat', sans-serif;
        }

        .form-header p {
            color: #64748b;
            font-size: 1rem;
        }

        .contact-form {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px; /* Reduced gap */
            margin-bottom: 20px; /* Reduced margin */
        }

        .form-group {
            margin-bottom: 20px; /* Reduced margin */
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark-blue);
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px; /* Slightly reduced padding */
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
            background: var(--light-gray);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--light-blue);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
            background: var(--white);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 130px; /* Slightly smaller */
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 10px; /* Reduced gap */
            margin: 20px 0; /* Reduced margin */
        }

        .form-checkbox input {
            width: auto;
            transform: scale(1.2);
        }

        .form-checkbox label {
            color: #64748b;
            font-size: 0.9rem;
        }

        .submit-btn {
            background: #2405f2;
            color: var(--white);
            border: none;
            padding: 16px 35px; /* Slightly reduced padding */
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }

        .submit-btn::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: var(--transition);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        /* Floating elements for visual interest */
        .floating-element {
            position: absolute;
            z-index: 0;
            opacity: 0.1;
            pointer-events: none;
        }

        .float-1 {
            top: 20%;
            left: 5%;
            width: 80px; /* Smaller */
            height: 80px;
            border-radius: 50%;
            background: var(--light-blue);
            filter: blur(15px);
            animation: float 15s ease-in-out infinite;
        }

        .float-2 {
            bottom: 10%;
            right: 5%;
            width: 120px; /* Smaller */
            height: 120px;
            border-radius: 50%;
            background: var(--accent);
            filter: blur(25px);
            animation: float 18s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            50% {
                transform: translateY(-15px) translateX(15px);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .contact-header h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .contact-info-card,
            .map-section,
            .contact-form-section {
                padding: 25px 20px;
            }
            
            .contact-header {
                padding: 40px 0 25px;
            }
            
            .contact-header h1 {
                font-size: 2rem;
            }
            
            #map {
                height: 300px;
            }

            .submit-btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .office-hours-banner {
                font-size: 0.9rem;
                padding: 10px 0;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            
            .contact-icon {
                align-self: center;
            }
            
            .contact-header h1 {
                font-size: 1.8rem;
            }

            .form-header h2 {
                font-size: 1.6rem;
            }

            .contact-form-section {
                padding: 25px 15px;
            }
            
            .breadcrumb {
                padding: 12px 0;
                margin-bottom: 15px;
            }
        }