@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;&display=swap');
:root{
    --body-color-white: #eee;
    --main-color-rose: #ff7300;
    --light-color: #8a8787;
    --text-color-dark:#02000e;
    --text-color-light: #242424; 
    --border:0.2rem solid rgba(0,0,0,.1);
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);

}
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none !important;
}
*::-webkit-scrollbar {
    height: .5rem;
    width: 1rem;
}
*::-webkit-scrollbar-track {
   background-color: transparent;
}
*::-webkit-scrollbar-thumb {
    background-color: var(--blue);
}
html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
}
nav {
    width: 100vw;
    height: 12vh;
    background-color: var(--body-color-white);
}
.nav-top {
    display: flex;
    width: 100%;
    height: 30%;
    background-color: var(--main-color-rose);
    justify-content: flex-end;
}
.nav-top ul{
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
}
.nav-top ul li {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
}
.nav-top ul li a{
    text-decoration: none;
    border-right: 1px solid var(--body-color-white);
    padding-right: 1rem;
    color: var(--text-color-dark);
}
.nav-top .search{
    display: flex;
    align-items: center;
    margin-right: 1rem;
    justify-content: space-between;
}
.nav-top .search img{
    margin-left: 0.2rem;
    cursor: pointer;
}
/*.nav-bottom {
    display: flex;
    height: 70%;
    font-size: 1.5rem;
    justify-content: space-between;
    align-items: center;
}
.nav-bottom .logo {
    color: var(--main-color-rose);
    font-size: 2.5rem;
    font-weight: 600;
    margin-left: 4rem;
}
.nav-bottom .logo span{
    color: var(--text-color-dark);
    font-style: italic;
}*/

/* dropdown menu*/
nav #container{
    position: relative;
    display: flex;
    width: 100%;
    height: 70%;
    z-index: 3;
}
nav #container::after{
    content: "";
    display: block;
    clear: both;
    height: 0;
}
#container .logo {
    width: 10%;
    color: var(--text-color-dark);
    font-size: 2.5rem;
    font-weight: 600;
    padding-top: 1rem;
    padding-left: 2rem;
}
#container .logo span{
    color: var(--main-color-rose);
    font-style: italic;
}
#menu{
    position: relative;
    float: right;
    width: 75%;
    background: var(--light-color);
    padding: 10px 20px;
}
#menu, #menu ul{
    list-style: none;
}
#menu >li{
    float: left;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 1px 0 0 rgba(0, 0, 0, 0.1);
    perspective: 1000px;
}
#menu > li:first-child{
    box-shadow: -1px 0 0 rgba(0, 0, 0, 0.1), 1px 0 0 rgba(255, 255, 255, 0.25);
}
#menu a{
    display: block;
    position: relative;
    z-index: 10;
    padding: 10px 15px 10px 15px;
    text-decoration: none;
    color: var(--text-color-dark);
    font-weight: 400;
    font-size: 16px;
    background: transparent;
    transition: all 0.25s ease-in-out;
    text-transform: uppercase;
}
#menu > li:hover > a{
    background: #1b3d53;
    color: rgba(0, 223, 252, 1);
    text-shadow: none;
}
#menu li ul{
    position: absolute;
    left: 0;
    z-index: 1;
    width: 200px;
    padding: 0;opacity: 0;
    visibility: hidden;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background: transparent;
    overflow: hidden;
    transform-origin: 59% 0%;
}
#menu li:hover ul{
    padding: 15px 0;
    background: var(--text-color-light);
    opacity: 1;
    visibility: visible;
    box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.5);
    animation-name: swingdown;
    animation-duration: 1s;
    animation-timing-function: ease;
}
@keyframes swingdown{
    0% {
        opacity: 0.99999;
        transform: rotateX(90deg);
    }
    30% {
        transform: rotateX(-20deg) rotateY(5deg);
        animation-timing-function: ease-in-out;
    }
    65% {
        transform: rotateX(20deg) rotateY(-3deg);
        animation-timing-function: ease-in-out;
    }
}
#menu li li a{
    padding-left: 15px;
    font-weight: 300;
    color: #ddd;
    text-shadow: none;
    border-top: dotted 1px transparent;
    border-bottom: dotted 1px transparent;
    transition: all 0.15s linear;
}
#menu li li a:hover{
    color: rgba(0, 223, 252, 1);
    border-top: dotted 1px rgba(255, 255, 255, 0.15);
    border-bottom: dotted 1px rgba(255, 255, 255, 0.15);
    background: rgba(0, 223, 252, 0.02);
}
/*End of dropdown menu*/
/*.nav-bottom .menu ul {
    display: flex;
    list-style: none;
    font-size: 1.5rem;
    font-weight: 600;
    justify-content: space-between;
    align-items: center;
}
.nav-bottom .menu ul li {
    margin-right: 2rem;
    padding: 0 1.5rem;
    text-align: center;
    height: 100%;
    border-right: 2px solid #fff;
}
.nav-bottom .menu ul li a :active{
    color: var(--main-color-rose);
}
.nav-bottom .menu ul li:hover {
    background-color: rgba(255, 115, 0, 0.5);
    font-weight: 800;
    border-radius: 2px;
}*/
#container .nav-cta-btn {
    display: flex;
    flex-wrap: nowrap;
    border: 2px solid var(--main-color-rose);
    height: 60%;
    width: 8%;
    margin: 1rem 2.5rem 0;
    align-items: center;
}
#container .nav-cta-btn button{
    display: flex;
    color: var(--text-color-dark);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 2% 5%;
    cursor: pointer;
}
#container .nav-cta-btn button span{
    color: var(--main-color-rose);
    margin-left: 1rem;
}
@media(max-width: 1220px){
    nav #container{
        height: 70%;
    }
    #container .logo {
        font-size: 2rem;
    }
    #menu a{
        padding: 5px 10px;
        font-size: 14px;
    }
}
@media(max-width: 1050px){
    nav {
        height: 10vh;
    }
    #container .logo {
        font-size: 1.8rem;
        padding-left: 1rem;
    }
    #menu a{
        font-size: 12px;
    }
}
@media(max-width: 935px){
    nav #container {
        display: none;
    }
}
/*header style starts*/
header {
    position: relative;
    background-image: url(./images/img1.jpg);
    background-repeat: no-repeat;
    background-position: 100% 70%;
    background-size: cover;
    height: 50vh;
}

.lead-story {
    display: flex;
    width: 80vw;
    height: 30vh;
    margin: 0 auto;
    position: absolute;
    top: 80%;
    left: 10%;
    z-index: 2;
}
.lead-story .ls-cap {
    width: 50%;
    height: 100%;
    background-color: var(--body-color-white);
    opacity: 0.8;
}
.lead-story .ls-cap h3{
    font-size: 2.5rem;
    text-align: left;
    margin: 1rem 2.5rem;
}
.lead-story .ls-txt {
    width: 50%;
    height: 100%;
    background-color: var(--text-color-light);
    opacity: 0.8;
}
.lead-story .ls-txt p{
    color: #fff;
    font-size: 2rem;
    margin: 1rem 2.5rem 3rem;
}
.lead-story .ls-txt a {
    color: #fff;
    font-size: 1.5rem;
    margin: 4rem;
    padding: 5px;
    border: 1px solid var(--main-color-rose);
}
.lead-story .ls-txt span{
    color: var(--main-color-rose);
    margin-left: 10px;
}
.lead-story .ls-txt a:hover, .lead-story .ls-txt span:hover{
    background-color: #ff7300;
    color: #02000e;
}
@media(max-width: 935px){
    .lead-story .ls-txt a {
        margin: 3rem;
    }
    .lead-story .ls-txt p{
        margin: 1rem 2.5rem 2rem;
    }
}
@media(max-width: 735px){
    .lead-story{
       width: 85vw;
    }
    .lead-story .ls-cap {
        width: 40%;
    }
    .lead-story .ls-txt {
        width: 60%;
    }
    .lead-story .ls-cap h3{
        font-size: 2rem;
    }
    .lead-story .ls-txt p{
        font-size: 1.5rem;
        line-height: 1.2;
    }
    .lead-story .ls-txt a {
    font-size: 1.2rem;
    margin: 1.5rem; var(--main-color-rose);
    }
}
/*header style ends*/

/*main section style starts*/
main {
    background: var(--body-color-white);
}
.prj-prog {
    display: flex;
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 95%;
    margin: 0 auto;
    padding: 15rem auto 2rem;
    background-color: #fff;
}
.prj-prog .emty {
    position: relative;
    width: 100%;
    height: 18rem;
}
.prj-prog h2{
    position: absolute;
    top: 85%;
    width: auto;
    margin-left: 10rem;
    text-align: center;
    color: var(--text-color-dark);
    font-size: 3.5rem;
    padding-left: 2.5rem;
    border-left: 2px solid var(--main-color-rose);
}
.prj-prog .prj-card{
    position: relative;
    width: 30%;
    margin: 3rem 1.5rem 1rem;
}
.prj-prog .prj-card img {
    width: 100%;
    object-fit: contain;
}
.prj-card .prj-icon{
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 10%;
    border: var(--main-color-rose);
}
.prj-card .prj-icon img{
    border-radius: 50%;
}
.prj-card .prj-cap{
    background-color: #eee;
}
.prj-card .prj-cap a{
    color: #02000e;
    font-size: 1.5rem;
}
.prj-card .prj-cap a h3{
    padding: 1rem 2rem;
    text-align: center;
}
.prj-card .prj-cap a:hover{
    color: var(--main-color-rose);
}
.prj-card .prj-cap p{
    margin-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
@media(max-width: 935px){
    .prj-card .prj-icon{
        bottom: 14%;
    }
}
@media(max-width: 735px){
    .prj-prog h2{
        font-size: 2rem;
    }
    .prj-prog .prj-card{
        width: 42%;
        margin: 3rem 1.2rem 1rem;
    }
    .prj-card .prj-icon{
        bottom: 16%;
    }
}
@media(max-width: 500px){
    .prj-prog .prj-card{
        width: 98%;
        margin: 3rem 1.2rem 1rem;
    }
    .prj-card .prj-icon{
        bottom: 22%;
    }
}
.feat-proj {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 95%;
    height: 60vh;
    margin: auto;
    padding: 4rem 0;
    background-color: #fff;
}
.feat-proj img{
    height: 70%;
    width: 40%;
    margin-left: 2rem;
    margin-right: 0;
}
.feat-proj .proj-txt {
    display: flex;
    background-color: #02000e;
    width: 60%;
    height: 98%;
    align-items: center;
}
.proj-txt .outline {
     border-left: 2px solid var(--main-color-rose);
     height: 90%;
     margin: 2rem;
}
.proj-txt .outline h3{
    color: var(--body-color-white);
    font-size: 2rem;
    margin: 2rem 3rem;
}
.proj-txt .outline p{
    color: var(--body-color-white);
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 1rem 3rem;
}
.proj-txt .outline a {
    display: block;
    color: #fff;
    width: fit-content;
    font-size: 1.5rem;
    margin-top: 5rem;
    margin-left: 3rem;
    padding: 0.5rem;
    border: 1px solid var(--main-color-rose);
}
.proj-txt .outline a span{
    color: #5555fa;
    margin-left: 10px;
}
.proj-txt .outline a:hover, 
.proj-txt .outline a span:hover{
    background-color: #ff7300;
    color: #02000e;
}
@media(max-width: 935px){
    .feat-proj img{
        height: 50%;
        width: 35%;
    }
    .feat-proj .proj-txt {
        width: 65%;
        height: 98%;
    }
    .proj-txt .outline a {
        margin-top: 2rem;
        padding: 0.2rem;
        color: #ff7300;
        border-radius: 0 10px 10px 0;
    }
}
@media(max-width: 735px){
    .proj-txt .outline {
        margin: 2rem;
   }
   .proj-txt .outline h3 {
    margin: 1rem 2rem 1.2rem;
    font-size: 1.8rem;
    }
    .proj-txt .outline p{
    margin: 1rem 2rem;
    font-size: 1.2rem;
    }
    .proj-txt .outline a {
        margin-top: 1.5rem;
        margin-left: 2rem;
        font-size: 1.2rem;
    }
}
.stats-section {
    display: flex;
    flex-direction: column;
    height: fit-content;
    background-image: url(images/bgpattern.jpg);
    background-repeat: repeat-y;
    background-size: cover;
    padding-top: 0.5rem;
    justify-content: center;
}
.stats-section .white-space {
    padding: 1rem;
    margin: auto;
    background-color: #fff;
    width: 90%;
}
.white-space .stat-outline{
    border-left: 2px solid var(--main-color-rose);
    margin: 2rem 3rem;
    padding: 0.5rem;
}
.stats-section .stat-outline h3{
    font-size: 2rem;
    margin-left: 1rem;
}
.stats-section .stat-outline h3 span{
    color: var(--main-color-rose);
    font-style: italic;
}
.stats-section .stat-outline p{
    margin-left: 1rem;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}
.stats-section .stats{
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    padding: 1rem;
    margin:2rem auto;
    width: 90%;
}
.stats-section .stats .stat-card {
    width: 15%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
}
.stats .stat-card h2 {
    font-size: 3rem;
}
.stats .stat-card hr {
    margin:0.5rem auto;
    height: 1rem;
    width: 50%;
    background-color: var(--main-color-rose);
}
.stats .stat-card p{
    font-size: 1.2rem;
    line-height: 2rem;
}
@media(max-width: 735px){
    .stats-section .stats{
       flex-wrap: wrap;
       justify-content: space-between;
    }
    .stats-section .stats .stat-card {
        width: 30%;
    }
    .stats .stat-card h2 {
        margin-top: 1.5rem;
    }
}
.stats-section a{
    display: block;
    color: #fff;
    width: fit-content;
    font-size: 1.5rem;
    margin: 2rem auto;
    padding: 0.5rem;
    border: 2px solid var(--main-color-rose);
}
.stats-section a:hover{
    background-color: #ff7300;
    color: #02000e;
}
@media(max-width: 500px){
    .stats-section a{
        width: 50%;
        text-align: center;
    }
}
.vision {
    display: flex;
    flex-direction: column;
    height: fit-content;
    padding-top: 0.5rem;
    justify-content: center;
    background-color: var(--text-color-dark);
}
.vision .vis-holder {
    border-left: 2px solid var(--main-color-rose);
    width: 80%;
    margin-left: 4rem;
    padding: 1rem;
}
.vis-holder h3 {
    font-size: 2rem;
    color: #fff;
    margin-left: 3rem;
    margin-bottom: 1rem;
}
.vis-holder p{
    color: var(--body-color-white);
    font-size: 1.3rem;
    line-height: 18px;
    margin-left: 2.5rem;
    margin-bottom: 2rem;
}
.vis-holder a{
    display: block;
    color: #fff;
    width: fit-content;
    font-size: 1.5rem;
    margin: 2.5rem auto;
    padding: 0.5rem;
    border: 2px solid var(--main-color-rose);
}
.vis-holder a:hover{
    background-color: #ff7300;
    color: #02000e;
}
@media(max-width: 500px){
    .vis-holder a{
        width: 60%;
        padding: 0.2rem;
        text-align: center;
    }
}
/*main section style ends*/
footer {
    background-color: #ffdca8;
    margin-top: 0;
    display: flex;
    flex-direction: column;
}
.ft {
    width: 90%;
    display: flex;
    margin: auto;
    justify-content: space-between;
}
.ft-logo {
    color: var(--main-color-rose);
    font-size: 2.5rem;
    font-weight: 600;
    margin-left: 4rem;
}
.ft-logo span{
    color: var(--text-color-dark);
    font-style: italic;
}
.ft .social-icons{
    padding: 0.5rem;
}
.ft .social-icons a{
    padding: 0.5rem 1rem;
}
footer hr{
    display: block;
    width: 98%;
    height: 3px;
    margin: auto;
    background-color: var(--main-color-rose);
}
.ft-links {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    margin-left: 3rem;
    margin-top: 1rem;
}
.ft-links .links{
    width: 25%;
    display: flex;
    flex-flow: column;
}
.ft-links .links a{
    width: fit-content;
    margin: 0.2rem;
    padding: 0.2rem;
    font-size: 1.2rem;
    color: var(--text-color-dark);
}
@media(max-width: 500px){
    .ft-links .links {
        width: 45%;
    }
}
footer .copy-right{
    display: flex;
    justify-content: space-between;
    background-color: var(--text-color-light);
    padding: 1rem;
}
footer .copy-right p{
    font-size: 1.2rem;
    color: var(--body-color-white);
    margin-left: 3rem;
}
footer .copy-right p span{
    font-style: italic;
}
