html{
    background-color:  white;
    
}

body{
    margin: 0;
}


.navbar{
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #fff;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    margin: 0;
    z-index: 1;
}

.navbar_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
}

.navbar, .navbar_inner{
    overflow: visible;
}

.navbar_left{
    display: flex;
    align-items: center;
    gap: 18px;
}

.navbar_logo{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: scale(.7);
    transform-origin: left center;
}

.logo{
    width: 44px;
    height: 22px;
    border-radius: 6px;
    background: #0e220e;
    display: inline-block;
}

.nav_links{
    display: flex;
    align-items: center;
    gap: 14px;
}

.link{
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.3;
    color: #0e220e;
    text-decoration: none;
}

.link:hover{
    background: rgba(14, 34, 14, 0.06);
}

.link_dropdown{
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown{
    position: relative;
}

.dropdown:after{
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 10px;
    width: 100%;
}

.dropdown_menu{
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 8px;
    z-index: 10;
}

.dropdown_menu a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    color: #0e220e;
    text-decoration: none;
    font-size:14px;
}

.dropdown_menu a:hover {
    background: rgba(14, 34, 14, 0.06);
}

.dropdown:hover .dropdown_menu{
    display: block;
}

.navbar_right{
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero{
    display: flex;
    align-items: center;
    min-height: 70vh;
    height: 0;
   
}

.hero_overlay{
    position: relative;
    display: flex;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
  
}
.hero h1{
    font-family: "Inter", sans-serif;
    font-size: 5vw;
    color: white;
    font-weight: 600;
}

.hero a{
    font-family: "Inter", sans-serif;
    font-size: 2vw;
    color: white;
    font-weight: 600;
    background-color: #163d63;
    border-radius: 20px;
    padding: 20px;
    width: fit-content;
    text-decoration: none;
}

.hero_image{
    display: block;
    position: absolute;
    overflow: hidden;
    height: 70vh;
    padding: 20px;
    
   
    
}
.hero_image img{
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    z-index: 0;
    
  
    
}

.Card_container{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    margin: 0 auto;
    max-width: 1100px;
}

.Card{
    position: relative;
    height:190px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.Card img{
    width:100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition: transform 220ms ease;
}

.Card a{
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 2;
    color: #fff;
    text-decoration: none;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    padding: 10px 12px;
    border-radius: 14px;
    background: #163d63;
}

.Card:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.14);
}

.Card:hover img{
    transform: scale(1.08);
}

.Card a:focus-visible{
    outline: 3px solid rgba(255,255,255,0.95);
    outline-offset: 4px;
}

.Stats{
    padding: 24px;
    background: white;
    
}

.statsGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    
}

.statsCard{
   background-color:#204973;
    border-radius: 10px;
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 16px 38px rgba(0,0,0,0.14);
}

.statNum{
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 700;
    line-height: 1;
    color:white;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.statsText{
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color:white;

}



@media ( min-width: 640px){
    .hero{
      grid-template-columns: 1fr;  
    }
    .hero_image{
        order:-1;
    }

    .Card_container{
        grid-template-columns: repeat(2,1fr);
        gap: 18px;
        padding: 24px;
    }

    .Card{
        height: 220px;
    }
}
@media ( min-width: 1024px){
    .hero{
      grid-template-columns: 1fr;  
    }
    .hero_image{
        order:-1;
    }

    .Card_container{
        grid-template-columns: repeat(3,1fr);
        gap: 22px;
        padding: 24px;
    }

    .Card{
        height: 240px;
    }

    .Card a{
        font-size: 19px;
    }
}