*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f5f7fb;
color:#222;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#08172f;
position:sticky;
top:0;
z-index:1000;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo img{
    height:90px;
    width:auto;
}

nav{
display:flex;
gap:35px;
}

nav a{
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#4db8ff;
}

.hero{
    position: relative;
    height: 75vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url("https://img.sanishtech.com/u/8dc13ece3a7062093ede92d220b9e35e.png") center center/cover no-repeat;
    overflow: hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(8,20,45,.60);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

.hero h1{
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.hero-line{
    width:90px;
    height:4px;
    background:#1f6fff;
    margin:0 auto 30px;
    border-radius:10px;
}

.hero p{
   font-size: 1.35rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 35px;
    color: #fff;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:16px 34px;
    font-size:1.1rem;
    font-weight:600;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.btn-primary{
    background:#1e6cff;
    color:#fff;
}

.btn-primary:hover{
    background:#1557d6;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#0d1b3d;
}

section{
padding:90px 0;
}

section h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
color:#08172f;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
margin-bottom:15px;
color:#10214f;
}

footer{
background:#08172f;
color:white;
text-align:center;
padding:30px;
margin-top:80px;
}

@media(max-width:768px){
header .container{
flex-direction:column;
}
nav{
margin-top:20px;
flex-direction:column;
align-items:center;
gap:15px;
}
.hero h2{
font-size:40px;
}
.hero p{
font-size:20px;
}
}

.about{
    padding:100px 0;
    background:#ffffff;
}

.about h2{
    text-align:center;
    font-size:42px;
    margin-bottom:25px;
    color:#08172f;
}

.about>div>p{
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#666;
    font-size:20px;
    margin-bottom:60px;
}

.about-boxes{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.box{
    background:#f7f7f7;
    padding:40px;
    border-radius:15px;
    transition:.3s;
}

.box:hover{
    transform:translateY(-10px);
}

.box h3{
    margin-bottom:15px;
    color:#08172f;
}

.box p{
    color:#666;
}

.products{
    padding:100px 0;
    background:#f5f7fb;
}

.products h2{
    text-align:center;
    font-size:42px;
    color:#08172f;
    margin-bottom:20px;
}

.products>div>p{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
    color:#666;
}

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

.product-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card h3{
    color:#0b1d48;
    margin-bottom:15px;
}

.product-card p{
    color:#666;
}

.why-us{
    padding:80px 0;
    background:#ffffff;
}

.why-us h2{
    text-align:center;
    font-size:42px;
    color:#08172f;
    margin-bottom:15px;
}

.section-text{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
    color:#666;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-card{
    background:#f8f9fc;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card h3{
    color:#08172f;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

.contact{
    background:#f5f7fb;
    padding:100px 0;
}

.contact h2{
    text-align:center;
    font-size:42px;
    color:#08172f;
    margin-bottom:20px;
}

.contact .section-text{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
    color:#666;
    line-height:1.8;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info{
    background:white;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-info h3{
    margin-bottom:25px;
    color:#08172f;
}

.contact-info p{
    margin-bottom:20px;
    line-height:1.8;
}

.contact-info a{
    color:#0066cc;
    text-decoration:none;
    font-weight:600;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #d9d9d9;
    border-radius:8px;
    font-size:16px;
}

.contact-form textarea{
    resize:vertical;
}

.contact-form button{
    background:#0d6efd;
    color:white;
    border:none;
    padding:18px;
    border-radius:8px;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#0b5ed7;
}

@media(max-width:768px){
.contact-container{
grid-template-columns:1fr;
}
}

.disclaimer{
    background:#08172f;
    color:white;
    padding:70px 0;
}

.disclaimer h2{
    text-align:center;
    margin-bottom:30px;
    font-size:36px;
}

.disclaimer p{
    max-width:900px;
    margin:20px auto;
    line-height:1.9;
    color:#d9d9d9;
    text-align:center;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    width:340px;
    height:auto;
    display:block;
    cursor:pointer;
    transition:0.3s;
}

.logo:hover img{
    transform:scale(1.03);
}

footer{
    background:#08172f;
    color:#fff;
    margin-top:0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    padding:60px 0;
}

.footer-column{
    display:flex;
    flex-direction:column;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

.footer-column h3{
    color:#fff;
    margin-bottom:20px;
}

.footer-column p{
    color:#bbb;
    margin-bottom:12px;
    line-height:1.8;
}

.footer-column a{
    color:#bbb;
    text-decoration:none;
    margin-bottom:10px;
    transition:.3s;
}

.footer-column a:hover{
    color:#fff;
}

footer hr{
    border:none;
    border-top:1px solid rgba(255,255,255,.15);
}

.copyright{
    text-align:center;
    padding:25px 0;
    color:#bbb;
}

@media(max-width:768px){
.footer-grid{
grid-template-columns:1fr;
text-align:center;
}
.footer-logo{
margin:auto auto 20px;
}
}

.services{
    background:#ffffff;
    padding:90px 0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.service-card{
    background:#f8f9fc;
    padding:35px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    color:#08172f;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

.process{
    background:#f5f7fb;
    padding:90px 0;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.process-card{
    background:#fff;
    padding:35px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-number{
    width:60px;
    height:60px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#1e6cff;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:bold;
}

.process-card h3{
    margin-bottom:15px;
    color:#08172f;
}

.process-card p{
    color:#666;
    line-height:1.8;
}

.faq{
    background:#ffffff;
    padding:90px 0;
}

.faq-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    margin-top:50px;
}

.faq-item{
    background:#f8f9fc;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-6px);
}

.faq-item h3{
    color:#08172f;
    margin-bottom:15px;
    font-size:20px;
}

.faq-item p{
    color:#666;
    line-height:1.8;
}

.cta{
    background:#08172f;
    color:white;
    padding:90px 0;
    text-align:center;
}

.cta h2{
    font-size:44px;
    margin-bottom:20px;
    color:white;
}

.cta p{
    max-width:750px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#d9d9d9;
}

.cta-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.map{
    padding:90px 0;
    background:#f5f7fb;
}

.map iframe{
    margin-top:40px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

.hours{
    background:#ffffff;
    padding:90px 0;
}

.hours-card{
    max-width:700px;
    margin:40px auto 0;
    background:#f8f9fc;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.hours-card p{
    padding:12px 0;
    border-bottom:1px solid #e5e5e5;
}

.hours-card p:last-child{
    border-bottom:none;
}

.trust-badges{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

.badge{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    padding:12px 22px;
    border-radius:30px;
    font-weight:600;
    backdrop-filter:blur(6px);
}

.stats{
    background:#08172f;
    padding:80px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-box{
    text-align:center;
    color:#fff;
}

.stat-box h2{
    color:#2f7cff;
    font-size:48px;
    margin-bottom:10px;
}

.stat-box p{
    color:#d9d9d9;
    font-size:18px;
}

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}