/* Root  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

:root {
    --bg-color: #080808;
    --second-bg-color: #131313;
    --text-color: white;
    --main-color: #f2ff00;
    --first-color: hsl(82, 60%, 28%);
    --title-color: hsl(0, 0%, 15%);
    --body-color: hsl(0, 0%, 95%);
    --container-color: hsl(0, 0%, 100%);
    --body-font: "Poppins", sans-serif;
    --h2-font-size: 1.25rem;
    --small-font-size: .813rem;
}

html {
    font-size: 60%;
    overflow-x: hidden;

}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

/* Nav  */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4rem 12% 4rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.logo {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.logo span {
    text-shadow: 0 0 25px var(--main-color);
}


.navbar a {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-left: 3rem;
    font-weight: 450;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--main-color);
    display: none;
}

section {
    min-height: 100vh;
    padding: 10rem 12% 10rem;
}

/* Home  */

.home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15rem;
    /* overflow: hidden; */
    /* background-: url(Images/5006992-hd_1280_720_30fps.mp4); */
}

.home video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -100;
    /* transform: translate(-50%, -50%); */
}

.logo_header {
    height: 50px;
    width: 100px;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    text-align: left;
    justify-content: center;
    margin-top: 3rem;
}

.home-content h3 {
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-size: 2.5rem;
    color: var(--main-color);
}

.home-content h1 {
    font-size: 7rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 1;
}

.home-img {
    border-radius: 30%;
}

.home-img img {
    position: relative;
    top: 3rem;
    width: 32vw;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--main-color);
    /* cursor: pointer; */
    transition: 0.4s ease-in-out;
}

.home-img img:hover {
    box-shadow: 0 0 25px var(--main-color),
        0 0 50px var(--main-color),
        0 0 100px var(--main-color);
}

.home-content p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8;
    max-width: 1000px;
    text-align: justify;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: transparent;
    border: 2px solid var(--main-color);
    font-size: 2.5rem;
    border-radius: 50%;
    color: var(--main-color);
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease-in-out;

}

.social-icons a:hover {
    color: #000;
    transform: scale(1.3)translateY(-5px);
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    border-radius: 4rem;
    font-size: 1.6rem;
    color: black;
    border: 2px solid transparent;
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--main-color);
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-group a:nth-of-type(2) {
    background-color: black;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 25px transparent;
}

.btn-group a:nth-of-type(2):hover {
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
    color: black;
}
/* About us  */
.section_aboutus {
    width: 100%;
    min-height: 90vh;
    background-color: #ddd;
}

.container {
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 100px;
}

.content-section {
    float: left;
    width: 55%;
}

.image-section {
    float: right;
    width: 40%;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 100%;
}

.content-section .title {
    text-transform: uppercase;
    font-size: 28px;
    color: #000;
}

.content-section .content h3 {
    margin-top: 30px;
    color: #000;
    font-size: 25px;
}

.content-section .content p {
    margin-top: 10px;
    font-family: sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    text-align: justify;
}

.content-section .content .button {
    margin-top: 30px;
}

.content-section .content .button a {
    background-color: #3d3d3d;
    padding: 12px 40px;
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    letter-spacing: 1.5px;
}

.content-section .content .button a:hover {
    background-color: #ffd000;
    color: #000;
}

.content-section .social {
    margin: 40px 40px;
}

.content-section .social i {
    color: #000000;
    font-size: 30px;
    padding: 0px 10px;
}

.content-section .social i:hover {
    color: #ffcc00;
}

.container_2 {
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 100px;
}

.content-section_2 {
    float: right;
    width: 55%;
}

.image-section_2 {
    float: left;
    width: 40%;
}

.image-section_2 img {
    width: 100%;
    height: auto;
    border-radius: 100%;
}

.content-section_2 .content_2 h3 {
    margin-top: 30px;
    color: #000;
    font-size: 25px;
}

.content-section_2 .content_2 p {
    margin-top: 10px;
    font-family: sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    text-align: justify;
}

.content-section_2 .content_2 .button_2 {
    margin-top: 30px;
}

.content-section_2 .content_2 .button_2 a {
    background-color: #3d3d3d;
    padding: 12px 40px;
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    letter-spacing: 1.5px;
}

.content-section_2 .content_2 .button_2 a:hover {
    background-color: #ffd000;
    color: #000;
}

.content-section_2 .social_2 {
    margin: 40px 40px;
}

.content-section_2 .social_2 i {
    color: #000000;
    font-size: 30px;
    padding: 0px 10px;
}

.content-section_2 .social_2 i:hover {
    color: #ffcc00;
}

/* Scroll bar  */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
    width: 50px;
}

/* Services  */
.service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-card {
    width: 325px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    margin: 20px;
    border: solid 5px #ffcc00;
}

.service-card img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 16px;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #000;
}

.card-content p {
    color: #000;
    font-size: 15px;
    line-height: 1.3;
}

.card-content ul {
    color: #000;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
}

/* Special Program  */
.Special_Programs {
    background: #ddd;
    color: #fff;
}

.Special_Programs h2 {
    margin-bottom: 5rem;
    color: #000;
}

.Special_Programs_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2.5rem;
}

.Special_Programs_box_1 {
    background-image: url(Images/jacked_jrs.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
    border-radius: 3rem;
    border: 5px solid transparent;
    /* cursor: pointer; */
    transition: 0.4s ease-in-out;
}

.Special_Programs_box_1:hover {
    background: black;
    color: white;
    border: 5px solid var(--main-color);
    transform: scale(1.03);
}

.Special_Programs_box_1 .Special_Programs_service_info {
    display: flex;
    flex-direction: column;
    text-align: justify;
    max-height: 200px;
    justify-content: left;
    align-items: baseline;
    padding: 5rem 5rem;
}

.Special_Programs_box_2 {
    background-image: url(Images/elder_elite.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
    border-radius: 3rem;
    border: 5px solid transparent;
    /* cursor: pointer; */
    transition: 0.4s ease-in-out;
}

.Special_Programs_box_2:hover {
    background: black;
    color: white;
    border: 5px solid var(--main-color);
    transform: scale(1.03);
}

.Special_Programs_box_2 .Special_Programs_service_info {
    display: flex;
    flex-direction: column;
    text-align: justify;
    max-height: 200px;
    justify-content: left;
    align-items: baseline;
    padding: 5rem 5rem;
}

.Special_Programs_box_3 {
    background-image: url(Images/miracle_maternity.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
    border-radius: 3rem;
    border: 5px solid transparent;
    /* cursor: pointer; */
    transition: 0.4s ease-in-out;
}

.Special_Programs_box_3:hover {
    background: black;
    color: white;
    border: 5px solid var(--main-color);
    transform: scale(1.03);
}

.Special_Programs_box_3 .Special_Programs_service_info {
    display: flex;
    flex-direction: column;
    text-align: justify;
    max-height: 200px;
    justify-content: left;
    align-items: baseline;
    padding: 5rem 5rem;
}

.Special_Programs_box_4 {
    background-image: url(Images/sturdy_spine.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
    border-radius: 3rem;
    border: 5px solid transparent;
    /* cursor: pointer; */
    transition: 0.4s ease-in-out;
}

.Special_Programs_box_4:hover {
    background: black;
    color: white;
    border: 5px solid var(--main-color);
    transform: scale(1.03);
}

.Special_Programs_box_4 .Special_Programs_service_info {
    display: flex;
    flex-direction: column;
    text-align: justify;
    max-height: 200px;
    justify-content: left;
    align-items: baseline;
    padding: 5rem 5rem;
}

.Special_Programs_service_info h4 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.Special_Programs_service_info p {
    font-size: 1.7rem;
    font-weight: 300;
    max-height: 100px;
    line-height: 1.3;
    margin: auto;
}

.heading {
    font-size: 8rem;
    text-align: center;
    margin: 5rem 0;
}

/* Our Clients  */
@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 60px 0;
    white-space: nowrap;
    position: relative;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos-slide {
    display: inline-block;
    animation: 25s slide infinite linear;
}

.logos-slide img {
    height: 250px;
    margin: 0 20px;
}


/* Testimonial */
.testimonial_container {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background-color: #ddd;
}

.testimonial_container .testimonial_contents-wraper {
    width: 70%;
    min-height: inherit;
    margin: 30px auto;
    text-align: center;
}

.testimonial_header {
    color: #000;
}

.testimonial_contents-wraper .testimonial_Row {
    width: 100%;
    min-height: inherit;
    position: relative;
    overflow: hidden;
}

.testimonial_Row .testimonial_Item {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: justify;
}

.testimonial_Row .testimonial_Item:not(.active) {
    top: 0;
    left: -100%;
}

.testimonial_Row .testimonial_Item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
    outline: 2px solid #ffcc00;
    outline-offset: 2px;
}

.testimonial_Row .testimonial_Item h3 {
    font-size: 30px;
    font-style: italic;
    padding: 7px;
    color: #000;
}

.testimonial_Row .testimonial_Item h4 {
    font-style: italic;
    color: #000;

}

.testimonial_Row .testimonial_Item p {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.2;
    padding: 10px;
    color: #000;
}

.testimonial_contents-wraper .indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    cursor: pointer;
}

.testimonial_contents-wraper .indicators .dot {
    width: 15px;
    height: 15px;
    margin: 0px 3px;
    border: 3px solid #000;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s ease;
}

.testimonial_contents-wraper .indicators .active {
    background-color: #ffcc00;
}

@keyframes next1 {
    from {
        left: 0%;
    }

    to {
        left: -100%;
    }
}

@keyframes next2 {
    from {
        left: 100%;
    }

    to {
        left: 0%;
    }
}

@keyframes prev1 {
    from {
        left: 0%;
    }

    to {
        left: 100%;
    }
}

@keyframes prev2 {
    from {
        left: -100%;
    }

    to {
        left: 0%;
    }
}

/* Collaboration */
#collabSection{
    padding: 10vh 5vw;
}
#collabSection div{
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 4vh;
}
#collabSection div img{
    width: 30%;
    border-radius: 3rem;
}

/*=============== BREAKPOINTS ===============*/

/* For large devices */
@media screen and (min-width: 1120px) {

    .card__data_1 {
        width: 316px;
        padding-inline: 2.5rem;
    }
}

/* Contact  */
.contact {
    background-color: var(--second-bg-color);
}

.contact h2 {
    margin-bottom: 3rem;
    color: white;
}

.contact span {
    color: #f2ff00;
}

.contact form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 5rem auto;
    text-align: center;
}

.contact form .input-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 2.5rem;
    font-size: 1.8rem;
    color: var(--text-color);
    background: var(--second-bg-color);
    border-radius: 2rem;
    border: 2px solid var(--main-color);
    margin: 1.5rem 0;
    resize: none;
}

.contact form .btn {
    margin-top: 2rem;
}

/* Footer  */
footer {
    width: 100%;
    position: relative;
    bottom: 0px;
    background: var(--second-bg-color);
    color: #fff;
    padding: 10px 0 30px;
    /* border-top-left-radius: 125px; */
    font-size: 13px;
    line-height: 20px;
}

.row1 {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col1 {
    flex-basis: 25%;
    padding: 10px;
}

.col1:nth-child(2),
.col1:nth-child(3) {
    flex-basis: 15%;
}

.logo1 {
    width: 140px;
    margin-bottom: 30px;
    height: 80px;
}

.col1 h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.email-id1 {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

ul li {
    list-style: none;
    margin-bottom: 12px;
}

ul li a {
    text-decoration: none;
    color: #fff;
}

.social-icons .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright1 {
    text-align: center;
}

.underline1 {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline1 span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving {
    0% {
        left: -20px;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 700px) {

    .col1 {
        flex-basis: 100%;
    }

    .col1:nth-child(2),
    .col1:nth-child(3) {
        flex-basis: 100%;
    }
}


/* Media Queries  */
@media(max-width:1285px) {
    html {
        font-size: 55%;
    }

    .Special_Programs_container {
        padding-bottom: 7rem;
        grid-template-columns: repeat(2, 1fr);
        margin: 0 5rem;
        justify-content: center;
    }

}

@media(max-width:991px) {
    header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .timeline-items::before {
        left: 7px;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 37px;
    }

    .timeline-dot {
        left: 0;
    }

    .Special_Programs {
        padding-bottom: 7rem;
    }

    .testimonials .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact form {
        flex-direction: column;
    }
    #collabSection div{
        display: flex;
        flex-direction: column;
        gap: 4vh;
    }
    #collabSection div img{
        width: 95%;
    }
}

@media(max-width:895px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        right: 0;
        width: 50%;
        padding: 1rem 3%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px);
        border-bottom-left-radius: 2rem;
        border-left: 2px solid var(--main-color);
        border-bottom: 2px solid var(--main-color);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        color: white;
    }

    .home {
        flex-direction: column-reverse;
        margin: 5rem 4rem;
    }

    .home-content h3 {
        font-size: 2.6rem;
    }

    .home-content h1 {
        font-size: 8rem;
        margin-top: 3rem;
    }

    .home-content p {
        max-width: 600px;
        margin: 0 auto;
    }

    .home video {
        width: 40vh;
        height: 250vh;
        z-index: -1;
        top: 0;
        bottom: 0;
        object-fit: cover;
    }

    .home-img img {
        width: 56vw;
    }

    .Special_Programs h2 {
        margin-bottom: 3rem;
    }

    .Special_Programs_container {
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }

    .Special_Programs_box {
        width: 300px;
        height: 330px;
    }

    .Special_Programs_service_info p {
        font-size: 1.2rem;
    }

    .Special_Programs_service_info h4 {
        font-size: 1.6rem;
        text-align: start;
    }

    .heading {
        font-size: 5rem;
    }

    .logos-slide img {
        height: 200px;
        margin: 0 40px;
    }

    .logos-slide {
        margin-top: 100px;
    }
}

@media screen and (max-width: 768px) {

    .content-section {
        float: none;
        width: 100%;
        display: block;
        margin: auto;
    }

    .image-section {
        float: none;
        width: 100%;
    }

    .image-section img {
        width: 100%;
        height: auto;
        display: block;
        margin: auto;
    }

    .content-section .title {
        text-align: center;
        font-size: 19px;
    }

    .content-section .content .button {
        text-align: center;
    }

    .content-section .content .button a {
        padding: 9px 30px;
    }

    .content-section .social {
        text-align: center;
    }

    .container_2 {
        width: 80%;
        display: block;
        margin: auto;
        padding-top: 50px;
    }

    .content-section_2 {
        float: none;
        width: 100%;
        display: block;
        margin: auto;
    }

    .image-section_2 {
        float: none;
        width: 100%;
    }

    .image-section_2 img {
        width: 100%;
        height: auto;
        display: block;
        margin: auto;
    }

    .content-section_2 .content_2 .button_2 {
        text-align: center;
    }

    .content-section_2 .content_2 .button_2 a {
        padding: 9px 30px;
    }

    .content-section_2 .social_2 {
        text-align: center;
    }

    iframe {
        width: 350px;
        height: 230px;
    }

}

@media(max-width: 895px) {
    .testimonial_container .testimonial_contents-wraper {
        width: 95%;
    }

    .testimonial_contents-wraper .testimonial_header h1 {
        font-size: 32px;
    }

    .testimonial_Item {
        margin-top: -15px;
    }

    .testimonial_Row .testimonial_Item h3 {
        font-size: 26px;
    }

    .testimonial_Row .testimonial_Item p {
        font-size: 16px;
        letter-spacing: initial;
        line-height: initial;
    }


}

@media (min-width: 760px) {
    iframe {
        width: 500px;
        height: 290px;
    }

    .Special_Programs_container {
        justify-content: center;
    }

    .text-animation {
        font-size: 20px;
        /* font-weight: 600;
        min-width: 280px; */
    }

}

@media (min-width: 350px) {
    iframe {
        width: 300px;
        height: 250px;
    }

}