*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: 'Segoe UI', Arial, sans-serif;
}

body{
background:#f8f9fb;
color:#333;
line-height:1.6;
}

/* TOP BAR */

.topbar{
background:#C62828;
color:white;
padding:8px 40px;
display:flex;
justify-content:space-between;
font-size:14px;
}

.telephone-header {
  text-decoration:none;
  color:white;
  font-weight:500;
}
/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 40px;
background:#E53935;
color:white;
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:22px;
font-weight:bold;
}

.nav-links{
list-style:none;
display:flex;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:white;
font-weight:500;
}

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}


/* HERO */

.hero{
height:85vh;
background:linear-gradient(135deg,#E53935,#ff6b6b);
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

.hero h1{
font-size:48px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
margin-bottom:20px;
}

.hero-buttons{
margin-top:20px;
}

.btn{
background:white;
color:#E53935;
padding:12px 28px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
margin:5px;
display:inline-block;
}

.btn-outline{
border:2px solid white;
color:white;
padding:12px 28px;
border-radius:30px;
text-decoration:none;
}


/* SEARCH */

.search-box{
margin-top:20px;
}

.search-box input{
padding:14px;
width:320px;
border:none;
border-radius:30px;
text-align:center;
}


/* SECTION */

.section{
padding:70px 40px;
}

.section h2{
text-align:center;
margin-bottom:40px;
font-size:32px;
}

.bg-light{
background:#fafafa;
}


/* GRID */

.card-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}


/* CARD */

.card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.price{
color:#E53935;
font-weight:bold;
margin:10px 0;
}

.book-btn{
background:#E53935;
color:white;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
display:inline-block;
margin-top:10px;
}


/* INFO GRID */

.info-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.info-img{
width:100%;
border-radius:10px;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
transition:0.4s;
}

.info-img:hover{
transform:scale(1.05);
}


/* STATS */

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
background:#E53935;
color:white;
text-align:center;
padding:40px 20px;
}

.stat h2{
font-size:36px;
}


/* CTA */

.cta{
background:#E53935;
color:white;
text-align:center;
padding:70px 20px;
}

.cta-btn{
display:inline-block;
margin-top:20px;
background:white;
color:#E53935;
padding:14px 30px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}

.contact-home{
background:#fff5f5;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
max-width:1100px;
margin:auto;
align-items:center;
}

.contact-info h2{
color:#b30000;
margin-bottom:15px;
}

.contact-text{
color:#555;
margin-bottom:25px;
}

.contact-item{
display:flex;
gap:15px;
margin-bottom:20px;
align-items:flex-start;
}

.contact-item i{
width:42px;
height:42px;
background:#E53935;
color:white;
display:flex;
align-items:center;
justify-content:center;
border-radius:8px;
font-size:16px;
}

.contact-buttons{
margin-top:20px;
display:flex;
gap:15px;
}

.contact-call{
background:#E53935;
color:white;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
transition:.3s;
}

.contact-call:hover{
background:#8a0000;
}

.contact-whatsapp{
background:#25D366;
color:white;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
}

.contact-map iframe{
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* Mobile */

@media(max-width:768px){

.contact-container{
grid-template-columns:1fr;
}

}

/* skeleton cards */

.skeleton-card{
background:white;
padding:25px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.skeleton{
background:linear-gradient(
90deg,
#eee 25%,
#f5f5f5 37%,
#eee 63%
);
background-size:400% 100%;
animation:skeleton-loading 1.4s ease infinite;
border-radius:6px;
}

.skeleton-icon{
width:55px;
height:55px;
border-radius:12px;
margin:auto;
margin-bottom:15px;
}

.skeleton-title{
height:16px;
margin-bottom:10px;
}

.skeleton-text{
height:12px;
margin-bottom:6px;
}

.skeleton-price{
height:14px;
width:50px;
}

@keyframes skeleton-loading{
0%{background-position:100% 50%}
100%{background-position:0 50%}
}

/* FOOTER */

.footer{
background:#111;
color:white;
text-align:center;
padding:25px;
}


/* WHATSAPP FLOAT */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
font-size:26px;
padding:15px 18px;
border-radius:50%;
text-decoration:none;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.hero{
background:url('/images/lab-bg.jpg') center/cover no-repeat;
height:85vh;
position:relative;
display:flex;
align-items:center;
justify-content:center;
}

.hero-overlay{
background:rgba(0,0,0,0.5);
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

.test-icon{
width:60px;
height:60px;
background:#ffe5e5;
color:#E53935;
font-size:26px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin:0 auto 15px;
}

.card:hover .test-icon{
background:#E53935;
color:white;
}

.modern-test-card{

background:rgba(255,255,255,0.9);
backdrop-filter:blur(10px);
border-radius:14px;
padding:25px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:all .35s ease;
position:relative;

}

.modern-test-card:hover{

transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,0,0,0.15);

}

.card-top{

display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;

}

.test-icon{

width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
background:linear-gradient(135deg,#ff6b6b,#E53935);
color:white;
border-radius:50%;

}

.badge{

background:#ffe5e5;
color:#E53935;
padding:6px 12px;
font-size:12px;
border-radius:20px;

}

.test-desc{

font-size:14px;
color:#666;
margin:10px 0;

}

.test-meta{

display:flex;
gap:15px;
font-size:13px;
color:#777;
margin-bottom:18px;

}

.card-bottom{

display:flex;
justify-content:space-between;
align-items:center;

}

.price{

font-size:20px;
font-weight:700;
color:#E53935;

}

.book-btn{

background:linear-gradient(135deg,#E53935,#ff6b6b);
color:white;
padding:8px 16px;
border-radius:6px;
text-decoration:none;
font-size:14px;

}

/*Footer css*/
.footer{
background:#111;
color:white;
padding:60px 40px 20px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-col{
text-align:left;
}

.footer-col h3{
margin-bottom:18px;
font-size:20px;
}

.footer-col p{
font-size:14px;
margin-bottom:10px;
color:#ccc;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:#ccc;
text-decoration:none;
font-size:14px;
}

.footer-col ul li a:hover{
color:#E53935;
}

/* Social Icons */

.footer-social{
margin-top:15px;
}

.footer-social a{
display:inline-block;
width:36px;
height:36px;
line-height:36px;
text-align:center;
background:#222;
color:white;
border-radius:50%;
margin-right:10px;
font-size:16px;
transition:0.3s;
}

.footer-social a:hover{
background:#E53935;
}

/* Book Button */

.footer-book-btn{
display:inline-block;
margin-top:20px;
background:#E53935;
color:white;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
font-size:14px;
}

.footer-book-btn i{
margin-right:6px;
}

/* Footer Bottom */

.footer-bottom{
border-top:1px solid #333;
margin-top:40px;
padding-top:15px;
text-align:center;
font-size:14px;
color:#aaa;
}

/* RESPONSIVE */

@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:#E53935;
flex-direction:column;
text-align:center;
display:none;
}

.nav-links li{
padding:15px;
}

.nav-links.show{
display:flex;
}

.hero h1{
font-size:34px;
}

.info-grid{
grid-template-columns:1fr;
}

.search-box input{
width:90%;
}

}

/**Privacy Policy**/
.privacy-header{
    background:#0d6efd;
    color:#fff;
    padding:60px 0;
}

.privacy-card{
    background:#fff;
    padding:40px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.privacy-card h2{
    margin-top:30px;
    font-size:22px;
}

.privacy-card p{
    color:#555;
    line-height:1.7;
}

/**About Us**/
.section{
padding:80px 20px;
}

.about-hero{
background: linear-gradient(180deg,#fff5f5,#ffffff);
}

.bg-danger-soft{
background:#ffe5e5;
}

.about-list li{
margin-bottom:12px;
font-size:16px;
color:#555;
display:flex;
align-items:center;
gap:10px;
}

.about-list i{
font-size:18px;
}

.about-img{
border:6px solid #fff;
}

/* grid */

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* features */

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:40px;
}

.feature-card{
background:white;
padding:25px;
border-radius:12px;
border:1px solid #eee;
text-align:center;
transition:.25s;
}

.feature-card:hover{
border-color:#c1121f;
transform:translateY(-4px);
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.feature-icon{
width:45px;
height:45px;
background:#ffe5e5;
color:#c1121f;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
margin:auto;
margin-bottom:12px;
}

/* certifications */

.certifications{
background:#fafafa;
text-align:center;
}

.cert-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:25px;
margin-top:30px;
}

.cert-card{
background:white;
padding:20px;
border-radius:10px;
border:1px solid #eee;
}

/* team */

.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:30px;
}

.team-card{
background:white;
border-radius:12px;
padding:20px;
text-align:center;
border:1px solid #eee;
}

.team-card img{
width:100%;
border-radius:10px;
margin-bottom:10px;
}

/* stats */

.stats{
background:#fafafa;
text-align:center;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:30px;
margin-top:30px;
}

.stat h2{
color:#c1121f;
font-weight:700;
}

/* testimonials */

.testimonials{
background:#fff5f5;
text-align:center;
}

.review-card{
background:white;
padding:25px;
border-radius:12px;
border:1px solid #eee;
max-width:350px;
margin:auto;
}

/* CTA */

.cta{
background:#c1121f;
color:white;
text-align:center;
padding:70px 20px;
}

.cta a{
background:white;
color:#c1121f;
padding:10px 22px;
border-radius:6px;
text-decoration:none;
font-weight:500;
}

@media(max-width:768px){
.about-grid{
grid-template-columns:1fr;
}
}

/**Test List Page**/
.section{
padding:70px 20px;
background:#fafafa;
}

.search-bar{
max-width:650px;
margin:auto;
margin-bottom:35px;
}

/* filters */

.filters{
text-align:center;
margin-bottom:35px;
}

.filters button{
border:none;
padding:8px 16px;
margin:5px;
border-radius:20px;
background:#eee;
cursor:pointer;
}

.filters button.active{
background:#c1121f;
color:white;
}

/* grid */

.test-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

/* card */

.test-card{
background:white;
border-radius:12px;
padding:22px;
border:1px solid #eee;
transition:.25s;
display:flex;
flex-direction:column;
justify-content:space-between;
}

.test-card:hover{
border-color:#c1121f;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transform:translateY(-4px);
}

/* icon */

.test-icon{
width:45px;
height:45px;
background:#ffe5e5;
color:#c1121f;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
font-size:20px;
margin-bottom:12px;
}

/* badges */

.badges{
display:flex;
gap:6px;
margin-bottom:8px;
}

.badge{
font-size:11px;
padding:4px 6px;
border-radius:4px;
}

.badge-report{
background:#e7f8ed;
color:#1f8a4c;
}

.badge-home{
background:#eef4ff;
color:#3d6ee8;
}

/* description */

.test-desc{
font-size:14px;
color:#666;
margin-bottom:12px;
}

/* meta */

.test-meta{
font-size:13px;
color:#777;
margin-bottom:12px;
}

/* price */

.price{
display:flex;
align-items:center;
gap:8px;
}

.price-old{
text-decoration:line-through;
color:#999;
font-size:14px;
}

.price-new{
font-weight:600;
color:#c1121f;
font-size:17px;
}

/* buttons */

.card-bottom{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:10px;
}

.book-btn{
background:#c1121f;
color:white;
padding:6px 12px;
border-radius:6px;
text-decoration:none;
font-size:13px;
}

.whatsapp-btn{
background:#25D366;
color:white;
padding:6px 10px;
border-radius:6px;
font-size:13px;
text-decoration:none;
}

/* load more */

.load-more{
text-align:center;
margin-top:40px;
}

.load-more button{
background:#c1121f;
color:white;
border:none;
padding:10px 25px;
border-radius:6px;
}

/* skeleton */

.skeleton-card{
background:white;
border-radius:12px;
padding:22px;
border:1px solid #eee;
}

.skeleton{
background:linear-gradient(90deg,#eee 25%,#f5f5f5 37%,#eee 63%);
background-size:400% 100%;
animation:skeleton 1.2s infinite;
border-radius:6px;
}

.skeleton-icon{
height:45px;
width:45px;
margin-bottom:10px;
}

.skeleton-title{
height:16px;
margin-bottom:10px;
}

.skeleton-text{
height:12px;
margin-bottom:6px;
}

@keyframes skeleton{
0%{background-position:100% 50%}
100%{background-position:0 50%}
}