/* Background and layout */


/* Center card */
.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0px 10px 25px rgba(86, 104, 240, 0.15);
    text-align: center;
}

/* Heading */
.contact-card h2 {
    margin-top: 0;
    color: #5668f0;
    font-size: 28px;
}

/* Text */
.contact-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

/* Inputs */
.input-group {
    margin-bottom: 18px;
    text-align: left;
}

.input-group label {
    font-weight: 600;
    color: #333;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 10px;
    border: 2px solid #d7d9ff;
    transition: 0.25s;
    font-size: 15px;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #5668f0;
    outline: none;
}

/* Submit button */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: #5668f0;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s;
}

.submit-btn:hover {
    background: #4654d1;
}

 .page-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
/* Map container */
.map-container {
    width: 100%;
    height: 300px;
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(86, 104, 240, 0.15);
}
/* Responsive map */
        #map {
            width: 100%;
            max-width: 600px;
            height: 400px;
            border-radius: 14px;
            overflow: hidden;
            margin: 20px auto;
            box-shadow: 0 0 15px rgba(0,0,0,0.35);
        }
/* Contact details section */
.contact-details {
    margin-top: 25px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(86, 104, 240, 0.10);
    text-align: left;
}

.contact-details h3 {
    margin-top: 0;
    color: #5668f0;
    font-size: 20px;
}

.contact-details p {
    margin: 8px 0;
    color: #444;
    font-size: 15px;
}
.sidebar {
            position: sticky;
            top: 80px; /* below navbar */
            flex: 0 0 250px;
            background-color: #f4f4f4;
            padding: 20px;
            border: 3px solid #0E3193;
            box-shadow: 2px 0 5px rgba(0,0,0,0.1);
            max-height: calc(100vh - 80px);
            overflow-y: auto;
        }

        .main-content {
            flex: 1;
            padding: 30px;
        }
.contact-form {
            max-width: 600px;
            margin: 0 auto 30px auto;
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 6px;
            border: 1px solid #ccc;
            font-size: 15px;
            font-family: Arial, sans-serif;
            resize: vertical;
        }

        .contact-form button {
            background-color: #1d6cf2;
            color: white;
            border: none;
            padding: 14px 25px;
            font-size: 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: #155ab5;
        }

        .captcha-box {
            border:1px solid #ccc;
            padding:15px;
            margin-bottom:15px;
            display:inline-block;
            border-radius:6px;
        }

        .popup-logo {
            width: 90px;
            border-radius: 12px;
            margin-bottom: 8px;
        }