@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&family=Chilanka&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:wght@600&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Blinker:wght@100;200;300;400;600;700;800;900&family=Chilanka&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:wght@600&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Winky+Sans:ital,wght@0,700;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,800;1,800&family=Winky+Sans:ital,wght@0,700;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,800;1,800&family=Saira:ital,wght@0,100..900;1,100..900&family=Winky+Sans:ital,wght@0,700;1,700&display=swap');



body {
    margin: 0;
    padding: 0;
    /* overflow-x: hidden; */
}

iframe.skiptranslate {
    display: none !important;
}



body {
    top: 0px !important;
}

.ans-main {
    width: 100%;
    height: auto;
    /* background-color: violet; */
}

.whatsapp-main {
    width: 50px;
    height: 50px;
    background: linear-gradient(#128c7e, #075E54);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 25px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 300;
    cursor: pointer;
}

/* ............................................................................................ Nav ....................................................................... */

.navigation {
    width: 100%;
    height: 80px;
    background-color: #075E54;
}

.ans-navbar-main {
    width: 100%;
    height: 80px;
    background-color: transparent;
    /* padding: 0 30px; */
    display: flex;
    justify-content: space-between;
    position: fixed;
    transition: background-color 0.3s ease-in-out,
        backdrop-filter 0.3s ease-in-out,
        margin-top 0.3s ease-in-out;
}

.ans-navbar-main.scrolled {
    /* background-color: rgba(255, 255, 255, 0.3); Semi-transparent black */
    background-color: #ffffff48;
    backdrop-filter: blur(5px);
    /* Blur effect */
    /* margin-top: -50px; */
    z-index: 100;
}

.ans-navbar-logo {
    width: 200px;
    height: 80px;
    /* background-color: tomato; */
    display: flex;
    align-items: center;
    justify-content: center;

}

.ans-navbar-logo img {
    width: 6rem;
}

.ans-navbar-content {
    width: 550px;
    height: 80px;
    /* background-color: tan; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    gap: 30px;
    color: white;
    font-family: 'Nunito', sans-serif;
}

.ans-navbar-content a {
    text-decoration: none;
    color: white;
}

.ans-navbar-main.scrolled .ans-navbar-content p {
    color: #393185;
    transition: color 0.3s ease-in-out;
}

.ans-navbar-content p {
    cursor: pointer;
}

.ans-nav-contact {
    width: 150px;
    /* background-color: turquoise; */
    display: flex;
    align-items: center;
    justify-content: center;

}

/* .ans-nav-contact button{
    width: 100px;
    height: 35px;
    background-color: #62d2a2;
    border: none;
    outline: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
} */

.language-selector {
    width: 100px;
    height: 30px;
    padding: 0 10px;
    background-color: #393185;
    color: white;
    border: none;
    outline: none;
    /* z-index: 600; */
}

.ans-nav-icon {
    width: 100px;
    /* background-color: brown; */
    font-size: 25px;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
}

.ans-navbar-main.scrolled .ans-nav-icon {
    color: #393185;
}

.ans-side-menu {
    display: none;
}

.dropdown {
    position: relative;
    display: inline-block;
    /* background-color: #000; */
}

.dropbtn {
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow {
    font-size: 1.5em;
    transition: transform 0.5s ease;
}

/* Optional: rotate arrow on hover */
.dropdown:hover .arrow {
    transform: rotate(60deg);
    /* upside-down arrow */
}

.dropdown-content {
    width: 1000px;
    display: none;
    position: absolute;
    background-color: #178066;
    /* min-width: 160px; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 1;
    flex-direction: row;
    left: -550px;
    gap: 20px;
    padding: 30px;
}

.dropdown-content-grid {
    width: 320px;
    /* height: 50px; */
    /* background-color: rgb(0, 255, 255); */
}

.dropdown-content-grid a {
    color: #ffffff;
    font-size: 15px;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #000;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.ans-dropdown {
    position: relative;
    width: 100%;
}

.ans-dropbtn {
    cursor: pointer;
    user-select: none;
    padding: 10px;
    /* background-color: #204385; */
    color: #fff;
    border-radius: 5px;
    margin: 10px 0;
    text-align: center;
}

.ans-dropdown-content {
    display: none;
    flex-wrap: wrap;
    width: 90%;
    background-color: #178066;
    color: #000;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    max-height: 300px;
    overflow-y: auto;
}

.ans-dropdown-content.show {
    display: flex;
}

.ans-dropdown-content-grid {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 120px;
    margin: 10px;
}

.ans-dropdown-content-grid a {
    padding: 8px 0;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

@media (max-width: 1120px) {
    .dropdown-content{
        width: 800px;
        left: -480px;
    }
}


@media (max-width: 850px) {
    .ans-navbar-content {
        display: none;
    }

    .ans-nav-contact {
        display: none;
    }

    .ans-nav-icon {
        display: flex;
        /* position: fixed;
        top: 20px;
        left: 20px;
        font-size: 24px;
        cursor: pointer;
        z-index: 1000; */
    }

    .ans-side-menu {
        display: flex;
        position: fixed;
        top: 60px;
        right: -300px;
        /* Initially hidden */
        width: 250px;
        height: 350px;
        background: #393185;
        box-shadow: rgba(0, 0, 0, 0.422) 0px 7px 29px 0px;
        color: white;
        transition: right 0.3s ease-in-out;
        padding: 20px;
        border-radius: 10px;
        flex-direction: column;
        align-items: center;
        /* gap: 10px; */
        z-index: 100;
        font-family: 'Nunito', sans-serif;
        
    }

    .ans-side-menu.show {
        right: 5px;
        /* Slide in */
    }

    .ans-side-menu-content {
        width: 100%;
        height: 300px;
        /* background-color: yellow; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ans-side-menu-content a{
        text-decoration: none;
        color: white;
    }
    .ans-side-menu-content p{
        cursor: pointer;
    }

    .ans-side-menu-contact select {
        width: 100px;
        height: 35px;
        background-color: #62d2a2;
        border: none;
        outline: none;
        color: white;
        border-radius: 5px;
        cursor: pointer;
    }

    /* .ans-dropdown-content {
        max-height: 200px;
        overflow-y: auto;
      } */
}


/* ....................................................................................... Home ....................................................................... */

.ans-home-main {
    width: 100%;
    height: 730px;
    background: url(home-img/back.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: center; */
    display: flex;

}

.ans-home-content {
    width: 600px;
    height: 300px;
    /* background-color: yellow; */
    margin-top: 150px;
    margin-left: 10%;
    color: white;
    font-family: 'Nunito', sans-serif;
}

.home-contet-head {
    width: 550px;
    height: auto;
    /* background-color: violet; */
    font-size: 23px;
    font-weight: 700;
    line-height: 50px;
}

.home-contet-head span {
    color: #e12454;
}


@media (max-width: 700px) {
    .ans-home-content {
        width: 80%;
        display: flex;
        flex-direction: column;
        /* margin-top: 20%; */
    }

    .home-contet-head {
        width: 90%;
    }

}

@media (max-width: 550px) {
    .ans-home-content {
        margin-top: 150px;
    }

}

@media (max-width: 470px) {
    .home-contet-head {
        font-size: 20px;
    }
}

/* .................................................................................................  about ................................................................................... */

.about-main {
    width: 100%;
    height: auto;
    /* background-color: yellow; */
    display: flex;
    flex-direction: column;
    align-items: center;

}

.about-head {
    width: 100%;
    /* height: 80px; */
    /* background-color: violet; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Fjalla One", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 40px;
    font-weight: 700;
    color: #393185;

}

.line {
    width: 80px;
    height: 5px;
    background-color: #e12454;
    margin-top: -30px;
    border-radius: 20px;
}

.about-head img {
    position: absolute;
    z-index: 0;
}

.about-content-main {
    width: 90%;
    height: auto;
    /* background-color: cornflowerblue; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.about-content {
    width: 45%;
    /* background-color: tomato; */
    font-family: 'Nunito', sans-serif;
    text-align: justify;
}

.about-img {
    width: 50%;
    /* background-color: slateblue; */
    display: flex;
    align-items: center;
    justify-content: center;
}




@media (max-width: 1200px) {
    .about-content-main {
        flex-direction: column;
    }

    .about-content {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .about-img img {
        width: 30rem;
    }
}

@media (max-width: 480px) {
    .about-img img {
        width: 20rem;
    }
}


/* ........................................................................... service ............................................................ */

.service-main {
    width: 100%;
    height: auto;
    /* background-color: tomato; */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.service-head {
    width: 100%;
    /* height: 80px; */
    /* background-color: violet; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Fjalla One", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 40px;
    font-weight: 700;
    color: #393185;
}
.service-content-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 80%;
    margin: 0 auto;
    padding: 30px 0;
    justify-items: center; /* This centers grid items horizontally */
    /* background-color: #075E54; */
}
.service-content-main a{
    text-decoration: none;
}
.service-card {
    width: 100%; 
    /* max-width: 100%; Prevent cards from getting too wide */
    height: 350px;
    /* border: 1px solid #e12454; */
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}
.service-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.service-card-img{
    width: 100%;
    height: 310px;
    /*background-color: yellowgreen;*/
}
.service-card-img img{
    width: 100%;
    height: 310px;
}
.service-card-name{
    width: 100%;
    height: 40px;
    background-color: #393185;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Nunito", sans-serif;
    color: white;
}

.service-more-button{
    width: 80%;
    height: 50px;
    /* background-color: #178066; */
    display: flex;
    align-items: center;
    
}

.service-more-button button{
    border: none;
    background-color: transparent;
    /* color: white; */
    font-family: "Saira", sans-serif;
    cursor: pointer;
}
.service-more-button p{
    display: flex;
    gap: 15px;
    align-items: center;
    color: #000;
}
.service-more-button i{
    color: #128c7e;
}

/* ........................................................................... Contact ............................................................... */

.contact-main {
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    /* background-color: tomato; */
}

.contact-head {
    width: 100%;
    /* height: 80px; */
    /* background-color: violet; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Fjalla One", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 40px;
    font-weight: 700;
    color: #393185;
}

.contact-head img {
    position: absolute;
}

.contact-contents {
    width: 100%;
    height: 500px;
    /* background-color: yellow; */
    display: flex;
    /* padding: 0 53px; */
    justify-content: space-between;
}

.contact-detail-main {
    width: 40%;
    height: auto;
    /* background-color: steelblue; */
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-details {
    width: 400px;
    height: auto;
    /* background-color: #051c17; */
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-details-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #178066;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: white;
}

.contact-details-contents {
    width: 320px;
    height: 100%;
    /* background-color: tomato; */
    color: #178066;
    line-height: 10px;
}

.contact-details-contents h3 {
    font-family: "Fjalla One", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 20px;
}

.contact-details-contents p {
    font-family: 'Nunito', sans-serif;
    line-height: 20px;

}

.contact-input-main {
    width: 60%;
    height: auto;
    /* background-color: violet; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.contact-input {
    width: 80%;
    height: auto;
    /* background-color: turquoise; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-input input {
    width: 45%;
    height: 35px;
    background-color: transparent;
    border: 1px solid rgba(128, 128, 128, 0.268);
    outline: none;
    padding: 0 10px;
}

.contact-input textarea {
    width: 95%;
    height: 100px;
    background-color: transparent;
    border: 1px solid rgba(128, 128, 128, 0.268);
    outline: none;
    padding: 5px 10px;
}

.contact-input button {
    width: 400px;
    height: 35px;
    border-radius: 10px;
    outline: none;
    border: none;
    background-color: #393185;
    color: white;
    cursor: pointer;
}

@media (max-width:1200px) {
    .contact-contents {
        height: auto;
        flex-direction: column;
        padding: 30px 0;
        gap: 20px;
    }

    .contact-detail-main {
        width: 100%;
    }

    .contact-input-main {
        width: 100%;
    }
}

@media (max-width:700px) {
    .contact-input {
        width: 90%;
    }
}

@media (max-width:650px) {
    .contact-detail-main {
        gap: 0px;
    }

    .contact-details {
        width: 70%;
    }

    .contact-details-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-details-contents {
        width: 81%;
        height: 100%;
        /* background-color: tomato; */
        color: #178066;
    }

    .contact-details-contents h3 {
        font-family: "Fjalla One", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        font-size: 18px;
    }

    .contact-details-contents p {
        font-family: 'Nunito', sans-serif;
        line-height: 20px;
        font-size: 15px;

    }
}


/* ............................................................................... footer ......................................................................... */

.footer-main{
    width: 100%;
    height: auto;
    background-color: rgba(245, 237, 229, 0.377);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0;
}
.footer-contact-main{
    width: 70%;
    height: 200px;
    background-color: violet;
    position: relative;
    bottom: 100px;
}
.footer-content-main{
    width: 90%;
    height: auto;
    /* background-color: yellow; */
    font-family: 'Nunito', sans-serif;
    display: flex;
    gap: 60px;
    /* align-items: end; */
}
.footer-content-details{
    width: 350px;
    height: 450px;
    /* background-color: turquoise; */
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    gap: 10px;
}
.footer-content-details img{
    width: 10rem;
}
.footer-details{
    width: 300px;
    height: 50px;
    /* background-color: thistle; */
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 30px;
}
.footer-content-details button{
    width: 250px;
    height: 40px;
    border: none;
    background-color: #e12454;
    color: white;
    font-size: 17px;
    cursor: pointer;
}
.footer-details-meadia{
    width: 300px;
    height: 60px;
    /* background-color: steelblue; */
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.footer-department-details-main{
    width:80%;
    height: auto;
    /* background-color: springgreen; */
}
.footer-department-details{
    width: 100%;
    height: auto;
    /* background-color: chartreuse; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* gap: 20px; */

}
.footer-department{
    width: 300px;
    height: auto;
    /* background-color: violet; */
}
.footer-department a{
    text-decoration: none;
    color: #000;
}

@media (max-width:700px) {
    .footer-content-main{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}