*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f5f5f5;
color:#333;
}

/* Navigation */

header{
position:fixed;
top:0;
width:100%;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.1);
z-index:999;
}

nav{
position:fixed;
top:0;
left:0;
width:100%;
padding:15px 8%;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
z-index:999;

    list-style:none;
}

.logo{
display:flex;
align-items:center;
gap:100px;
}

.logo img{
width:300px;
height:55px;
}

.logo h2{
color:#004aad;
font-size:22px;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:25px;
 position:relative;
}

nav ul li a{
text-decoration:none;
color:#333;
font-weight:500;
transition:.3s;
 display:block;
}

nav ul li a:hover{
color:#004aad;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    background:white;
    opacity:0.95;
    min-width:220px;
    list-style:none;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    border-radius:8px;
    padding:8px 0;
    z-index:1000;
}


/* Show on hover */
.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu li a{
    color:#333;
}

.dropdown-menu li a:hover{
    background:transparent;
}

/* Hero */

.hero{
height:100vh;
background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url('images/Background.webp');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
color:#fff;
}

.hero h1{
font-size:55px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:35px;
}

.hero button{
padding:15px 40px;
border:none;
background:#ffb400;
color:#fff;
font-size:18px;
cursor:pointer;
border-radius:50px;
transition:.3s;
}

.hero button:hover{
background:#004aad;
}

/* Sections */

section{
padding:90px 10%;
}

.title{
text-align:center;
font-size:36px;
margin-bottom:50px;
color:#004aad;
}

/* About */

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about img{
width:100%;
border-radius:15px;
}

.about p{
font-size:17px;
line-height:1.8;
}

/* Services */

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.4s;
text-align:center;
}

.card:hover{
transform:translateY(-10px);
}

.card h3{
margin:20px 0;
color:#004aad;
}

/* Qiao*/

.Qiao {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.box{

background:#004aad;
color:#fff;
padding:35px;
border-radius:15px;
text-align:center;
}



/* CTA */

.cta{
background:#004aad;
color:#fff;
text-align:center;
padding:20px 20px;
}

.cta h2{
font-size:38px;
margin-bottom:20px;
}

.cta button{
padding:15px 35px;
font-size:18px;
border:none;
border-radius:50px;
background:#ffb400;
color:#fff;
cursor:pointer;
}

/* Footer */

footer{
background:#111;
color:#fff;
text-align:center;
padding:25px;
}

/* Responsive */

@media(max-width:900px){

.about{
grid-template-columns:1fr;
}

.hero h1{
font-size:38px;
}

nav{
flex-direction:column;
}

nav ul{
margin-top:15px;
flex-wrap:wrap;
justify-content:center;
}

nav ul li{
margin:10px;
}

}


/**news**/

.news-section{
padding:80px 10%;
background:#f5f7fa;
}

.title{
text-align:center;
font-size:40px;
color:#004aad;
margin-bottom:15px;
}

.subtitle{
text-align:center;
max-width:800px;
margin:auto;
margin-bottom:50px;
color:#666;
}

.news-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:35px;
}

.news-card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.3s;
}

.news-card:hover{
transform:translateY(-8px);
}

.news-card img{
width:100%;
height:240px;
object-fit:cover;
}

.news-content{
padding:25px;
}

.date{
color:#888;
font-size:14px;
}

.news-content h2{
margin:12px 0;
color:#004aad;
font-size:24px;
}

.news-content p{
line-height:1.8;
}

.more-content{
display:none;
margin-top:20px;
border-top:1px solid #ddd;
padding-top:20px;
animation:fade .4s;
}

.news-card.active .more-content{
display:block;
}

.read-btn{
margin-top:20px;
padding:12px 25px;
border:none;
background:#004aad;
color:white;
border-radius:6px;
cursor:pointer;
font-size:15px;
transition:.3s;
}

.read-btn:hover{
background:#00337d;
}

@keyframes fade{

from{
opacity:0;
transform:translateY(15px);
}

to{
opacity:1;
transform:translateY(0);
}

}