@import url('https://fonts.cdnfonts.com/css/aquire');

/* Reset default browser styles */
* {
    margin: 0;
    box-sizing: border-box;
}

/* Define CSS variables */
:root {
    --home-color: #00171F;
    --word-color: #00171F;
}

/* Body styles */
body {
    overflow-x: hidden;
    /* This hides the horizontal scrollbar */
    max-width: 100%;
    /* This prevents content from overflowing horizontally */
    background-color: #edf1fd;
    /* background-color: #00171F; */

}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #00171F;
    z-index: 1;
    background-image: url('images/bg.png');
    height: 10vh;
}

.sticky img {
    display: none;
}

.sticky hr {
    display: none;
}

.sticky .right {
    margin-top: 08px;
}

/* Section styles */
#section1 {
    background-color: var(--home-color);
    height: 100vh;
    width: 100%;

}

.main {

    margin-left: 150px;
    margin-right: 150px;
    /* border: 1px solid red; */
}

/* Navbar styles */
.navbar {
    width: 100%;
    background-image: url('images/bg.png');
    background-repeat: no-repeat;
    background-size: 1440px 600px;
    background-position: center;
    height: 100vh;
    /* border: 1px solid red; */
}


.live {
    text-decoration: overline;
}

/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 150px;
    margin-left: 150px;

}

/* Styles for the unordered list */
.nav-menu .right ul {
    display: flex;
    list-style-type: none;
    padding: 0;
}

/* Styles for list items */
.nav-menu .right ul li {
    margin-left: 40px;
    color: white;
    font-size: 20px;
    font-family: Teko, sans-serif;
}

.nav-menu .right ul li a {
    color: white;
    text-decoration: none;
}
a{
    
    text-decoration: none;
}

hr {
    background-color: white;
    height: 1px;
    margin-top: 10px;
}

.welcome {
    text-align: center;
    font-family: "Open Sans", sans-serif;
    color: white;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.welcome h1 {
    color: white;
    font-size: 50px;
    text-align: center;
    font-family: 'Aquire', sans-serif;
    padding-top: 20px;
}

.welcome p {
    font-family: "Open Sans", sans-serif;
    font-size: 25px;
}

.welcome span button {
    width: 200px;
    height: 30px;
}

.grey {
    opacity: 0.6;
    cursor: not-allowed;
}

.left img {
    width: 100px;
    height: 80px;
}

.downimg {
    width: 100%;
    margin-top: -50px;
    /* border: 1px solid; */
}

.downimg img {
    width: 100%;

}

/* about us section  */
#about-us-section {
    background-color: #edf1fd;
    height: 100vh;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.about-us-main {
    margin-left: 150px;
    margin-right: 150px;
    margin-top: 50px;
    /* border: 1px solid red; */
}

.about-us-section hr {
    height: 70vh;
}

.about-us-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-content: space-between;
}

.about-us-cards h2 {
    padding-top: 10px;
}

.about-us-cards p {
    text-align: justify;
    padding: 15px;
}

.about-card {
    /* height: 30vh; */
    width: 48%;
    background-color: white;
    /* border: 1px solid; */
    box-shadow: 05px 5px #00171F;
    color: #00171F;
    padding: 5px;
    /* text-align: left; */
    font-family: "Open Sans", sans-serif;
    border-radius: 10px;
}

.myhr {
    height: 0px;
    width: 50px;
    background-color: #00171F;
}

.heading {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: first baseline;
    margin: auto;
}

.heading hr {
    display: block;
}

/*  */

.team-section {
    height: 100vh;
    margin-top: 50px;
    background-color: #edf1fd;
    /* border: 1px solid; */
}

.team-main {
    margin-left: 150px;
    margin-right: 150px;
    /* border: 1px solid; */
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: space-around;
}

.team-card {
    height: 40vh;
    background: #00171F;
    width: 48%;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    justify-content: space-around;
    /* background-image: url('images/teamcard.png'); */
    background-image: url('images/bg.png');

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 10px;
    text-align: justify;
}

.team-media {
    position: absolute;
    height: 10vh;
    margin-top: 0px;
    width: 80px;

    display: flex;

    /* border: 2px solid red; */
}

.team-media img {
    height: 30px;
    width: 30px;
    filter: invert(100%);
    margin-right: 10px;
    margin-top: 0px;
}

.animated-element {
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(05%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animated-element.in-view {
    opacity: 1;
    transform: translateY(0);
    animation: slide-up 1s forwards;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(10%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-card img {
    width: 30%;
    height: 40vh;
}

.team-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 15px;
    align-items: center;
    height: 170px;
    color: white;
    /* border: 1px solid white; */
}

/* sponsors section  */

.sponsors-section {
    text-align: center;
    font-family: "Times New Roman";
    margin-left: 150px;
    margin-right: 150px;
    /* border: 1px solid red; */
    margin-top: 50px;
    height: auto;
}

marquee {
    display: flex;
    /* border: 1px solid; */
    margin-bottom: 30px;
    background: white;
}


.section3 {
    background-color: #edf1fd;
    height: 100vh;
    text-align: center;
    margin-top: -10px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

/* .staff{
    height: 100vh;
    margin-top: 0;
} */
.section3 .main {
    margin-left: 150px;
    margin-right: 150px;
    margin-top: 50px;
}



.main .staff-card {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    gap: 10px;
    align-items: center;
    min-height: 70vh;
    margin-bottom: 30px;

}

.main .card {
    height: auto;
    width: 280px;
    background-color: white;
    /* border: 2px solid white; */
    animation-name: animate;
    animation-duration: width 2s height 1s;
    /* border: 2px solid black; */
    /* border-top-left-radius: 10px;
    border-top-right-radius: 10px; */
    /* border-radius: 10px; */
    box-shadow: 2px 2px 2px 2px #00171F;
}

.img-card {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    margin: auto;
}

.img-card img {
    width: 100%;
    height: fit-content;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card .card-detail {
    width: 100%;
    height: 15%;
    /* border: 2px solid red; */
    margin-top: 15px;
}

.card-detail h1 {
    text-align: left;
    padding: 5px;
    font-size: 15px;
    color: #00171F;
    font-family: "Open Sans", sans-serif;
}

.main .wrapper {
    width: 100%;
    height: 15%;
    /* border: 2px solid red; */
    margin-top: 15px;
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #00171F;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px 0 0 3px;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 0px 3px 3px 0px;
}

.prev {
    left: 0;
    border-radius: 0px 3px 3px 0px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: #00171F;
    color: white;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.activeslide,
.dot:hover {
    background-color: #FEA609;
}

/* Fading animation */
.fade {
    display: flex;
    justify-content: space-around;
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

.accordion h2 {
    font-family: "Open Sans", sans-serif;
    color: #00171F;
    padding: 4px;
    font-size: 15px;
    text-align: left;
    padding-left: 10px;
}

.accordion .question p {
    color: #00171F;
    padding-left: 10px;
    padding-top: 5px;
    text-align: left;
    position: relative;

}




/* Adjusted styling */
.accordion .answer {
    color: #00171F;
    padding-left: 10px;
    padding-top: 5px;
    height: 0px;
    overflow: hidden;
    transition: height 0s;
    /* Change transition to handle height */
}

.content-container {
    color: #03c;
    /* background-color: rgb(222, 10, 10); */
}

.accordion .content-container.active .answer {
    height: auto;
    /* Display the answer when active */
    padding-top: 5px;

    /* Adjust padding to reveal content */
}







/* about section 5 */

.section5 {
    background-color: #edf1fd;
    height: 100vh;
    text-align: center;
    margin-top: -10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section5 .main {
    margin-left: 150px;
    margin-right: 150px;
    margin-top: 50px;

}

.main .service {
    /* border: 2px solid black; */
    min-height: 80vh;
    max-height: auto;
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #dae2fb;
    border-radius: 10px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    justify-content: space-around;
    height: 100%;
    /* margin-top: 5px; */
}

.service-card {
    background-color: white;
    width: 45%;
    min-height: 100%;
    max-height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

.service-card div {
    border: 2px solid black;
    width: 70px;
    height: 30px;
}



/* .service .bottom-card{
    width: 100%;
    height: 45%;
    background-color: #dae2fb;
    margin-top: 5px; 
}*/
.service h1 {
    text-align: left;
    margin-top: 30px;
    padding-left: 10px;
    font-size: 20px;
    font-family: 20px;
    color: #00171F;
}

.service h2 {
    text-align: left;
    margin-top: 30px;
    padding-left: 10px;
    font-size: 15px;
    font-family: 20px;
    color: #00171F;
}

.service button {

    width: 120px;
    height: 35px;
    margin-left: 200px;
    margin-bottom: 10px;
    padding: 5px;
    background-color: #00171F;
    border-radius: 5px;
    color: white;
    outline: none;
    border: none;
    /* box-shadow: 2px 2px 4px 4px blue; */


}

.contact-section {
    background-color: #00171F;
    background-image: url('images/bg.png');
    background-repeat: no-repeat;
    background-size: 1440px 600px;
    background-position: center;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: Ubuntu;
    height: 90vh;
    width: 100%;
}

.contact-main {
    margin-left: 50px;
    margin-right: 50px;
    display: flex;
    color: white;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */

    height: 75vh;
    /* justify-content: space-around; */
}


.contact-details-contact {
    display: flex;
    /* gap: 10px; */
    flex-direction: row;
    justify-content: space-evenly;

    /* gap: 10px; */
    /* border: 2px solid red;  */


    width: 100%;
    /* border: 2px solid red; */
    margin-top: 30px;
    align-content: center;



}

.contact-details-contact .email,
.address {
    width: 20%;
    /* border: 2px solid red; */
    text-align: center;
    height: 40vh;
    /* border: 2px solid red; */
}

.contact-details-message {

    margin-left: 30px;
    /* border: 2px solid red; */
}

.contact-details-contact .phone {
    width: 30%;
    text-align: center;
    height: 40vh;
    /* border: 2px solid red; */
}

.contact-details {
    display: flex;
    /* gap: 10px; */


}

/* .contact-details-message input,
button {
    height: 30px;
    width: 100%;
} */
.contact-details-message1 {
    height: 30px;
    width: 20%;
}

.contact-details-message1 a {
    display: block;
    /* text-align: center; */
    margin-left: 20px;
    margin-top: 6px;
    color: white;
    text-decoration: none;
}

.contact-details-message1 h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    /* border: 2px solid black; */
}

.hr {
    display: flex;
    align-items: center;
    gap: 04px;
    font-weight: bold;
}

.media {
    color: white;
    margin: auto;
    height: 20vh;
    margin-top: 10px;
    width: 40%;
    text-align: center;
    /* border: 2px solid red; */
}

.media img {
    height: 30px;
    width: 30px;
    filter: invert(100%);
    margin-right: 20px;
    margin-top: 20px;
}

footer {
    color: white;
    text-align: center;
    height: 10vh;
}

/* about sectionn6 */
.section6 {
    background-color: #edf1fd;
    min-height: 100vh;
    max-height: auto;
    text-align: center;
    margin-top: -10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}




.section6 .main {
    margin-left: 150px;
    margin-right: 150px;
    margin-top: 50px;
}


/*
accordion 1 */
.question-wrapper {
    min-height: 90vh;
    max-width: auto;
    /* border: 2px solid black; */
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center;
    align-items: center; */
    font-size: 16px;
    font-family: Oxygen, sans-serif;
    margin-bottom: 20px;

    /* border: 1px solid brown; */

}

.question-container {
    min-height: 10vh;
    max-height: auto;
    /* border: 2px solid black; */
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    /* border: 2px solid black; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    position: relative;
    /* border: 1px solid; */
    background-color: #dae2fb;

}

.content-container2 {

    height: 100%;
    width: 100%;
}

.question1 {
    min-height: 45%;
    max-height: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    min-width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    /* border: 2px solid black;
   */


}

.answer1 {
    min-height: 45%;
    max-height: auto;
    margin-top: 5px;
    margin-bottom: 5px;

    /* border: 2px solid black; */
    width: 100%;
    padding-right: 50px;
}

.accordion1 p {
    text-align: right;
    text-align: justify;
    color: black;
    /* border: 1px solid; */

}

.accordion1 .question1::after {
    content: url("images/up2.png");

    /* Additional styles */
    font-size: 20px;
    position: absolute;
    top: 20px;
    left: 0px;
    margin-left: 130px;
}


/* Adjusted styling */
.accordion1 .answer1 {
    padding-left: 10px;
    padding-top: 5px;
    height: 0px;
    overflow: hidden;
    transition: height 0s;
    /* Change transition to handle height */
}

.content-container2.active {
    height: auto;
}

.accordion1 .content-container2.active .answer1 {
    height: auto;
    /* Display the answer when active */
    padding-top: 5px;
    /* Adjust padding to reveal content */
}

.accordion1 .question1::after {
    background-image: url('images/down3.png');
    background-size: 25px 25px;
    /* Set the width and height of the image */
    background-repeat: no-repeat;
    font-weight: 900;
    font-size: 90px;
    position: relative;
    top: -20px;
    left: 400px;
    display: inline-block;
    /* Ensure that the pseudo-element has a size */
    width: 20px;
    /* Width of the pseudo-element */
    height: 20px;
    /* Height of the pseudo-element */
    content: "";
    /* background-color: white; */
    border-radius: 50px;
}

.accordion1 .content-container2.active .question1::after {
    background-image: url('images/up3.png');
    background-size: 25px 25px;
    /* Set the width and height of the image */
    background-repeat: no-repeat;
    font-weight: 900;
    font-size: 70px;
    position: relative;
    top: -20px;
    left: 400px;
    display: inline-block;
    width: 20px;
    height: 20px;
    content: "";
    /* background-color: white; */
    border-radius: 50px;
}


/* about login and signup */

.login-container {
    width: 100%;
    height: 100vh;

    background-color: #00171F;


}
#single-body{
    width: 100%;
    background-image: url('images/bg.png');
    height: auto;
    /* border: 3px solid red; */
    background-position: center;
    background-size: cover;
    
    flex-direction: column;
    background-attachment: fixed;
    background-color: #00171F;
}
.wrapper-all-single {
   
    display: flex;
    flex-direction: column;
    background-attachment: fixed; 
    align-items: center;
    justify-content: space-around;
}
.wrapper-all-single img {
    width: 150px;
    height: 120px;
}

.wrapper-all {
    background-image: url('images/bg.png');
    width: 100%;
    height: 100%;
    /* border: 3px solid red; */
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;

}

.wrapper-all img {
    width: 150px;
    height: 120px;
}

.logo {
    display: flex;
    color: white;
    align-items: center;
    width: fit-content;
    height: fit-content;
}

.login-container .logo img {
    width: 150px;
    height: 120px;
    margin: auto;
}

.login-detail {
    height: auto;
    width: 35%;
    border: 1px solid;
    background-color: #dae2fb;
}
.login-detail img{
    height: 17px;
    width: 17px;
    margin-right: 10px;
    margin-left: 5px;
    margin-bottom: 6px;

}
.show-pass{
    position: relative;
    margin-top:10px;
    float: right;
}
.singlecase-detail {
    
    width: 100%;
    /* background-color: #dae2fb; */
}
.singlecase-data{
    width: 100%;
    background-color: #dae2fb;
    height: 100vh;
    
}
.fitalic{
    font-style: italic;
}
.input-field {
    width: 80%;
    height: 40px;
    border: 1px solid rgb(79, 75, 75);
    margin: auto;
    background-color: white;
    margin-top: 30px;

}
#preferred{
    width: 100%;
    height: 40px;
    border: 1px solid rgb(79, 75, 75);
    margin: auto;
    background-color: white;
   

}
#names{
    display: flex;
    gap: 05px;
    width: 80%;
    margin: auto;
}
.names {
    width: 50%;
}

#address-sub{
    display: flex;
    gap: 05px;
    width: 80%;
    margin: auto;
}
#address fieldset{
    width: 100%;
}

.address-register{
    width: 50%;
}
form>fieldset{
width: 80%;
margin: auto;
color: #00171f;
}
form>fieldset>.input-field,
#address-sub{
    margin: 0;
    width: 100%;
}
.input-field input {
    width: 80%;
    height: 100%;
    border: none;
    outline: none;
}

.buttons {
    width: 80%;
    height: 100%;
    margin: auto;
}

.buttons button {
    width: 100%;
    border: none;
    outline: none;
    color: white;
    margin-bottom: 10px;
}

.buttons button a {
    text-decoration: none;
    color: white;
}

.submit-button {
    width: 80%;
    height: 50px;
    margin: auto;
    background-color: #00171F;
    margin-top: 30px;
}

.submit-button p {
    color: #03c;
    text-align: center;
}

.login-detail p {
    text-align: center;
    padding-top: 20px;
}

.login-detail p a {
    text-decoration: none;
}

.signup-container {
    width: 100%;
    min-height: 100vh;
    max-height: fit-content;
    background-image: url('images/bg.png');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #00171F;

    color: white;
}
.signup-container  a{
    text-decoration: none;
    color: #0fb447;
}
.signup-detail {
    height: auto;
    width: 35%;
    margin-top: 10px;
    /* border: 1px solid yellow; */
    background-color: #dae2fb;
    margin-bottom: 10px;
}

.signup-detail h1 {
    text-align: center;
    color: black;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-top: 10px;
}

.signup-submit {
    display: flex;
    width: 80%;
    height: 10%;
    border: 1px solid;
    justify-content: center;
    justify-content: space-evenly;
    margin-top: 20px;

}

/* about srvice */
.section-service-page {
    background-color: #00171F;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

}

.section-service-page .service-wrapper {
    background-image: url("images/bg.png");
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    flex-grow: 1;

}

.go-home {
    margin-top: 50px;
    margin-left: 20px;
    position: absolute;
    top: -40px;
    left: -10px;

}

.go-home button {
    border-radius: 70px;
    height: fit-content;
    color: white;
    background-color: #dae2fb;
    color: #00171F;
    border: none;
    outline: none;
}

.go-home button a {
    color: white;
    text-decoration: none;
}

.section-service-page .main {
    margin-left: 150px;
    margin-right: 150px;
}

.section-service-page .heading {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: first baseline;
    margin: auto;
    color: black;
    margin-bottom: 10px;
}

.service-cards-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    /* margin-top: 20px; */
    margin-top: 60px;
    min-height: 100vh;
    margin-bottom: 10px;

    background-color: #dae2fb;

    /* margin-bottom: 20px; */

}

.service-cards-page .service-card1 {
    width: 80%;

    flex-grow: 1;
    background-color: white;
    margin: auto;
    box-shadow: 2px 2px 2px 2px #00171F;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    /* margin-top: 20px; */
    /* margin-bottom: 20px; */
    margin-bottom: 20px;
}

.service-card1 h1 {
    color: #00171F;
    font-size: 20px;
    padding-top: 10px;
    margin-left: 20px;
}

.service-card1 h2 {
    color: #00171F;
    font-size: 20px;
    padding-top: 10px;
    margin-left: 20px;
}

.service-container-page {
    width: 100%;
    height: auto;
}

.service-display-page {
    width: 100%;
    height: 0px;
    overflow: hidden;
    border: 3px solid white;
}

.service-display-page p {
    text-align: justify;
    color: #03c;
    padding: 10px;
    font-family: "Open Sans", sans-serif;
    margin-right: 30px;

    font-size: 18px;
}

.service-card1 span {
    float: right;
    margin-right: 10px;
}

.service-card1 button {
    width: 180px;
    height: 40px;
    border: none;
    outline: none;
    background-color: #00171F;
    margin-top: 40px;
    margin-bottom: 30px;
    /* margin-left:  700px; */
    float: right;
    color: white;
    border-radius: 5px;

}


.service-display-page {
    width: 100%;
    height: 0px;
    overflow: hidden;
}


/* about contacts */
/* .contact-section{
    width: 100%;
    min-height: 160vh;
    background-color: #00171F;
    background-image: url("images/bg.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
   display: grid;
   grid-template-columns: 1fr;

}
.contact-section .main{
    margin-left: 150px;
    margin-right: 150px;
} */
/* .contacts-container{ */
/* width: 100%;
    display: grid;
    grid-template-columns: 1fr;
 
    
    margin-top: 50px;
    background-color:#edf1fd;

} */
/* .contacts-message1{
    width: 80%;
    height: auto;
    margin: auto;
    background-color:#dae2fb;
    box-shadow: 2px 2px 2px 2px #00171F;
  
   
    margin-top: 10px;
 


    
} */

/* .contacts-message1 input{
    width: 70%;
    outline: none;
  
    border: 1.5px solid rgb(42, 148, 42);
    margin-left: 120px;
    margin-top: 20px;
    height: 40px;
    border-radius: 6px;
} */

/* .contacts-message1 textarea{
    width: 70%;
    height: 150px;
   
    margin-left: 120px;
    margin-top: 50px;
    margin-bottom: 10px;
      border-radius: 6px;
      border: 1.5px solid rgb(42, 148, 42);
    outline: none;
} */
/* .contacts-message1 input:hover,
.contacts-message1 input:focus{
    border: 1.5px solid #03c;
}
.contacts-message1 textarea:hover,
.contacts-message1 textarea:focus{
    border: 1.5px solid #03c;
} */
/* .contacts-message1 button{
    background-color: #00171F;
   
    width: 140px;
    height: 40px;
    float: left;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: 110px;
    border-radius: 5px;
    color: white;
    border: none;
    outline: none;

} */
/* .contacts-address{
    width: 80%;
    height: auto;
   
    margin-top: 30px;
    
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    background-color: #dae2fb;
   gap:40px;
   box-shadow: 2px 2px 2px 2px #00171F;
  

} */
/* .contacts-address .title-address{
    text-align: center;
    color: black;
   
   
 
/* .contacts-address H3{
    color: black;
    text-align: center;
    margin-top: 15px;
}
.contacts-address p{
    color: #00171F;
    font-family: Teko, sans-serif;
}
.contacts-address .address2{
    width: 30%;
  

    margin-top: 20px;
    
    margin-bottom: 20px;
   

}
.contacts-address .address2 p{
    text-align: center;
    margin-top: 10px;
   
  
}
.contacts-address .address2 p i{
    background-color:#dae2fb;
    border-radius: 20px;
    padding: 10px;
    color: black;
    font-size: 30px;
    color: #03c;
}

/* about consultance */
.section-consultance-page {
    background-color: #00171F;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.section-consultance-page .consultance-wrapper {
    background-image: url("images/bg.png");
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    flex-grow: 1;
    /* border: 1px solid red; */

}

.consultance-wrapper .main {
    margin-left: 150px;
    margin-right: 150px;
    /* border: 1px solid red; */

}

.consultance-cards-page {
    width: 100%;
    display: flex;
    flex-direction: column;

    margin-top: 60px;
    min-height: 100vh;
    margin-bottom: 10px;

    background-color: #dae2fb;


}

*/

/* .consultance-cards{

    min-height:80vh;
    max-height: fit-content;
    margin-bottom: 20px;

} */
/* .consultance-card{
    width: 80%;
    min-height: 180px;
    max-height: fit-content;
    margin: auto;
    background-color: white;
    margin-top: 10px;
    color: #00171F;
    box-shadow: 2px 2px 2px 2px #00171F;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
    

}
.consultance-card  h2{
    padding-top: 10px;
    color: #00171F;
    padding-left: 10px;
}
.consultance-card p{
    font-size: 18px;
    text-align: justify;
    line-height: 20px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    color: #03c;
    padding-bottom: 15px;
}
/* about internaship */
.internaship-body {
    width: 80%;
    margin: auto;
    min-height: 90vh;
    /* align-items: center; */
    /* align-content: center; */
    max-height: fit-content;
    /* background-color: #edf1fd; */
}

.internaship-body h3 {
    text-align: center;
    color: #00171F;
    margin-top: 10px;
}

.internaship-section {
    width: 100%;
    min-height: 60vh;
    align-content: center;
    max-height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #dae2fb;
}

.internaship-section .internaship {
    width: 40%;
    min-height: 30vh;
    max-height: fit-content;
    margin-top: 40px;
    background-color: whitesmoke;
    border-radius: 10px;
    /* border: 2px solid #03c; */
    box-shadow: 5px 2px 2px 2px #00171F;
}

.internaship-section .internaship h2 {
    margin-left: 30px;
    color: #00171F;
    margin-top: 10px;
}

.internaship ul {
    display: flex;
    flex-direction: column;
    /* column-gap: 20px; */
    row-gap: 20px;
    margin-top: 20px;
}

.internaship ul li {
    list-style-type: none;
    color: #00171F;
    text-transform: capitalize;
    font-family: Ubuntu, sans-serif;
}

.internaship ul li span {
    margin-right: 10px;
}

*/
/* about this new page ........................................*/

/* about conatacts............................................ */

.contacts-section {
    width: 100%;
    min-height: 100vh;
    max-height: fit-content;
    background-color: #dae2fb;

}

.contacts-section .main {
    margin-left: 150px;
    margin-right: 150px;
}

.go-home2 {
    margin-top: 50px;
    margin-left: 20px;
    position: absolute;
    top: -20px;
    left: 25px;

}

.go-home2 button {
    border-radius: 70px;
    height: fit-content;
    color: white;
    background-color: #d9d9d9;
    color: #00171F;
    border: none;
    outline: none;
}

.go-home2 button a {
    color: white;
    text-decoration: none;
}

.contacts-title {
    height: 20vh;
    width: 100%;
    /* border: 2px solid red; */
    text-align: center;
    color: white;
    align-content: center;
    /* box-shadow: 2px 2px 2px 2px #00171F; */
    font-family: Babas, sans-serif;
    background-image: url("images/title.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 20vh;
}

.contact-title h1 {
    text-align: center;
}

.contacts-container1 {
    width: 100%;
    /* border: 1px solid red; */
    margin-top: 20px;
    min-height: 80vh;
    box-shadow: 2px 2px 2px 2px #00171F;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 30px;
    max-height: fit-content;
}

.contacts-container1 h1 {
    color: black;
    margin-top: 10px;
    text-align: center;
    font-family: Signika;

}

.contacts-message1 {
    width: 100%;
    min-height: 35vh;
    max-height: fit-content;
    /* border: 1px solid red; */

    margin: auto;
    margin-bottom: 10px;
}

.contacts-message1 div {
    width: 70%;
    height: auto;
    margin: auto;
    /* border: 1px solid yellow; */
    align-content: center;
}

.contacts-message1 input {
    width: 100%;
    /* text-align: center; */
    height: 40px;
    border: 1px solid rgb(14, 13, 13);
    outline: none;
    /* border: none; */
    background-color: #edf1fd;
    margin-top: 20px;
    /* margin: auto; */

}

.contacts-message1 textarea {
    width: 100%;
    /* text-align: center; */
    height: 130px;
    border: 1px solid rgb(14, 13, 13);
    outline: none;
    /* border: none; */
    background-color: #edf1fd;
    margin-top: 20px;
}

.contacts-message1 button {
    margin-top: 20px;
    background-color: #00171F;
    border: none;
    width: 150px;
    height: 40px;
    padding: 6px;
    border-radius: 3px;
    color: white;
}

.contacts-message1 .contact-address {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    font-family: Ubuntu;
    /* border: 3px solid green; */
    /* justify-content: space-between; */

}

.contacts-message1 .contact-address .address2 {
    height: 200px;
    width: 30%;
    /* border: 3px solid green; */
    text-align: center;
}

.contacts-message1 .contact-address i {
    font-size: 30px;
    color: #03c;
    margin-bottom: 20px;
}

.contacts-message1 .contact-address h3 {
    margin-top: 10px;
    font-family: Ubuntu;
    margin-bottom: 10px;
}

/* about services ****************************************************8*/
.services-all {
    width: 100%;
    min-height: 70vh;
    margin-top: 20px;
    max-height: fit-content;
    /* border: 2px solid rebeccapurple; */

}

.services-button {
    width: 100%;
    /* height: 10vh; */
    display: flex;
    flex-direction: row;
    /* border: 2px solid red; */
    align-content: center;
    border-bottom: 2px solid black;
}

.services-button button {
    margin-left: 0px;
    background-color: #d9d9d9;
    /* border: none; */
    border: 1px solid black;
    outline: none;
    width: 150px;
    height: 40px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.services-content {
    width: 100%;
    min-height: 60vh;
    padding-left: 20px;
    padding: 20px;
    max-height: fit-content;
    text-align: center;
    font-size: 1rem;

    background-color: white;
    align-content: center;
    z-index:1;
    border: 2px solid rgb(218,220,224);
    font-weight: 400;
    border-width: 2px;
    border-radius: 5px;
    letter-spacing: .00625em;
    line-height: 1.5rem;
    text-align: justify;
    font-family: Oxygen, sans-serif;
    max-height: fit-content;
    /* color: hsl(195, 100%, 6%); */
    /* border: 2px solid red; */
    margin-top: 20px;
}

.services-content button {
    width: 150px;
    height: 40px;
    float: right;
    margin-right: 20px;
    background-color: #00171F;
    color: white;
   
    border-radius: 6px;
    margin-bottom: 20px;
    border: none;
    outline: none;
}

/* about internaships ....................................................*/


.services-button #all {
    width: 200px;
    height: 40px;
    /* background-color: #03c; */
    border: none;
    background-color: transparent;
    font-size: 20px;
}

.internaships-cards {
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* align-content: center; */
    max-height: fit-content;
    /* border: 2px solid red; */
}

.internaships-cards .internaships-card {
    width: 49%;
    height: 25vh;
    /* border: 2px solid red; */
    background-color: white;
    margin-top: 10px;
    box-shadow: 2px 2px 0px 2px #00171F;
    border-radius: 5px;
    z-index: 1;
    font-family: Oxygen, sans-serif;
    margin-bottom: 10px;
}

.internaships-card h2 {
    margin-left: 20px;
    margin-top: 10px;
    color: #00171F;
}

.internaships-card div {
    width: 90%;
    position: relative;
    left: 80px;
    top: 70px;
    display: flex;
    flex-direction: row;
    /* border: 1px solid red; */
}

.internaships-card .seats,
.internaships-card .level {
    background-color: #00171f;
    width: 28%;
    font-family: Oxygen, sans-serif;
    color: white;
    border: none;
    outline: none;
    border-radius: 4px;
    padding: 6px;
    margin-right: 2px;
}

.internaships-card .number {
    padding: 6px;
    width: 8%;
    font-family: Oxygen, sans-serif;
    border: none;
    outline: none;
    color: white;
    background-color: #0fb447;
    border-radius: 4px;
    margin-right: 2px;
}

.internaships-card .apply {
    padding: 6px;
    width: 20%;
    font-family: Oxygen, sans-serif;
    border: none;
    outline: none;
    margin-left: 8px;
    width: 80px;
    color: white;
    background-color: #0fb447;
    border-radius: 4px;
    width: 20%;

}

/* about consultance .................................................*/


.consultance-button {
    width: 100%;
    /* border: 2px solid red; */
    align-content: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.consultance-button button {

    min-width: 19%;
    height: 60px;
    font-size: 16px;
    /* border-top-left-radius: 5px;
    border-top-right-radius: 5px; */
    border-radius: 5px;
    /* border: none; */
    background-color: rgb(226, 194, 12);
    color: black;
    border: 1px solid black;
    box-shadow: 0px 5px 0px #00171f;
    outline: none;
    
    /* margin-left: -4px; */
    /* max-width:max-content; */
}

 /* about profile */
.profile{
  display: flex;
  flex-direction: row;
  /* width: 300px; */
  box-shadow: 2px 2px 2px #00171F;
  gap:10px;
  padding: 10px;
  border-radius: 50px;
  cursor: pointer;
  font-family: Teko,sans-serif;
  background-color: #edf1fd;
  align-content: center;
  display: none;
  
}
.prof-detail{
  position: absolute;
  z-index: 1;
  right: 120px;
  top: 75px;
  font-family: Teko,sans-serif;
  /* z-index: 1; */
  padding:10px;
  width: 300px;
  height: auto;
  background-color:#edf1fd;
  box-shadow: 2px 2px 2px #00171F;
  border-radius: 5px;
  display: none;
}
.profile-data{
  color:grey;
}
.profile-footer{
  display: flex;
  justify-content: space-between;
}
.singlecase-detail {
    height: 70vh;
    width: 95%;
    border: 1px solid;
    background-color: #dae2fb;
}
#singlecase-data{
    padding-left: 30px;
}
.fitalic{
    font-style: italic;
}
.toast-gif {
    width: 20px; /* Adjust the width as needed */
    height: 20px; /* Adjust the height as needed */
    margin-top: 2px; /* Adjust the margin as needed */
  }
.toast {
    position: fixed;
    top: 1%;
    left: 50%;
    /* width: 10px; */
    transform: translateX(-50%);
    padding: 10px 20px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

.toast.success {
    background-color: #ffffff ;
    /* Green color for success */
    color:  green;
}

.toast.success {
    background-color: #28a745;
    /* Green color for success */
    color: #fff;
  }
  .toast.error {
    background-color: #dc3545;
    /* Red color for error */
    color: #fff;
    width: fit-content;
  }

.toast.show {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
@media screen and (max-width:600px){
    .login-container {
        width: 100%;
        height: 100vh;
    
        background-color: #00171F;
    
    
    }
    
    .wrapper-all {
        background-image: url('images/bg.png');
        width: 100%;
        height: 100%;
        /* border: 3px solid red; */
        background-position: center;
        background-size: cover;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    
    }
    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 13px;
        color: white;
        align-items: center;
        width: fit-content;
        height: fit-content;
        
    }
    .login-detail{
        height: auto;
        width: 95%;
        /* border: 2px solid red; */
        background-color: #03c;
        border: 1px solid;
        background-color: #dae2fb;
        margin-bottom: 40px;
    }
    .login-detail img{
        height: 17px;
        width: 17px;
        margin-right: 10px;
        margin-left: 5px;
        margin-bottom: 6px;
    
    }
    .input-field {
        width: 95%;
        height: 37px;
        border: 1px solid rgb(79, 75, 75);
        margin: auto;
        background-color: white;
        margin-top: 30px;
        /* align-items: center; */
    
    }

    /* about signup */
    .signup-container {
        width: 100%;
        /* background-image: url('images/bg.png'); */
        background-position: center;
        background-attachment: fixed;
        background-size: cover;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #00171F;
        /* border: 2px solid red; */
        height: auto;
        color: white;
    }
    .signup-detail {
        height: auto;
        width: 90%;
        margin-top: 10px;
        /* border: 1px solid yellow; */
        background-color: #dae2fb;
        margin-bottom: 10px;
    }
    #names{
        display: flex;
        flex-direction: column;
        gap: 05px;
        width: 95%;
        margin: auto;
    }
    .names {
        width: 100%;
    }
  
    
    .buttons {
        width: 95%;
        height: 100%;
        margin: auto;
    }
    
    .buttons button {
        width: 100%;
        height: 40px;
        border: none;
        outline: none;
        color: white;
        margin-bottom: 10px;
    }
    .show-pass{
        /* background-color: #0fb447; */
        position:relative;
        top: -25px;
        float: right;
        
    }
  
}


@media (min-width: 601px) and (max-width: 1056px){
    .login-detail{
        height: auto;
        width: 95%;
        /* border: 2px solid red; */
        background-color: #03c;
        border: 1px solid;
        background-color: #dae2fb;
        margin-bottom: 40px;
    }
    .input-field {
        width: 80%;
        height: 40px;
        border: 1px solid rgb(79, 75, 75);
        margin: auto;
        background-color: white;
        margin-top: 30px;
        /* align-items: center; */
    
    }
    .show-pass{
        float: right;
        margin-top: 13px;
    }
    .login-detail img{
        height: 17px;
        width: 17px;
        margin-right: 10px;
        margin-left: 5px;
        margin-bottom: 6px;
    
    }
    .signup-container {
        width: 100%;
        /* background-image: url('images/bg.png'); */
        background-position: center;
        background-attachment: fixed;
        background-size: cover;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #00171F;
        /* border: 2px solid red; */
        height: auto;
        color: white;
    }
    .signup-detail {
        height: auto;
        width: 70%;
        margin-top: 10px;
        /* border: 1px solid yellow; */
        background-color: #dae2fb;
        margin-bottom: 10px;
    }
}