body {
    font-family: 'Roboto';
    }

.introduction-heading {
    margin-left: 300px;
    margin-right: 300px;
    font-family: 'Roboto';
    color: #0262C4;
}

.services-header {
    padding-left: 300px;
    padding-right: 300px;
    padding-top: 25px;
    font-family: 'Roboto';
    color: white;
}

/* .services-bg-gradient-overlay {
    background: rgb(49, 55, 60);
} */
/* .services-bg-gradient-overlay {
    background: rgb(86, 93, 100);
    background: linear-gradient(0deg, rgba(77, 83, 91, 0.2) 0%, rgba(116,125,135,1) 70%);
} */
.services-bg-gradient-overlay {
   background-color: grey transparent;

}


.services-card-left {
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    margin: auto;
    margin-left: 300px;
    margin-right: 300px;
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: 'Roboto';
    min-height: 250px;
    }

    .gradient-overlay-left {
        background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,90%) 60%), rgba(255,255,255,50%);
        border-radius: 10px;
        min-height: 250px;
    }

.services-card-right {
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    margin: auto;
    margin-left: 300px;
    margin-right: 300px;
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: 'Roboto';
    text-align: right;
    min-height: 250px;
    }

    .gradient-overlay-right {
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,90%) 60%), rgba(255,255,255,50%);
        border-radius: 10px;
        min-height: 250px;
    }

.services-card-header-left {
    margin-left: 25px;
    color: #0262C4;
    padding-top: 25px;
    font-size: 24px;
}

.services-card-header-right {
    margin-right: 25px;
    color: #0262C4;
    padding-top: 25px;
    font-size: 24px;
}

.services-card-content-left {
    margin-left: 25px;
    margin-right: 40%;
    padding-bottom: 25px;
    font-size: 16px;
}

.services-card-content-right {
    margin-left: 40%;
    margin-right: 25px;
    padding-bottom: 25px;
    font-size: 16px;
}
a{
    text-decoration: none;
    color: white;
    vertical-align: bottom;

}
a:hover{
    color: #88afe0;
}
.content {
    margin-left: 300px;
    margin-right: 300px;
}
#intro{
    scroll-margin-top: 80px;
}
#services{
    scroll-margin-top: 80px;
}

@media screen and (max-width: 1420px) {
    .introduction-heading {
        margin-left: 200px;
        margin-right: 200px;
    }
    .content {
        margin-left: 200px;
        margin-right: 200px;
    }

    .services-card-right {
        margin-left: 200px;
        margin-right: 200px;
    }
    .services-card-left {
        margin-left: 200px;
        margin-right: 200px;
    }
    .services-header {
        padding-left: 200px;
        padding-right: 200px;
    }
    #intro{
        scroll-margin-top: 95px;
            }
            #services{
                scroll-margin-top: 80px;
            }
}

@media screen and (max-width: 1080px) {
    .introduction-heading {
        margin-left: 100px;
        margin-right: 100px;
    }
    .services-card-right {
        margin-left: 100px;
        margin-right: 100px;
    }
    .services-card-left {
        margin-left: 100px;
        margin-right: 100px;
    }
    .services-header {
        padding-left: 100px;
        padding-right: 100px;
    }
    .content {
        margin-left: 100px;
        margin-right: 100px;
      }
}

@media screen and (max-width: 680px) {
    .introduction-heading {
        margin-left: 20px;
        margin-right: 20px;
    }
    .services-card-right {
        margin-left: 20px;
        margin-right: 20px;
    }
    .services-card-left {
        margin-left: 20px;
        margin-right: 20px;
    }
    .services-header {
        padding-left: 20px;
        padding-right: 20px;
    }
    .content {
        margin-left: 20px;
        margin-right: 20px;
      }
}

.services-card-left,
.services-card-right {
    /* ... existing styles ... */
    transition: transform 0.3s ease-in-out;
}

.services-card-left:hover,
.services-card-right:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.contact-form {
    padding: 150px; /* Adjust padding for smaller screens */
    background-color: rgb(37, 36, 36);
    background-image: url(testBackG.png); 
    height: 100%;
    width: 100%;
    margin-bottom: 0px;
    
}

.container {
    background-color: black;
    border-radius: 20px;
    background: linear-gradient(135deg, #1f1f1f, #202020);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    padding: 0px;
    margin-bottom: 20px;
}

.col-lg-8 {
    padding: 0px;
}

.col-lg-8 > div {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px; /* Add margin between form elements */

}

.col-lg-4 {
    padding: 20px;
    position: relative;
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    z-index: 1;
    justify-content: space-around;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%; /* Make inputs and textarea full width */
    margin-bottom: 10px; /* Add margin between inputs */
    background-color: rgb(216, 208, 208);
    border: none;
    border-radius: 10px;
    padding: 10px;
}

textarea {
    height: 150px; /* Set height for textarea */
    resize: none;
}

button[type="button"] {
    border-radius: 10px;
    border: none;
    background-color: #2f5b82;
    color: white;
    padding: 10px 20px; /* Adjust padding for smaller screens */
}
.success-message {
    color: green;
    text-align: center;
    display: none;
  }
@media screen and (max-width: 1080px) {
    .contact-form {
        padding: 20px;
        padding-top: 200px;
    }
    .contact-form {
        padding-top: 200px;
        height: 729px;
    }
    .container{
        padding: 0px;
    }
    #intro{
scroll-margin-top: 150px;
    }
    #services{
        scroll-margin-top: 155px;
    }
}
@media screen and (max-width: 991px) {
    .contact-form {
        padding: 20px;
        padding-top: 200px;
    }
    .contact-form {
        padding-top: 200px;
        height: 1000px;
    }
    .container{
        padding: 0px;
    }
    #intro{
        scroll-margin-top: 140px;
            }
            #services{
                scroll-margin-top: 155px;
            }
}
/* Adjustments for smaller screen sizes */
@media screen and (max-width: 768px) {
    .contact-form {
        padding: 20px;
        padding-top: 200px;
    }
    .container {
        padding: 10px;
    }
    .col-lg-8 > div {
        margin-bottom: 10px;
    }
    input[type="text"],
    textarea {
        padding: 8px;
    }
    button[type="button"] {
        padding: 8px 16px;
    }
    .contact-form {
        padding-top: 200px;
        height: 1000px;
    }
    .container{
        padding: 0px;
    }
    #intro{
        scroll-margin-top: 140px;
            }
    
    #services{
                scroll-margin-top: 155px;
            }
}

/* Adjustments for even smaller screen sizes */
@media screen and (max-width: 576px) {
    input[type="text"],
    textarea {
        padding: 6px;
    }
    button[type="button"] {
        padding: 6px 12px;
    }
    .contact-form {
        padding-top: 200px;
        height: 1100px;
        
    }
    .container{
        padding: 0px;
       
    }
    #intro{
        scroll-margin-top: 140px;
            }
    #services{
        scroll-margin-top: 155px;
    }
    
}

.custom-alert {
    position: fixed;
    top: 50px; /* Adjust this value to position it properly */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.custom-alert button {
    background-color: #2f5b82;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
}

/* Disable background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: 9998; /* Make sure it's behind the alert but above other content */
    display: none; /* Initially hidden */
}
