.contact-wrapper {
    background-color: #f8f9fa;
    padding: 60px 0;
    min-height: 100vh;
}

.contact-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-circle i {
    color: #2196f3;
    font-size: 24px;
}

.card-title {
    color: #6c757d;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.card-description {
    color: #999999;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.contact-info {
    color: #2196f3;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.form-section {
    max-width: 600px;
    margin: 60px auto 0;
}

.section-heading {
    color: #5a5a5a;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
}

.section-subheading {
    color: #2196f3;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 35px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2196f3;
}

.form-input::placeholder {
    color: #aaaaaa;
}

.form-textarea {
    height: 140px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #2196f3;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1976d2;
}

.input-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-col {
    flex: 1;
}

.mb-custom {
    margin-bottom: 15px;
}

.navbar-custom{
    padding: 10px 20px !important;
    background-color: #1e3883;
    width: 100%;
    position: fixed;
    top: 0; /* make sure it stays at the top */
    left: 0;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px); /* for Safari support */
    z-index: 99999;
    }
    
    .nav-item .nav-link {
    color:white;
    text-decoration:none;
    }
    
    .nav-custom .logo{
    color:white !important;
    text-decoration: none;
    }


    .map-section {
        background-color: #ffffff;
        padding: 0;
        margin: 0;
    }

    .map-container {
        width: 100%;
        height: 400px;
        position: relative;
        overflow: hidden;
        border: none;
    }

    .map-frame {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

    .location-marker {
        position: absolute;
        top: 20px;
        left: 20px;
        background-color: #ffffff;
        padding: 8px 16px;
        border-radius: 4px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        z-index: 10;
    }

    .marker-icon {
        color: #4db8ff;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .marker-icon::before {
        content: "📍";
        font-size: 16px;
    }

    @media (max-width: 768px) {
        .map-container {
            height: 300px;
        }
    }

    @media (min-width: 992px) {
        .map-container {
            height: 450px;
        }
    }