/* Contact Info Styling */
.contact-section {
    background-color: #fff;
}

.topHeading {
    font-family: "Poppins";
    font-weight: 700 !important;
    font-size: 50px !important;
    line-height: 60px !important;
    letter-spacing: 0px !important;
    text-transform: capitalize !important;
}
.paraText {
    font-family: "Poppins" !important;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    color : #292929;
}
.subparaText{
    font-family: "Poppins" !important;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0px;
    color : #292929;
}

.socialHeading{
    font-family: "Poppins" !important;
    font-weight: 600;
    font-style: normal;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0px;
    color : #292929;
}

/* Form Card Styling */
.form-card {
    background-color: #f6f7fb;
    border-radius: 4px;
}

/* Custom Underlined Inputs */
.custom-input {
    background-color: transparent !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    color: #7E7E7E !important;
    font-size: 16px !important;
}
.bg_marquee{
    background-color: #2212FF;
    padding: 5px 0;
    color: #fff;
}

.custom-input:focus {
    box-shadow: none;
    color: #7E7E7E !important;
    /* border-color: #2b17ff; Brand Blue */
}

/* Button Styling */
.btn-primary {
    background-color: #2b17ff;
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #1a0cc4;
}

/* Map Styling */
.map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.dark-map {
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) invert(90%) contrast(150%);
    opacity: 0.8;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    background-color: #2b17ff;
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(43, 23, 255, 0.5);
}

/* Social Media Icons */
.social-links a {
    text-decoration: none;
    transition: 0.2s;
}

.social-links a:hover {
    color: #2b17ff !important;
}

