@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body{
margin:0;
font-family:'Montserrat', sans-serif;
color:#ffffff;
background:url('../images/star-bg.jpg');
background-size:cover;
background-attachment:fixed;
}


/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
position:absolute;
width:100%;
z-index:10;
background:rgba(0,0,0,0.25);
backdrop-filter:blur(6px);
}

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

.logo img{
height:42px;
}

.navbar a{
color:white;
margin-left:30px;
text-decoration:none;
font-weight:500;
font-size:16px;
letter-spacing:0.5px;
}


/* HERO */

.hero{

height:640px;

background:
linear-gradient(rgba(10,20,80,0.45), rgba(10,20,80,0.45)),
url('../images/dna-hero.png');

background-size:cover;
background-position:right center;

display:flex;
align-items:center;
}

.hero-content{
margin-left:8%;
max-width:650px;
}


/* HERO HEADLINE */

.hero h1{

font-size:58px;
font-weight:700;
line-height:1.2;
margin-bottom:22px;

}


/* HERO SUBHEAD */

.hero h2{

font-size:24px;
font-weight:400;
margin-bottom:12px;

}


/* HERO DESCRIPTION */

.hero p{

font-size:16px;
font-weight:400;
margin-bottom:25px;

}


/* HERO BUTTONS */

.call-btn{

background:#2f4c8a;
padding:14px 26px;
border-radius:6px;
margin-right:12px;
color:white;
font-weight:600;
font-size:15px;
text-decoration:none;
box-shadow:0 3px 8px rgba(0,0,0,0.4);

}

.schedule-btn{

background:#63b847;
padding:14px 26px;
border-radius:6px;
color:white;
font-weight:600;
font-size:15px;
text-decoration:none;
box-shadow:0 3px 8px rgba(0,0,0,0.4);

}



/* ABOUT SECTION */

.about{

background:rgba(255,255,255,0.75);
color:#333;

width:82%;
margin:60px auto;

padding:55px;

border-radius:8px;

backdrop-filter:blur(8px);

text-align:center;

}

.about h2{

font-size:30px;
font-weight:600;
margin-bottom:20px;

}

.about p{

font-size:16px;
font-weight:400;

}

.about ul{

list-style:none;
padding:0;
display:flex;
justify-content:center;
gap:40px;
margin-top:20px;
font-weight:500;

}



/* SERVICES SECTION */

.services{

background:rgba(255,255,255,0.75);
color:#333;

width:82%;
margin:60px auto;

padding:55px;

border-radius:8px;

backdrop-filter:blur(8px);

text-align:center;

}

.services h2{

font-size:32px;
font-weight:600;
margin-bottom:30px;

}


.service-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}


.service-card{

background:white;
padding:20px;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.2);

}

.service-card img{

width:100%;
border-radius:6px;
margin-bottom:12px;

}

.service-card h3{

font-size:20px;
font-weight:600;
margin-bottom:10px;

}

.service-card p{

font-size:15px;
font-weight:400;
color:#444;

}

.service-card button{

margin-top:12px;
background:#2f4c8a;
color:white;
padding:10px 22px;
border:none;
border-radius:6px;
font-weight:600;

}



/* TRUST SECTION */

.trust{

background:rgba(0,0,70,0.85);
padding:45px;
text-align:center;

}

.trust h2{

font-size:28px;
font-weight:600;
margin-bottom:18px;

}

.trust ul{

list-style:none;
padding:0;
font-size:16px;
font-weight:400;

}



/* TESTIMONIALS */

.testimonials{

background:rgba(255,255,255,0.75);
color:#333;

width:82%;
margin:60px auto;

padding:55px;

border-radius:8px;

backdrop-filter:blur(8px);

text-align:center;

}

.testimonials h2{

font-size:30px;
font-weight:600;
margin-bottom:30px;

}


.testimonial-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

}


.testimonial{

background:white;
padding:30px;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.2);

}

.testimonial h3{

font-size:18px;
font-weight:600;

}

.testimonial p{

font-size:15px;
font-weight:400;

}

.stars{

color:#f5b301;
font-size:22px;

}



/* FOOTER */

footer{

text-align:center;
padding:25px;
background:#0c2b64;
font-size:14px;

}