@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');

:root {
    --brand: #ff4d29;
    --dark: #092032;
    --body: #516171;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    --bs-gutter-y: 0;
}

body {
    font-family: "Barlow", sans-serif;
    color: var(--body);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-weight: 700;
    color: var(--dark);
}

.barlow-semi-condensed-thin {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 100;
    font-style: normal;
}

/* top header css starts */
.top-header {
    background-color: #ff4d29;
    color: white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0px 20px;
}

.left-top-header .fa {
    padding: 5px;
}

.left-top-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.right-top-header .fa-brands {
    color: white;
    background-color: rgba(249, 187, 164, 0.412);
    padding: 5px;
    font-size: 14px;
    width: 17px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
}

/* top header css Ends */
/* 
.container{
margin: 0px;
background-color: #ff4d29;
padding:5px;
display: flex;
justify-content: space-between;
padding: 5px 50px;
}
.container b{
color:white;
font-family: boxicons !important;
font-weight: 400;
font-style: normal;
font-variant: normal;
line-height: 2;
text-rendering: auto;
display: inline-block;
text-transform: none;
speak: none;
-webkit-font-smoothing: antialiased;
margin-left: 91px;
} */
/*.items{
  width: 28px;
  height: 28px;
  display: inline-flex;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 100px; */
/* .items a{
width: 28px;
height: 28px;
display: inline-flex;
color: #fff;
background-color: rgba(255, 255, 255, 0.25);
text-decoration: none;
align-items: center;
justify-content: center;
border-radius:100px;
} */
.main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-img {
    height: 15vh;
    padding-top: 30px;
}

.logo-img img {
    height: 100%;
}

.title h1 {
    font-size: 16px;
}

.title p {
    font-size: 39px;
    color: #a12638;
    margin-top: -13px;
    margin-bottom: -18px;
}

.title {
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    padding: 10px 20px;
}

@media (max-width: 920px) {
    .title p {
        font-size: 14px;
    }

    .title h1 {
        font-size: 10px;
    }

    .logo-img {
        height: 10vh;
        padding-top: 5px;
    }
}

/* title css end */

/* navbar css starts */
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

nav {

    position: sticky;
    top: 0px;
    background-color: #fff;
    width: 100%;
    z-index: 1000;
}




.nav-container {
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    position: relative;
}



.nav-btn {
    flex: 3;
    display: flex;
}

.nav-links {
    flex: 2;
}


.nav-links>ul {
    display: flex;
    /*justify-content: center;*/
    /*align-items: center;*/
}

.nav-link {
    position: relative;
}

.nav-link>a {
    line-height: 3rem;
    color: #092032;
    padding: 0 .8rem;
    /* letter-spacing: 1px; */
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    font-weight: 500;
}

.nav-link>a>i {
    margin-left: .2rem;
}

.nav-link:hover>a {
    transform: scale(1.1);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -35px;
    width: 13rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown ul {
    position: relative;
}

.dropdown-link>a {
    display: flex;
    background-color: #fff;
    color: #092032;
    padding: .5rem 1rem;
    font-size: 14px;
    font-weight: 500;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover>a {
    background-color: #ff4d29;
    color: #fff;
}

.dropdown-link:not(:nth-last-child(2)) {
    border-bottom: 1px solid #efefef;
}

.dropdown-link i {
    transform: rotate(-90deg);
}





.dropdown-link {
    position: relative;
}

.dropdown.second {
    top: 0;
    left: 65%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}


.nav-link:hover>.dropdown,
.dropdown-link:hover>.dropdown {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div {
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #092032;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #092032;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before {
    transform: translateY(-7px);
}

.hamburger-menu div:after {
    transform: translateY(7px);
}

#check {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked~.hamburger-menu-container .hamburger-menu div {
    background-color: transparent;
}

#check:checked~.hamburger-menu-container .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
}

#check:checked~.hamburger-menu-container .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
}

@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
@media (min-width: 920px) {
    .nav-link>a {
        font-size:10px;
    }
}
@media (min-width: 1440px) {
    .nav-link>a {
        font-size:14px;
    }
}
@media (max-width: 920px) {
    .hamburger-menu-container {
        display: flex;
    }

    #check {
        display: block;
    }

    .nav-btn {
        position: fixed;
        height: calc(100vh - 3rem);
        top: 3rem;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }

    #check:checked~.nav-btn {
        transform: translateX(0);
    }

    #check:checked~.nav-btn .nav-link,
    #check:checked~.nav-btn .log-sign {
        animation: animation .5s ease forwards var(--i);
    }

    .nav-links {
        flex: initial;
        width: 100%;
    }

    .nav-links>ul {
        flex-direction: column;
    }

    .nav-link {
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    .nav-link>a {
        line-height: 1;
        padding: 1.6rem 2rem;
    }

    .nav-link:hover>a {
        transform: scale(1);
        background-color: #fff;
    }

    .dropdown,
    .dropdown.second {
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #092032;
        display: none;
    }

    .nav-link:hover>.dropdown,
    .dropdown-link:hover>.dropdown {
        display: block;
    }

    .nav-link:hover>a>i,
    .dropdown-link:hover>a>i {
        transform: rotate(360deg);
    }

    .dropdown-link>a {
        background-color: transparent;
        color: #fff;
        padding: 1.2rem 2rem;
        line-height: 1;
    }

    .dropdown.second .dropdown-link>a {
        padding: 1.2rem 2rem 1.2rem 3rem;
    }

    .dropdown.second .dropdown.second .dropdown-link>a {
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .dropdown-link:not(:nth-last-child(2)) {
        border-bottom: none;
    }



    .dropdown-link:hover>a {
        background-color: #ff4d29;
    }

    .nav-link>a>i {
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }

    .dropdown i {
        font-size: 1rem;
        transition: .7s;
    }


}

.contact {
    background-color: #ff4d29;
    border-radius: 5px;
    padding: 10px;
}

/* navbar css ends */

/* slider css starts */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0920323b;
    /* Transparent blue layer */
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider {
    display: none;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* Ensure images cover the entire space */
}



.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 60px;
    height: 60px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 50%;
    /* Make the buttons circular */
    background-color: rgba(255, 255, 255, 0.3) !important;
    /* Light #516171 color */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    /* Remove border */
    transition: background-color 0.3s;
    /* Smooth transition */
}

.prev:hover,
.next:hover {
    background-color: rgb(255, 77, 41) !important;
    /* Background color on hover */
}


.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.layer1,
.layer2 {
    position: absolute;
    z-index: 2;
    color: white;
    text-align: center;
}

.slider img {
    max-height: 600px;
    /* Adjust the max-height as needed */
}

/* slider layer */


.layer1 {
    text-transform: uppercase;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    font-weight: 700;
}

.layer2 {
    text-transform: uppercase;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-weight: 700;
}

/* slider end */

/* /--about starts--/ */
.about-us {
    display: flex;
    flex-direction: column;
    text-align: justify;
    font-size: 16px;
    padding-top: 30px;
    margin-left: 20px;
    padding: 0 20px 0 30px;
    border-left: 2px solid #000;
    height: 182px;
    position: relative;
    width: 50%;
}

.about {
    display: flex;
    width: 80%;
    justify-content: center;
    color: #717171;

}

.about-img {
    width: 526px;
}

.about-img img {
    width: 100%;
}

.about-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.about-info {
    display: flex;
    justify-content: center;
}

.about-us line {
    text-align: center;
}

.about-us button {
    background-color: red;
    padding: 10px;
    border: #092032;
    cursor: pointer;
}

.about-us button a {
    color: #fff;
}

/* vertical text align css */
.vertical {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    transform-origin: left top 0;
}

.vertical p {
    /* padding-left: 90px; */
    font-size: 25px;
    color: rgb(255, 77, 41);
    margin-top: -351px;
    margin-left: -51px;
    font-family: "roboto", sans-serif;
}

/* about end */
@media (max-width: 1200px) {
    .about {
        width: 90%;
    }

    .about-img {
        width: 40%;
    }

    .about-us {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .vertical p {
        margin-top: -284px;
        margin-left: 262px;
    }

    .about {
        flex-direction: column;
        align-items: center;
    }

    .about-img,
    .about-us {
        width: 100%;
        padding: 20px 0;
        border-left: none;
    }

    .about-img {
        order: -1;
    }

    .about-us {
        border-left: none;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .about-us h2 {
        font-size: 1.5em;
    }

    .about-us button {
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .col-1 h1 {
        font-size: 2em;
    }

    .about-us {
        font-size: 14px;
    }

    .about-us button {
        padding: 6px;
    }
}

/* about end */

/* vision & Mission CSS Starts */
/* Vision Mission Page css starts */
.vision-mission-main {
    display: flex;
    padding: 10px 225px;
    gap: 20px;
    align-items: center;
}

.sec {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px;
}


/* Vision Mission Page Css ends */
.visionAndMission {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    margin-top: 62px;
    flex-wrap: wrap;
}

.visionAndMissionSection {
    display: flex;
    max-width: 566px;
}

.image {
    height: 105px;
}

.visionAndMissionSection img {
    height: 100%;
}

.visionAndMissionSection button {
    background-color: red;
    padding: 10px;
    border: #092032;
    cursor: pointer;
}

.visionAndMissionSection button a {
    color: white;
}

@media (max-width: 992px) {
    .visionAndMission {
        margin-top: 157px;
    }
}

/* Vision & Mission CSS Ends */
/* background images  with count css */
.count {
    display: flex;
    flex-wrap: wrap;
    color: white;
    padding: 50px 30px;
    gap: 124px;
    justify-content: center;
    background: linear-gradient(rgba(255, 77, 41, 0.85), rgba(255, 77, 41, 0.85)), url(/website/img/backgroundimg.webp);
    background-position: center;
    background-size: cover;
}

.display {
    font-size: 3.5rem;
    margin-bottom: 0px;
    color: #fff;
}

.count1 {
    text-align: center;
}

.count1 p {
    font-weight: 100;
}

/* program css starts */
.program1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 16%;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    padding: 10px;
}

.program-content {
    text-align: center;
}

.all-program {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0px;
    justify-content: center;
    gap: 20px;
    -brand: #ff4d29;
    --dark: #092032;
    --body: #516171;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

.description {
    text-align: center;
}

.description h6 {
    color: #ff4d29;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.description h1 {
    color: black;
    font-size: 2em;
}

.description p {
    color: grey;
    font-size: 16px;
    justify-content: center;
}

.program-content p {
    color: grey;
}

/* Media query for smaller screens */
@media only screen and (max-width: 768px) {
    .program1 {
        width: 100%;
        /* Make each item take full width */
        max-width: 300px;
        /* Limit maximum width */
    }
}

/* Blog-Post CSS starts*/
.single-blog {
    flex: 0 0 auto;
    width: 31.333333%;
}

.blog-post img {
    width: 100%;
    vertical-align: middle;
}

.blog-post {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

.blog-post a {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff4d29;
    padding: 2px 12px;
    border-radius: 100px;
    text-decoration: none;
    color: #fff;
}

.blog-post .content {
    padding: 32px;
}

.blog-post small {
    text-transform: uppercase;
    color: #ff4d29;
    text-decoration: underline;
    font-size: .875em;
}

.blog-post h5 {
    margin-top: 12px;
    margin-top: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #092032;
}

.blog-post p {
    margin-top: 0;
    margin-bottom: 1rem;
    /* max-width: 310px; */
}

.blog {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    margin-left: 3rem;
    margin-right: 3rem;
    margin-bottom: 23px;
}

.blog>* {
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-top: var(--bs-gutter-y);
}

.Blog {
    text-align: center;
}

.Blog h6 {
    color: #ff4d29;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 1.2;
}

.Blog h1 {
    color: #092032;
    font-size: 2.5rem;
    margin-top: 15px;
    margin-bottom: 15px;
}

.Blog p {
    color: #516171;
    font-size: 16px;
    max-width: 500px;
    margin-right: auto !important;
    margin-left: auto !important;
}

@media only screen and (max-width: 768px) {
    .single-blog {
        width: 100%;
    }

    .blog {
        flex-wrap: wrap;
    }

    .blog-container {
        padding-top: 67px;
    }
}

/* Blogs  css ends */
/* team css starts */
.team {
    text-align: center;
}

.team h6 {
    color: #ff4d29;
    font-size: 16px;
    font-weight: 100;
    margin-bottom: 10px;
}

.team h1 {
    font-weight: 700;
    font-size: 2em;
}

.team p {
    color: grey;
    font-weight: 200;
}

.team-members {
    text-align: center;
    /* width: 100%; */
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-img {
    width: 401px;
    padding: 10px;
}

.team-img img {
    width: 100%;
}

.team-center h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
}

.team-center h5 {
    font-weight: 400;
    color: #7a7373;
    margin-top: 0;
    font-size: 15px;
    color: #ff4d29;
}

/* team css ends */
/* about media querry */
@media only screen and (max-width: 768px) {
    .about-main {
        display: flex;
    }
}

/* Footer css starts */

footer button {
    border: none;
    background-color: #00093c;

}

footer button a {
    color: #fff;
    text-decoration: underline;
}

footer button a:hover {
    color: #ff4d29;
}

footer {
    width: 100%;
    bottom: 0;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 15px;
    line-height: 20px;
}

footer .row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

footer .col {
    flex-basis: 19%;
    padding: 10px;
}

footer .col:nth-child(2),
col:nth-child(3) {
    flex-basis: 15%;
}

footer .logo {
    width: 115px;
    border-radius: 50%;
}

footer .col h3 {
    width: fit-content;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
}

footer .email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 12px;

}

footer ul {
    padding-left: 0;
}

footer ul li a {
    text-decoration: none;
    color: #fff;
}

footer hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

footer .copyright {
    text-align: center;
}

footer .underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

footer .underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

/* @media query of footer */
@keyframes moving {
    0% {
        left: -20px;
    }

    100% {
        left: 100px;
    }
}

/* @ media query of footer ends*/
footer .copyright a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

footer .copyright a:hover {
    color: #ff4d29;
}

/* Footer css ends */