/* Contact Us Banner */
.contact-us-banner {
  margin-top: 100px;
  background: linear-gradient(90deg, #D3D5FF, #C7CAFB, #C5C7FD);
  padding: 40px 0 20px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  position: relative;
  overflow: visible;
  text-align: center; /* Center align all text */
}

/* Content Flex Container */
.banner-content {
  display: flex;
  flex-direction: column; /* Stack heading + subheading vertically */
  text-align: left;
  z-index: 2;
  position: relative;
}

/* Text Block */
.text-content {
  max-width: 100%;
}

/* Updated Heading */
.contact-title {
  font-size: 2.5rem;   /* Increased size to match second image */
  font-weight: 800;
  color: #000000;
  margin-bottom: 10px;
}

/* Updated Subtitle */
.contact-subtitle {
  font-size: 1.7rem;
  font-weight: 600;
  color: #000000;
}

/* Image Wrapper Outside Banner Container */
.banner-img-wrapper {
  position: absolute;
  right: 300px;   /* Already centered more */
  bottom: -90px;
  z-index: 0;
}

/* Image Styling */
.contact-banner-img {
  max-width: 320px;
  height: auto;
}




/* Contact Box */
.contact-box {
    background-color: #f5f5f5;
    border-radius: 15px;
}

/* Form Section */
.form-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
}

.form-control {
    background-color: #ffffff !important;
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    box-shadow: none;
    font-size: 15px;
}

.form-control::placeholder {
    color: #888;
}

.form-control:focus {
    border: 2px solid #FFBB00;
    box-shadow: none;
    outline: none;
}

.send-btn {
    background-color: #FFBB00;
    color: #fff;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    transition: 0.3s ease;
}

.send-btn:hover {
    background-color: #e6a800;
    color: #fff;
}

/* Contact Info Icons */
.contact-info .icon {
    font-size: 1rem;
    background-color: rgba(1, 4, 64, 0.6); /* #01044099 60% */
    color: #FFBB00;
    border-radius: 50%;
    padding: 10px;
    width: 36px;
    height: 36px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 5px;
}

/* Social Icons */
.social-icons a {
    font-size: 18px;
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.8); /* #000000CC 80% */
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #FFBB00;
    color: #fff;
}

/* Divider Lines */
.contact-box hr {
    border-top: 1px solid #ddd;
    margin: 16px 0;
}

/* Map */
.map-wrapper {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}




/* 📱 Small Devices Responsive Fixes */
@media (max-width: 768px) {

    .contact-us-banner {
        margin-top: 86px;
        padding: 40px 20px 30px;
        text-align: left;
        background: linear-gradient(180deg, #D3D5FF, #C7CAFB, #C5C7FD); /* vertical gradient for mobile */
    }

    .banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-title {
        font-size: 1.8rem;
        font-weight: 800;
        color: #000000;
        margin-bottom: 6px;
        text-align: left;
    }

    .contact-subtitle {
        font-size: 1.05rem;
        font-weight: 500;
        color: #000000;
        text-align: left;
    }

      .banner-img-wrapper {
        display: none !important;
    }

    .contact-banner-img {
        max-width: 160px;
        width: 100px;
        height: auto;
    }



    /* Contact Form & Info Stack */
    .contact-wrapper .row {
        flex-direction: column;
    }

    .contact-wrapper .col-md-7,
    .contact-wrapper .col-md-5 {
        width: 100%;
    }

    .contact-box {
        margin-bottom: 30px;
    }

    /* Social Icons */
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Contact Info Items */
    .contact-info li {
        flex-direction: row;
        align-items: flex-start;
    }

    /* Map Spacing */
    .map-wrapper {
        margin-top: 30px;
    }
}


/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    user-select: none;
}

.custom-dropdown .selected-option {
    background-color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.custom-dropdown .dropdown-options {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 4px;
    z-index: 10;
    max-height: 150px; /* Scroll after 4 items approx */
    overflow-y: auto;
    width: 100%;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.custom-dropdown .dropdown-options div {
    padding: 10px 16px;
    cursor: pointer;
}

.custom-dropdown .dropdown-options div:hover {
    background-color: #f5f5f5;
}
