*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:Georgia, serif;
background:#f7fbff;
color:#111827;
overflow-x:hidden;
margin:0;
padding:0;
}

a{
text-decoration:none;
color:inherit;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(255,255,255,0.94);
backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);
border-bottom:1px solid rgba(15,23,42,0.06);
box-shadow:0 4px 24px rgba(0,0,0,0.05);
z-index:999;
transition:0.3s ease;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:16px 0;
}

.logo{
display:flex;
align-items:center;
gap:14px;
}

.logo img{
height:62px;
width:auto;
display:block;
object-fit:contain;
}

.logo-text{
display:flex;
flex-direction:column;
line-height:1.1;
}

.logo-text h2{
font-size:30px;
font-weight:700;
color:#0b4a6f;
letter-spacing:0.3px;
}

.logo-text span{
font-size:13px;
color:#64748b;
font-weight:600;
letter-spacing:1px;
text-transform:uppercase;
margin-top:4px;
}

.menu{
display:flex;
align-items:center;
gap:34px;
}

.menu a{
position:relative;
font-size:17px;
font-weight:600;
color:#0f172a;
transition:0.3s ease;
padding-bottom:4px;
}

.menu a:hover{
color:#0284c7;
}

.menu a::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:0%;
height:2px;
background:#38bdf8;
transition:0.3s;
border-radius:50px;
}

.menu a:hover::after{
width:100%;
}

.nav-btn{
background:#0b4a6f;
color:white !important;
padding:13px 24px;
border-radius:50px;
transition:0.3s;
box-shadow:0 10px 20px rgba(2,132,199,0.2);
}

.nav-btn:hover{
background:#0284c7;
transform:translateY(-2px);
}

.nav-btn::after{
display:none;
}
.hero{
min-height:100vh;
display:flex;
align-items:center;
background:
linear-gradient(rgba(5,22,40,0.78), rgba(5,22,40,0.82)),
url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?q=80&w=1400&auto=format&fit=crop');
background-size:cover;
background-position:center;
color:white;
padding-top:120px;
}

.hero-content{
max-width:700px;
}

.hero-content h1{
font-size:68px;
line-height:1.2;
margin-bottom:25px;
}

.hero-content span{
color:#38bdf8;
}

.hero-content p{
font-size:21px;
line-height:1.9;
color:#e5e7eb;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn{
padding:16px 34px;
border-radius:50px;
font-size:18px;
font-weight:bold;
display:inline-block;
transition:0.3s;
}

.btn-primary{
background:#38bdf8;
color:#000;
}

.btn-primary:hover{
transform:translateY(-5px);
background:#0ea5e9;
}

.btn-secondary{
border:2px solid white;
color:white;
}

.btn-secondary:hover{
background:white;
color:#000;
}

section{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-title h2{
font-size:50px;
margin-bottom:15px;
color:#0b4a6f;
}

.section-title p{
font-size:19px;
color:#475569;
line-height:1.8;
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.service-card{
background:white;
padding:40px 30px;
border-radius:25px;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
transition:0.4s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card h3{
font-size:30px;
margin-bottom:20px;
color:#0b4a6f;
}

.service-card p{
line-height:1.9;
font-size:17px;
color:#475569;
}

.features{
background:#e0f2fe;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
text-align:center;
}

.feature-box{
background:white;
padding:40px 25px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.feature-box h3{
font-size:42px;
margin-bottom:12px;
color:#0b4a6f;
}

.feature-box p{
font-size:18px;
color:#475569;
}

.tests{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.test-box{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:0.3s;
}

.test-box:hover{
transform:translateY(-8px);
}

.test-box h3{
margin-bottom:15px;
font-size:24px;
color:#0b4a6f;
}

.test-box ul{
padding-left:18px;
line-height:2;
color:#475569;
}

.about{
background:
linear-gradient(rgba(4,20,38,0.88), rgba(4,20,38,0.88)),
url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3?q=80&w=1400&auto=format&fit=crop');
background-size:cover;
background-position:center;
color:white;
text-align:center;
border-radius:30px;
padding:100px 30px;
}

.about h2{
font-size:56px;
margin-bottom:25px;
}

.about p{
max-width:900px;
margin:auto;
font-size:20px;
line-height:1.9;
color:#e5e7eb;
}

.testimonials{
background:#f0f9ff;
}

.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.review-card{
background:white;
padding:35px;
border-radius:22px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.review-card p{
line-height:1.9;
font-size:17px;
margin-bottom:20px;
color:#475569;
}

.review-card h4{
font-size:20px;
color:#0b4a6f;
}

.contact{
background:linear-gradient(135deg,#0b4a6f,#0284c7);
color:white;
padding:100px 20px;
text-align:center;
border-radius:30px;
}

.contact h2{
font-size:54px;
margin-bottom:20px;
}

.contact p{
max-width:850px;
margin:auto;
font-size:20px;
line-height:1.9;
margin-bottom:40px;
}

footer{
background:#02111f;
padding:40px 0;
text-align:center;
margin-top:80px;
}

footer p{
color:#cbd5e1;
font-size:17px;
}

.whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
border-radius:50%;
background:#25D366;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
box-shadow:0 10px 25px rgba(0,0,0,0.25);
z-index:999;
}

@media(max-width:768px){

.menu{
display:none;
}

.hero-content h1{
font-size:42px;
}

.section-title h2{
font-size:36px;
}

.about h2{
font-size:38px;
}

.contact h2{
font-size:38px;
}

}
.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.gallery-item{
overflow:hidden;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.gallery-item img{
width:100%;
height:320px;
object-fit:cover;
display:block;
transition:0.5s;
}

.gallery-item:hover img{
transform:scale(1.08);
}

.appointment-section{
background:#e0f2fe;
}

.appointment-box{
background:white;
padding:60px 40px;
border-radius:30px;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
max-width:850px;
margin:auto;
text-align:center;
}

.appointment-box h2{
font-size:48px;
margin-bottom:20px;
color:#0b4a6f;
}

.appointment-box p{
font-size:19px;
line-height:1.8;
color:#475569;
margin-bottom:35px;
}

.appointment-form{
display:grid;
gap:20px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea{
padding:18px;
border-radius:14px;
border:1px solid #cbd5e1;
font-size:17px;
outline:none;
font-family:Georgia, serif;
}

.appointment-form textarea{
height:150px;
resize:none;
}

.appointment-form button{
padding:18px;
border:none;
border-radius:50px;
background:#0b4a6f;
color:white;
font-size:18px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.appointment-form button:hover{
background:#0284c7;
}

.map-box{
overflow:hidden;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
margin-bottom:50px;
}

.footer-box h3{
font-size:26px;
margin-bottom:20px;
color:#38bdf8;
}

.footer-box p,
.footer-box li{
color:#cbd5e1;
line-height:2;
list-style:none;
font-size:17px;
}

.footer-box a:hover{
color:#38bdf8;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.08);
padding-top:25px;
text-align:center;
}

@media(max-width:768px){

.appointment-box{
padding:40px 20px;
}

.appointment-box h2{
font-size:36px;
}

}
body{
font-family:Arial;
background:#f5f7fb;
padding:40px;
}

h1{
margin-bottom:30px;
}

table{
width:100%;
border-collapse:collapse;
background:white;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

th,td{
padding:15px;
border:1px solid #ddd;
text-align:left;
}

th{
background:#0b4a6f;
color:white;
}

tr:nth-child(even){
background:#f9fafb;
}
.top-bar{
display:flex;
justify-content:flex-end;
margin-bottom:25px;
}

.logout-btn{
background:#dc2626;
color:white;
padding:12px 22px;
border-radius:10px;
font-size:16px;
font-weight:bold;
text-decoration:none;
transition:0.3s;
}

.logout-btn:hover{
background:#b91c1c;
transform:translateY(-2px);
}