

        /* Contact us section */
        .contact-section .container {
            max-width: 900px;
            margin: 30px auto 60px;
            padding: 0 25px;
            text-align: center;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #2c3e50;
            position: relative;
            z-index: 10;
            background: var(--card-bg)fffee;
            border-radius: 15px;
            box-shadow:
                0 8px 24px rgba(44, 62, 80, 0.1),
                inset 0 0 15px rgba(0, 0, 0, 0.03);
            padding-top: 45px;
            padding-bottom: 60px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .contact-section .container:hover {
            transform: translateY(-6px);
            box-shadow:
                0 12px 40px rgba(44, 62, 80, 0.15),
                inset 0 0 20px rgba(0, 0, 0, 0.05);
        }

        .section-header {
            text-align: center;
            margin: 70px auto 0;
            max-width: 900px;
            padding: 0 25px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            position: relative;
            text-transform: uppercase;
            animation: fadeInDown 1s ease forwards;
        }

        .section-header h2::after {
            content: '';
            width: 60px;
            height: 4px;
            background: #1c3b70;
            display: block;
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .contact-description {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 50px;
            color: #34495e;
            font-weight: 400;
            max-width: 820px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease forwards 0.4s;
        }

        /* Contact info styles */
        .contact-details {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            font-size: 1.15rem;
            color: #2c3e50;
            font-weight: 600;
            animation: fadeInUp 1s ease forwards 0.6s;
        }

        .contact-link {
            color: #6c8cd5;
            /* softer, low-density blue */
            background: transparent;
            box-shadow: none;
            padding: 0;
            font-weight: 600;
            font-size: 1.15rem;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .contact-link i {
            color: #8fa7e5;
            /* lighter icon blue */
            font-size: 1.3rem;
            transition: color 0.3s ease;
        }

        .contact-link:hover {
            color: #283593;
            /* stronger blue */
            text-decoration: underline;
        }

        .contact-link:hover i {
            color: #283593;
        }

        .address {
            margin-top: 30px;
            font-size: 1rem;
            color: #555d66;
            font-style: italic;
            max-width: 600px;
            line-height: 1.6;
            animation: fadeInUp 1s ease forwards 0.8s;
            letter-spacing: 0.3px;
            position: relative;
            padding-left: 35px;
        }

        .address i {
            position: absolute;
            left: 0;
            top: 3px;
            color: #283593;
            font-size: 1.2rem;
        }

        /* ====== MAP SECTION STYLING ====== */
        .map-section {
            max-width: 900px;
            margin: 0 auto 100px;
            padding: 0 25px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 12px 30px rgba(26, 35, 126, 0.15);
            transition: box-shadow 0.3s ease;
            background: linear-gradient(145deg, #e8eaf6, #f5f7ff);
        }

        .map-section:hover {
            box-shadow:
                0 16px 45px rgba(26, 35, 126, 0.25);
        }

        .map-container iframe {
            border: none;
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            transition: transform 0.5s ease;
        }

        .map-container iframe:hover {
            transform: scale(1.02);
        }

        /* ====== ANIMATIONS ====== */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* ====== RESPONSIVE ====== */
        @media (max-width: 768px) {

            .contact-section .container {
                padding: 40px 20px 40px;
            }

            .section-header {
                margin-top: 40px;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .contact-description {
                font-size: 1rem;
                margin-bottom: 35px;
            }

            .contact-link {
                padding: 10px 20px;
                font-size: 1rem;
            }

            .address {
                font-size: 0.9rem;
                padding-left: 28px;
            }

            .address i {
                font-size: 1rem;
                top: 1px;
            }

            .map-section {
                padding: 0 15px;
            }
}

    
        .map-container iframe {
            border: 0;
        }