

:root{
    --primary:#12344d;
    --secondary:#3cb6b2;
    --light:#f7f9fb;
    --dark:#1e293b;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    color:#333;
    line-height:1.7;
}

.navbar{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.navbar-brand{
    font-weight:700;
    color:var(--primary)!important;
    font-size:1.5rem;
}

.nav-link{
    color:var(--dark)!important;
    font-weight:500;
}

.nav-link:hover{
    color:var(--secondary)!important;
}

.hero{
    min-height:100vh;
    background:
        linear-gradient(rgba(18,52,77,.55),rgba(18,52,77,.55)),
        url('img/2.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:white;
}

.hero h1{
    font-size:4rem;
    font-weight:700;
}

.hero p{
    font-size:1.3rem;
}

.btn-main{
    background:var(--secondary);
    border:none;
    color:white;
    padding:14px 30px;
    border-radius:50px;
}

.btn-main:hover{
    background:#2da09d;
}

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:0px;
}

.section-title h2{
    color:var(--primary);
    font-weight:700;
}

.bg-light-custom{
    background:var(--light);
}

.service-card{
    border:none;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-radius:15px;
    height:100%;
}

.price-card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-box{
    background:var(--primary);
    color:white;
    padding:50px;
    border-radius:20px;
}

footer{
    background:var(--primary);
    color:white;
    padding:30px 0;
}

.logo-circle{
    width:60px;
    height:60px;


  
    margin-right:10px;
}

@media(max-width:768px){

.hero h1{
    font-size:2.5rem;
}

.hero{
    text-align:center;
}

}

