@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

:root {
            --primary-gradient: linear-gradient(135deg, #00c6ff, #0072ff);
            --bg-color: #f0f4ff;
            --text-color-primary: #1a202c;
            --text-color-secondary: #4a5568;
            --glass-bg: rgba(255, 255, 255, 0.25);
            --glass-border: rgba(255, 255, 255, 0.4);
            --glass-shadow: rgba(0, 0, 0, 0.1);
        }

        /* --- Reusable Layout & Elements --- */
        .page-container {
            padding: 0 2rem;
            box-sizing: border-box;
                        /* font-family: 'Inter', sans-serif; */
                         font-family: "Lexend", sans-serif !important;
            line-height: 1.6;
            color: var(--text-color-primary);
            background-color: #fff;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .heading-section {
            text-align: center;
            margin-bottom: 4rem;
            animation: slideInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .heading-section.section-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--text-color-primary);
            position: relative;
        }

        .heading-section .section-subtitle {
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--text-color-secondary);
            max-width: 700px;
            margin: 0 auto;
        }
        

        /* --- The Amazing Glassy Card Wrapper --- */
        .glassy-card-wrapper {
            background-color: var(--glass-bg);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: 2rem;
            box-shadow: 0 15px 30px var(--glass-shadow);
            padding: 3.5rem;
            position: relative;
            overflow: hidden;
            animation: fadeInScale 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            opacity: 0;
            transform: scale(0.98);
        }
        
        /* Subtle inner reflection for the card */
        .glassy-card-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 60%);
            border-radius: 2rem;
            pointer-events: none;
        }


        /* --- Details & Social Section --- */
        .contact-details-and-form {
            /* display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem; */
            margin-top: 4rem;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .detail-card {
            background: linear-gradient(135deg, #00c6ff, #0072ff);
            /* border: 1px solid var(--glass-border); */
            border-radius: 1.5rem;
            padding: 2.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .mainformwork {
            margin: 0 auto;
            width: 700px;
            background: var(--glass-bg);
            padding: 50px 50px;
            box-shadow: 0 8px 15px rgba(0, 114, 255, 0.3);
            border-radius: 30px;
            
        }

        .detail-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            background-color: rgba(255, 255, 255, 0.4);
        }

        .detail-card-icon {
            width: 70px;
            height: 70px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 15px rgba(0, 114, 255, 0.3);
            transition: all 0.3s ease-out;
        }
        
        .detail-card:hover .detail-card-icon {
            transform: rotate(15deg) scale(1.1);
        }

        .detail-card-icon i {
            font-size: 2.5rem;
            color: #00000091;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .detail-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 0.5rem 0;
            color: #fff;
        }
        
        .detail-card-text {
            font-size: 1rem;
            color: #fff;
            margin: 0;
        }
        
        .detail-card-text a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease-out;
        }

        .detail-card-text a:hover {
            color: #0072ff;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 60px;
            height: 60px;
            text-decoration: none;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.75rem;
            box-shadow: 0 8px 15px rgba(0, 114, 255, 0.3);
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .social-link:hover {
            transform: translateY(-8px) rotate(8deg) scale(1.1);
            box-shadow: 0 15px 25px rgba(0, 114, 255, 0.45);
        }
        .social-links {
            opacity: 1 !important;
            transform: none !important;
            animation: none !important;
        }

        /* --- Contact Form Section --- */
        .form-content {
            padding: 3rem;
            text-align: center;
        }

        .form-heading {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .form-subtitle {
            font-size: 1.1rem;
            color: var(--text-color-secondary);
            margin-bottom: 3rem;
        }

        .contact-form {
            display: grid;
            gap: 2rem;
        }
        
        .form-field {
            position: relative;
        }

        .form-field input,
.form-field textarea {
    width: 100%;
    padding: 1.25rem 1.5rem 0.75rem;
    border: 1px solid #ccc; /* A soft, light gray border */
    border-radius: 1rem;
    background-color: #f5f5f5; /* A light gray background */
    font-size: 1rem;
    color: var(--text-color-primary);
    transition: all 0.3s ease-out;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Update the focus state for a subtle color change */
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #999; /* A slightly darker gray on focus */
    box-shadow: 0 0 0 4px rgba(153, 153, 153, 0.15); /* A softer focus shadow */
    background-color: #fff; /* A clean white background on focus */
}

/* The rest of the form's CSS remains unchanged */
.contact-form {
    display: grid;
    gap: 2rem;
}

.form-field {
    position: relative;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-field label {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color-secondary);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    background-color: transparent;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
    top: 0.5rem;
    font-size: 0.85rem;
    color: #555;
    background-color: #f5f5f5; /* Match the new input background */
    padding: 0 0.5rem;
}

.form-field textarea:not(:placeholder-shown) + label {
    top: 0.5rem;
}

.submit-button-wrapper {
    margin-top: 1rem;
    text-align: center;
}

        /* --- Map Section --- */
        .map-section {
            width: 100%;
            padding-bottom: 0;
            margin-top: 4rem;
        }

        .map-wrapper {
            width: 100%;
            height: 500px;
            overflow: hidden;
            border-radius: 2rem;
            box-shadow: 0 15px 30px var(--glass-shadow);
            border: 2px solid var(--glass-border);
            animation: fadeInScale 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            opacity: 0;
            transform: scale(0.98);
            animation-delay: 0.2s;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* --- Animations --- */
        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .page-container { padding: 0 1.5rem; }
            .heading-section .section-title { font-size: 3rem; }
            .heading-section .section-subtitle { font-size: 1.1rem; }
            .contact-details-and-form { grid-template-columns: 1fr; gap: 3rem; }
            .glassy-card-wrapper { padding: 3rem; }
            .details-grid { gap: 1.5rem; }
            .detail-card { padding: 2rem; }
            .form-content { padding: 2.5rem; }
            .map-wrapper { height: 400px; }
        }

        @media (max-width: 768px) {
            .page-container { padding: 0 1rem; }
            .heading-section .section-title { font-size: 2.5rem; }
            .heading-section .section-subtitle { font-size: 1rem; }
            .glassy-card-wrapper { padding: 2rem; border-radius: 1.5rem; }
            .detail-card { padding: 1.5rem; border-radius: 1rem; }
            .detail-card-icon { width: 60px; height: 60px; margin-bottom: 1rem; }
            .detail-card-icon i { font-size: 2rem; }
            .form-content { padding: 2rem; }
            .form-heading { font-size: 2rem; }
            .form-subtitle { font-size: 1rem; margin-bottom: 2rem; }
            .form-field input, .form-field textarea { font-size: 0.9rem; padding: 1rem 1.25rem 0.5rem; }
            .form-field label { font-size: 0.9rem; left: 1.25rem; }
            .form-field input:focus + label, .form-field input:not(:placeholder-shown) + label,
            .form-field textarea:focus + label, .form-field textarea:not(:placeholder-shown) + label { font-size: 0.8rem; }
            .map-wrapper { height: 350px; border-radius: 1.5rem; }
        }

        @media (max-width: 480px) {
            .heading-section .section-title { font-size: 2rem; }
            .heading-section .section-subtitle { font-size: 0.9rem; }
            .cta-button { padding: 1rem 2rem; font-size: 1rem; }
            .glassy-card-wrapper { padding: 1.5rem; border-radius: 1rem; }
            .detail-card-title { font-size: 1.2rem; }
            .detail-card-text { font-size: 0.9rem; }
            .social-link { width: 50px; height: 50px; font-size: 1.5rem; }
            .form-heading { font-size: 1.5rem; }
            .form-subtitle { font-size: 0.9rem; }
            .map-wrapper { height: 300px; border-radius: 1rem; }
        }