@import url('https://fonts.googleapis.com/css2?family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Teachers", sans-serif;
    color: white;
    background-color: #051437;
}

/* Main Section */
.main {
    background: radial-gradient(circle, #1C71B7 1%, #1964A5 8%, #165B98 20%, #051437 90%);
}
/* .back-video{
    position: absolute;
    right: 0;
    bottom: -17rem;
    z-index: -1;
    opacity: 0.3;
} */

/* contact buttons */
/* mobile app */
.mob-app .below {
    display: flex;
    padding-top: 20px;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    /* Allows buttons to wrap on smaller screens */
}

.mob-app .below a {
    color: white;
    text-decoration: none;
    border: 3px solid #FA911A;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 3vh;
    transition: background-color 0.3s ease;
    /* Smooth hover effect */
}

.mob-app .below a:hover {
    background-color: #896138;
}
.mob-app .below1 a {
    color: white;
    text-decoration: none;
    border: 3px solid #FA911A;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 3vh;
    transition: background-color 0.3s ease;
    /* Smooth hover effect */
}

.mob-app .below1 a:hover {
    background-color: #896138;
}

.mob-app .below2 a {
    color: white;
    text-decoration: none;
    border: 3px solid #15F700;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 3vh;
    transition: background-color 0.3s ease;
    /* Smooth hover effect */
}

.mob-app .below2 a:hover {
    background-color: #6ffa63de;
}
.mob-app .below3 a {
    color: white;
    text-decoration: none;
    border: 3px solid #51BCE2;
    padding: 8px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.mob-app .below3 a:hover {
    background-color: #1070B1;
}
@media(max-width: 525px){
    .mob-app .below1 a{
        padding: 8px 99px;
    }
    .mob-app .below2 a{
        padding: 8px 85px;
    }
    .mob-app .below3 a{
        padding: 8px 85px;
    }
}

/* contact section */
.contact-section {
    color: white;
}

.contact-section h2 {
    /* font-size: 1.75rem; */
    margin-bottom: 20px;
    text-shadow: 2px 3px 3px black;
}
.contact-section h2 span{
    color: #ff7e1f;
}

.contact-section .form-control {
    background-color: #5a5a5a;
    border: none;
    border-radius: 10px;
    color: white;
    padding: 12px;
}
.contact-section select{
    background-color: #5a5a5a;
    border: transparent;
    /*border-radius: 10px;*/
    color: white;
    /*padding: 12px;*/
}

.contact-section .form-control::placeholder {
    color: #ddd;
}

.contact-section .btn-warning {
    background-color: #ff7e1f;
    border: none;
    padding: 10px;
    font-weight: bold;
    color: white;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.contact-section .btn-warning:hover {
    background-color: #ff9900;
}

.contact-section ul li i {
    color: #ff7e1f;
}

/* CSS for responsive iframe */
.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px; /* Optional: round the edges */
    margin-top: 70px;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* end */

/* Testimonial - section */
.testimonial-section {
    color: white;
    padding: 3rem 0;
    position: relative;
}

.testimonial-section h2 {
    color: #FA911A;
    font-weight: bold;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: linear-gradient(#2169a7 25%, #051437 90%);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-card h5 {
    color: #FA911A;
    font-weight: bold;
}

.testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.carousel-indicators [data-bs-target] {
    background-color: #FA911A;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    height: 100%;
    top: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #FA911A;
    border-radius: 50%;
    padding: 10px;
}

/* Position buttons outside the cards */
.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1rem;
        flex: 0 0 100%; /* Ensure cards take full width */
        max-width: 100%; /* Prevent wrapping */
    }

    .testimonial-card img {
        width: 60px;
        height: 60px;
    }

    .testimonial-section h2 {
        font-size: 1.5rem;
    }

    .testimonial-section p {
        font-size: 0.9rem;
    }

    .carousel-inner {
        display: flex; /* Use flex to prevent wrapping */
    }

    /* Hide carousel control buttons on mobile and tablets */
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 2rem 0;
    }

    .testimonial-card {
        margin-bottom: 1rem; /* Add margin between cards */
        flex: 0 0 100%; /* Ensure cards take full width */
    }

    .carousel-inner {
        display: flex; /* Prevent wrapping */
    }
}
@media (max-width:1000px) {
    .testimonial-section{
        display: none;
    }
}
/* end of testimonial section */
/* Testimonial - section 2.0 */
.tes-section {
    color: white;
    padding: 3rem 0;
    position: relative;
}

.tes-section h2 {
    color: #FA911A;
    font-weight: bold;
    margin-bottom: 2rem;
}

.tes-card {
    background: linear-gradient(#2169a7 25%, #051437 90%);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.tes img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.tes h5 {
    color: #FA911A;
    font-weight: bold;
}

.tes-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.carousel-indicators [data-bs-target] {
    background-color: #FA911A;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    height: 100%;
    top: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #FA911A;
    border-radius: 6px;
    padding: 20px 0px;
}

/* Position buttons outside the cards */
.carousel-control-prev {
    left: -40px;
}

.carousel-control-next {
    right: -40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tes-card {
        padding: 1rem;
        flex: 0 0 100%; /* Ensure cards take full width */
        max-width: 100%; /* Prevent wrapping */
    }

    .tes-card img {
        width: 60px;
        height: 60px;
    }

    .tes-section h2 {
        font-size: 1.5rem;
    }

    .tes-section p {
        font-size: 0.9rem;
    }

    .carousel-inner {
        display: flex; /* Use flex to prevent wrapping */
    }
    .carousel-control-prev {
        left: -15px;
    }
    
    .carousel-control-next {
        right: -15px;
    }
}

@media (max-width: 576px) {
    .tes-section {
        padding: 2rem 0;
    }

    .tes-card {
        margin-bottom: 1rem; /* Add margin between cards */
        flex: 0 0 100%; /* Ensure cards take full width */
    }

    .carousel-inner {
        display: flex; /* Prevent wrapping */
    }
    .carousel-control-prev {
        left: -12px;
    }
    
    .carousel-control-next {
        right: -12px;
    }
}

@media (min-width: 1000px) {
    .tes-section {
      display: none; /* Hide it */
    }
  }
@media(max-width: 999) {
    .tes-section{
        display: block; /*start showing*/
    }
    .tes-card img {
        width: 40px;
        height: 40px;
    }
}
/* end of tes section 2.0 */

/* Footer */
.footer {
    position: relative;
    background-image: url('/build/images/footer.png');
    background-size: cover;
    background-position: center;
}

.footer-overlay {
    background-color: rgba(13, 27, 69, 0.47);
    /* Dark blue overlay */
}

.footer h5 {
    color: #FF8B00;
    /* Orange color for titles */
}

.list-unstyled a {
    color: white;
    text-decoration: none;
}

.list-unstyled a:hover {
    color: #FF8B00;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.subscribe-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 200px;
    background-color: #1f3f817a;
}

.subscribe-form button {
    background-color: #0a87f4;
    /* color: white; */
    padding: 8px 20px;
    border: none;
    border-radius: 10px;
}

.subscribe-form button:hover {
    background-color: #3395eb;
}

.social-media {
    text-align: center;
    margin-top: 20px;
    margin: 5px 0px;
    padding: 20px 5px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgb(49 107 196 / 70%) 27%, rgb(181 134 38 / 79%) 74%);
}



/* carear page */
.bg {
    background: radial-gradient(circle, #1C71B7 1%, #1964A5 8%, #165B98 20%, #051437 90%);
}

/* Open position section */
.position-card {
    background: linear-gradient(89deg, rgba(39,133,209,1) 0%, rgba(3,12,43,1) 67%);
    border: 2px solid white;
    border-radius: 10px;
    color: white;
    padding: 20px;
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: scale(1.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

.vacancy-text {
    font-size: 0.9rem;
    color: white;
    margin: 0;
}

.icon {
    color: white;
    cursor: pointer;
}

.position-details {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
}
/* end of footer */

/* Hiring section */
/* .how-we-hire-section {
    background: linear-gradient(to bottom, #072042, #0b2d57);
    color: white;
} */
.how-we-hire-section {
    text-align: center;
    color: #ffffff;
    padding: 50px 20px;
    padding-bottom: 90px;
}

.hire-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hire-subtitle {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    padding-bottom: 40px;
}

.hire-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.hire-card {
    background-color: #061437;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 250px; /* Base width for larger screens */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

/* Specific Card Sizing */
.hire-card-1, .hire-card-4 {
    padding: 40px;
}

.hire-card-2 {
    margin-top: -25px; /* Adjust as needed */
    margin-bottom: -40px; /* Adjust as needed */
    padding: 35px; /* Increased padding */
}

.hire-card-3 {
    margin-top: -45px; /* Adjust as needed */
    margin-bottom: -70px; /* Adjust as needed */
    padding: 40px; /* Further increased padding */
}

.hire-card:hover {
    transform: scale(1.05);
}

.step-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FF8B00;
    /* margin: 10px 0 15px; */
}

.step-title span {
    color: white;
}

.hire-card p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.4;
    color: #b8cce4;
}

/* Responsive Styling */
@media (max-width: 1200px) {
    .hire-card {
        width: 45%; /* Use more width on medium screens */
        padding: 30px; /* Adjust padding for equal height */
        margin: 0; /* Remove margin for consistent spacing */
    }
}

@media (max-width: 768px) {
    .hire-card {
        width: 80%; /* Increase width on smaller screens */
        margin-bottom: 20px; /* Add spacing between cards */
        padding: 30px; /* Uniform padding */
    }

    .hire-card-2, .hire-card-3 {
        margin-top: 0; /* Reset margins on smaller screens */
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem; /* Decrease title size */
    }

    .section-subtitle {
        font-size: 0.9rem; /* Decrease subtitle size */
    }

    .step-number {
        font-size: 1.5rem; /* Decrease step number size */
    }

    .step-title {
        font-size: 1rem; /* Decrease step title size */
    }

    .hire-card {
        padding: 20px; /* Decrease padding for small screens */
    }
}

/* why work with us */
.why-work{
    max-width: 1250px;
    margin: 0 auto; /* Center the section horizontally */
    text-align: center; /* Optional: Center the title text if needed */
    padding: 40px 20px; /* Add padding for better spacing */
}
.why-work h1{
    font-size: 2rem;
}
.wwcards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Create 4 equal columns */
    gap: 20px;
    justify-items: center;
}

.wwcard {
    background-color: #09254e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease;
}

.wwcard:hover {
    transform: scale(1.05);
}

/* Ensure the 5th card is centered on a new row */
.wwcards-container .wwcard:nth-child(5) {
    grid-column: 2 / 4; /* Centered across the 2nd and 3rd columns */
    justify-self: center;
}

.wwcard .workpic{
    text-align: center;
    margin-bottom: 20px;
}

.wwcard h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.wwcard p {
    font-size: 16px;
    line-height: 1.5;
    color: white;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .wwcards-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }

    /* 5th card will take full width on this screen size */
    .wwcards-container .wwcard:nth-child(5) {
        grid-column: 1 / -1; /* Span full width */
    }
}

@media (max-width: 768px) {
    .why-work h1 {
        font-size: 28px;
    }
    .why-work{
        padding: 0px 20px;
        padding-bottom: 40px;
    }
    .wwcards-container {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .wwcard h2 {
        font-size: 18px;
    }

    .wwcard p {
        font-size: 14px;
    }

    /* 5th card will be stacked naturally */
    .wwcards-container .wwcard:nth-child(5) {
        grid-column: auto; /* Revert to normal stacking on mobile */
    }
}

/* blogs page */
.service-card {
    background: radial-gradient(circle at top left, #1f7dca 5%, #020928 90%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}
.service-card h4 {
    color: #ff9d00;
    font-weight: bold;
    /* font-size: 1.4rem; */
    margin-bottom: 15px;
}
.service-card p {
    font-size: 0.9rem;
    margin: 10px 0 20px;
    line-height: 1.4;
}
.service-card img {
    /* width: 100px; */
    height: 20rem;
    margin-bottom: 20px;
}
.explore-btn {
    border: 2px solid #ff9d00;
    /* color: #051437; */
    color: white;
    font-weight: bold;
    border-radius: 30px;
    padding: 10px 30px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}
.explore-btn:hover {
    background-color: #e58a00;
    color: #051437;
}
.explore-btn i {
    margin-left: 8px;
}
/* Responsive adjustments */
@media (max-width:1300px){
    .service-card img {
        height: 15rem;
    }
}
@media (max-width:1024px){
    .service-card img {
        height: 10rem;
    }
    .service-card p {
        font-size: 0.8rem;
    }
}
@media (max-width: 576px) {
    .service-card {
        padding: 15px;
    }
    .service-card h5 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .service-card p {
        font-size: 0.85rem;
    }
    .explore-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* our company */
/* gallery carousel */

/* .gallery-carousel{
    text-align: center;
} */
.gallery-carousel h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.gallery-carousel p {
    font-size: 18px;
    margin-bottom: 30px;
}

.gallery-carousel h1 span {
    color: #FA911A;
}

#slider {
    position: relative;
    width: 50%;
    /* You can adjust this width as needed */
    height: 30vw;
    /* Adjust as needed, this determines the height based on the width */
    margin: 40px auto;
    font-family: 'Helvetica Neue', sans-serif;
    perspective: 1400px;
    transform-style: preserve-3d;
}

input[type=radio] {
    position: relative;
    top: 108%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: 0 15px 0 0;
    opacity: 0.4;
    transform: translateX(-83px);
    cursor: pointer;
}

input[type=radio]:nth-child(5) {
    margin-right: 0px;
}

input[type=radio]:checked {
    opacity: 1;
}

#slider label {
    position: absolute;
    width: 100%;
    /* Full width of the slider */
    height: 100%;
    /* Full height of the slider */
    left: 0;
    top: 0;
    color: white;
    font-size: 70px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 400ms ease;
    background-size: cover;
    /* Ensure the background image covers the area */
    background-position: center;
    /* Center the image */
    border-radius: 10px;
}

#slide1 {
    background-image: url("/build/images/pic1.svg");
}

#slide2 {
    background-image: url("/build/images/pic2.svg");
}

#slide3 {
    background-image: url("/build/images/pic3.svg");
}

#slide4 {
    background-image: url("/build/images/pic1.svg");
}

#slide5 {
    background-image: url("/build/images/pic2.svg");
}

/* Slider Functionality */

/* Active Slide */
#s1:checked~#slide1,
#s2:checked~#slide2,
#s3:checked~#slide3,
#s4:checked~#slide4,
#s5:checked~#slide5 {
    /* box-shadow: 0 13px 26px rgba(0,0,0, 0.3), 0 12px 6px rgba(0,0,0, 0.2); */
    transform: translate3d(0%, 0, 0px);
}

/* Next Slide */
#s1:checked~#slide2,
#s2:checked~#slide3,
#s3:checked~#slide4,
#s4:checked~#slide5,
#s5:checked~#slide1 {
    /* box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2); */
    transform: translate3d(15%, 0, -100px);
}

/* Next to Next Slide */
#s1:checked~#slide3,
#s2:checked~#slide4,
#s3:checked~#slide5,
#s4:checked~#slide1,
#s5:checked~#slide2 {
    /* box-shadow: 0 1px 4px rgba(0,0,0, 0.4); */
    transform: translate3d(30%, 0, -250px);
}

/* Previous to Previous Slide */
#s1:checked~#slide4,
#s2:checked~#slide5,
#s3:checked~#slide1,
#s4:checked~#slide2,
#s5:checked~#slide3 {
    /* box-shadow: 0 1px 4px rgba(0,0,0, 0.4); */
    transform: translate3d(-30%, 0, -250px);
}

/* Previous Slide */
#s1:checked~#slide5,
#s2:checked~#slide1,
#s3:checked~#slide2,
#s4:checked~#slide3,
#s5:checked~#slide4 {
    /* box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2); */
    transform: translate3d(-15%, 0, -100px);
}
@media (max-width: 768px){
    .gallery-carousel h1 {
        font-size: 26px;
    }
}
@media (max-width: 500px){
    #slider{
        width: 85%;
        height: 45vw;
    }
}
/* end of gallery carousel */   
.about-section {
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-section h5 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section h2 {
        font-size: 1.75rem;
    }

    .about-section h5 {
        font-size: 1.1rem;
    }

    .about-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section h5 {
        font-size: 1rem;
    }

    .about-section p {
        font-size: 0.9rem;
    }
}

/* image gallery from  our-company */
 /* Main container background and padding */
.image-grid {
    padding: 20px;
    border-radius: 10px;
}

/* Image styling with 70% height */
.image-grid img {
    width: 100%;
    height: 70%; /* Set image height to 70% */
    border-radius: 10px;
    object-fit: cover;
}

/* Custom sizing for desktop and larger screens */
.small-width {
    flex: 0 0 40%; /* First image takes 40% of row width */
    max-width: 40%;
}

.large-width {
    flex: 0 0 60%; /* Second image takes 60% of row width */
    max-width: 60%;
}

.half-width {
    flex: 0 0 50%; /* Third and fourth images take 50% each */
    max-width: 50%;
}

/* Reduce margin between rows */
.image-grid .row + .row {
    margin-top: -100px; /* Adjust to control gap between rows for larger screens */
}

/* Responsive Design for Tablets (768px and below) */
@media (max-width: 768px) {
    .small-width,
    .large-width,
    .half-width {
        flex: 0 0 50%; /* Each image takes 50% of the row width */
        max-width: 50%;
    }

    .image-grid .row + .row {
        margin-top: 10px; /* Smaller gap between rows on tablets */
    }
}

/* Responsive Design for Mobile (576px and below) */
@media (max-width: 576px) {
    .small-width,
    .large-width,
    .half-width {
        flex: 0 0 100%; /* Stack images vertically */
        max-width: 100%;
    }

    .image-grid .row + .row {
        margin-top: 10px; /* Adjust gap between rows for mobile */
    }
}
/* image gallery from  our-company  end*/

@media (max-width: 999px) {
    .image-grid {
        display: none;
    }
}

/* Hide the carousel on screens larger than 999px */
@media (min-width: 1000px) {
    #carouselBasicExample {
        display: none;
    }
}


/* why-us */
.icon-circle {
    position: relative;
    z-index: 2;
}

.about-section {
    padding-top: 2rem;
}
.why img{
    height: 22rem;
}

.connection-line1 {
    position: absolute;
    background-color: #FA911A;
    width: 20px;
    height: 35rem;
    left: 49%;
    top: 27%;
    transform: translateX(-50%) rotate(127deg);
    z-index: 1;
}
.connection-line2 {
    position: absolute;
    background-color: #FA911A;
    width: 20px;
    height: 35rem;
    left: 49%;
    top: 27%;
    transform: translateX(-50%) rotate(55deg);
    z-index: 1;
}

.section-wrapper {
    position: relative;
}

@media (min-width: 768px) {
    /* Orange line appears only on larger screens */
    .connection-line1 {
        display: block;
    }
    .connection-line2 {
        display: block;
    }
}

@media (max-width: 767px) {
    .why img{
        height: 17rem;
    }
    /* Hide the orange line on small screens */
    .connection-line1 {
        display: none;
    }
    .connection-line2 {
        display: none;
    }
}

/* FAQ */
.faq-character {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-title {
    font-size: 5rem;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 2px 2px #000;
    margin-bottom: 1rem;
}

.character-image img {
    width: 15rem;
    /* height: auto; */
    margin-top: 1rem;
}

.faq-btn {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.faq-btn:hover {
    color: #ffcc00;
}

.card-faq {
    background: linear-gradient(89deg, rgba(42,208,198,0.9164915966386554) 22%, rgba(69,201,136,0.8688725490196079) 51%, rgba(137,224,103,0.891281512605042) 93%);
    /* border-radius: 10px; */
    color: #fff;
    /* margin-bottom: 15px; */
}

.card-body-faq {
    /* background-color: #47d147; */
    border-radius: 0 0 10px 10px;
    padding: 15px 10px;
    border: none;
    font-weight: 600;
    text-shadow: 1px 1px 3px black;
    /* color: #0d2b4f;*/
}

.fas.fa-chevron-down {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.collapse.show .fas.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(145deg, #006bc0, #071b40);
    margin-bottom: 0px;
}
.faq-box{
    border: 2px solid transparent;
    border-image: linear-gradient(89deg, rgba(0,151,178,1) 0%, rgba(126,217,87,1) 85%);
    border-radius: 11px;
    background: linear-gradient(89deg, rgba(0,151,178,1) 0%, rgba(126,217,87,1) 85%);
}
.faq-question {
    color: #ffffff;
}
.form-control {
    border: 2px solid transparent; /* Remove default border */
    background-clip: padding-box; /* Prevent gradient from overflowing */
    border-image: linear-gradient(89deg, rgba(0,151,178,1) 0%, rgba(126,217,87,1) 85%) 1; /* Create the gradient border */
}
.form-group .btn {
    padding: 5px 40px;
    border-radius: 11px;
    border: none;
    background: linear-gradient(89deg, rgba(0,151,178,1) 0%, rgba(126,217,87,1) 85%);
}
.collapse-icon {
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.collapse.show .collapse-icon {
    transform: rotate(180deg);
}

#faqAccordion{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ask-box{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

@media (max-width: 768px){
    .faq-item {
        font-size: 13px;
        font-weight: 500;
    }
    .card-body{
        font-size: 13px;
    }
    .character-image img {
        width: 10rem;
    }
}

/* Our Team */
.img-fluid-one {
    max-width: 100%; /* Ensures the image doesn't exceed its container's width */
    /* height: 22rem; /* Automatically adjusts the height to maintain    */
   /* aspect ratio  */
  }
.teams h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ff8b00;
}

.teams h2 span {
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.teams .p {
    font-size: 33px;
    font-weight: 500;
}
.teams p {
    margin: 0px 165px;
}

.team-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem !important;
}

.tcard {
    background: radial-gradient(circle, rgba(27,109,177,1) 0%, rgba(5,20,55,1) 85%);
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
}

.tcard img {
    height: 12rem;
    margin-bottom: 20px;
    margin: 0 auto; /* Center the image horizontally */
}

.tcard:hover {
    box-shadow: 1px -10px 35px 0px #4F90AD;
    transform: translateY(-10px);
}

.tcard h3 {
    /* color: #ff8b00; */
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
    text-shadow: 0 0 10px #41556F, 0 0 10px #41556F, 0 0 15px #41556F, 3px 1px 3px black;
}

.tcard p {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 10px;
    text-align: start;
    font-weight: 600;
}

.learn{
    background-color: transparent;
    /* border: 2px solid #feb662; */
    color: #ff8b00;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 0px 20px; */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    font-weight: 600;
    text-shadow: 0px 1px 1px black;
    width: 50%;
    margin: -7px auto;
    font-size: larger;
    position: relative;
    top: -3px;
}
.learn-more2 {
    background-color: transparent;
    border: 2px solid #ff8b00;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    text-shadow: 0px 1px 1px black;
    width: 15%;
    margin: 10px auto;
}

/* .learn-more:hover {
    background-color: #feb662;
    color: #051437;
    text-shadow: none;
} */

.social-contact img{
    height: 25px;
}

.more-info{
    background-color: transparent;
    border: 2px solid #ff8b00;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    /* font-weight: 700; */
    text-shadow: 0px 1px 1px black;
    width: 50%;
    margin: 5px auto;
}

.more-info:hover{
    background-color: #ff8b00;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .teams h2 {
        font-size: 24px;
    }

    .teams h2 span {
        font-size: 24px;
    }

    .teams .p {
        font-size: 20px;
    }
    
    .team-cards {
        padding: 30px;
    }

    .tcard {
        width: auto;
    }

    .learn-more {
        width: 100%;
    }
}
@media (max-width: 768px){
    .learn-more2 {
        width: 40%;
    }
}
@media (max-width: 1000px){
    .teams p {
        margin: auto;
    }
}

.about-info{
    /* padding: 2rem 8rem; */
    padding-top: 2rem;
    font-size: 20px;
}
.about-info2{
    /* padding: 2rem 8rem; */
    padding-top: 2rem;
    font-size: 20px;
}
.about-info2 p{
    border-bottom: 2px solid white;
    padding-bottom: 15px;
}
.pn{
    display: flex;
    justify-content: space-between;
    /* margin: 0 6rem; */
}
.pn a{
    margin-top: 10px;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 8px;
    padding: 5px 10px;
}
@media (max-width: 768px) {
    .about-info {
        padding: 1rem;
        font-size: 16px;
    }
    .img-fluid {
        height: auto;
      }
}