/*==================================================
Dr. KVS Solutions Pvt. Ltd.
Professional Corporate Theme
===================================================*/

:root{
    --primary:#0B4F8A;
    --secondary:#0FAF8F;
    --accent:#F5A623;
    --dark:#1F2937;
    --light:#F8F9FA;
    --white:#ffffff;
    --text:#555555;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--text);
    line-height:1.8;
    overflow-x:hidden;
}

/*==========================
Navbar
==========================*/

.navbar{
    background:rgba(11,79,138,.95);
    padding:15px 0;
    transition:.4s;
    box-shadow:0 3px 15px rgba(0,0,0,.12);
}

.navbar-brand{
    font-size:28px;
    font-weight:700;
    color:#fff !important;
}

.navbar-brand i{
    color:var(--accent);
    margin-right:8px;
}

.nav-link{
    color:#fff !important;
    font-weight:500;
    margin-left:20px;
    transition:.3s;
}

.nav-link:hover{
    color:var(--accent)!important;
}

.navbar .btn-warning{
    border-radius:30px;
    padding:10px 22px;
    font-weight:600;
}

/*==========================
Hero
==========================*/

.hero{

background:linear-gradient(rgba(11,79,138,.88),
rgba(11,79,138,.88)),
url("../images/hero.jpg");

background-size:cover;
background-position:center;

padding:170px 0 120px;

color:#fff;

}

.hero h5{

font-size:20px;

color:#ffd54f;

margin-bottom:15px;

}

.hero h1{

font-size:56px;

font-weight:700;

line-height:1.3;

margin-bottom:20px;

}

.hero p{

font-size:20px;

margin-bottom:35px;

}

.hero img{

animation:float 5s infinite ease-in-out;

max-width:100%;

}

.hero .btn{

padding:14px 30px;

border-radius:30px;

font-weight:600;

}

.btn-primary{

background:var(--secondary);

border:none;

}

.btn-primary:hover{

background:#0b8d73;

}

.btn-outline-light:hover{

color:var(--primary);

}

/*==========================
Section Heading
==========================*/

section{

padding:80px 0;

}

section h2{

font-size:40px;

font-weight:700;

color:var(--primary);

margin-bottom:20px;

}

section p{

font-size:17px;

}

/*==========================
About
==========================*/

.about img{

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.about ul{

list-style:none;

margin-top:25px;

}

.about ul li{

padding:10px 0;

font-size:18px;

}

.about ul li::before{

content:"✔";

color:green;

font-weight:bold;

margin-right:10px;

}

/*==========================
Counter
==========================*/

.counter-section{

background:var(--primary);

color:#fff;

}

.counter-section h2{

font-size:55px;

font-weight:700;

color:#fff;

}

.counter-section p{

font-size:18px;

}

/*==========================
Services
==========================*/

.service-box{

background:#fff;

padding:35px;

border-radius:12px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.4s;

height:100%;

text-align:center;

}

.service-box:hover{

transform:translateY(-10px);

box-shadow:0 20px 35px rgba(0,0,0,.15);

}

.service-box i{

font-size:55px;

color:var(--secondary);

margin-bottom:20px;

}

.service-box h4{

color:var(--primary);

font-weight:600;

margin-bottom:15px;

}

/*==========================
Why Us
==========================*/

.why-us{

background:#f5f8fc;

}

.why-us ul{

list-style:none;

}

.why-us li{

padding:12px 0;

font-size:18px;

}

.why-us li::before{

content:"✓";

color:green;

font-weight:bold;

margin-right:12px;

}

/*==========================
Director
==========================*/

.bg-light{

background:#f8f9fa !important;

}

.rounded-circle{

border:8px solid white;

box-shadow:0 10px 25px rgba(0,0,0,.15);

}

/*==========================
Contact
==========================*/

form{

background:#fff;

padding:30px;

border-radius:12px;

box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.form-control{

border-radius:10px;

padding:15px;

border:1px solid #ddd;

}

.form-control:focus{

border-color:var(--primary);

box-shadow:none;

}

textarea{

resize:none;

}

button.btn-primary{

padding:12px 35px;

}

/*==========================
Footer
==========================*/

footer{

background:var(--dark);

color:#fff;

padding:40px 0;

}

footer h4{

color:#fff;

margin-bottom:10px;

}

footer p{

color:#d5d5d5;

margin-bottom:6px;

}

/*==========================
WhatsApp Button
==========================*/

.whatsapp{

position:fixed;

bottom:25px;

right:25px;

width:60px;

height:60px;

background:#25D366;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

border-radius:50%;

text-decoration:none;

box-shadow:0 10px 20px rgba(0,0,0,.3);

transition:.3s;

z-index:999;

}

.whatsapp:hover{

transform:scale(1.1);

color:#fff;

}

/*==========================
Scroll to Top
==========================*/

#topBtn{

position:fixed;

bottom:100px;

right:25px;

display:none;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:var(--primary);

color:#fff;

font-size:20px;

cursor:pointer;

box-shadow:0 10px 20px rgba(0,0,0,.3);

transition:.3s;

z-index:999;

}

#topBtn:hover{

background:var(--secondary);

}

/*==========================
Animations
==========================*/

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0px);

}

}

.fade-up{

animation:fadeUp 1s ease;

}

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

/*==========================
Responsive
==========================*/

@media (max-width:991px){

.hero{

padding:140px 0 80px;

text-align:center;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:18px;

}

.navbar-brand{

font-size:22px;

}

section h2{

font-size:32px;

}

}

@media (max-width:576px){

.hero h1{

font-size:30px;

}

.hero p{

font-size:16px;

}

.hero .btn{

display:block;

width:100%;

margin-bottom:15px;

}

.counter-section h2{

font-size:38px;

}

.service-box{

margin-bottom:20px;

}

}

.modal-content{
    border-radius:15px;
    border:none;
    overflow:hidden;
}

.modal-header{
    background:#0B4F8A !important;
}

.modal-header h4{
    color:#fff;
    font-weight:600;
}

.modal-body h5{
    color:#0B4F8A;
    margin-top:20px;
}

.modal-body ul{
    padding-left:20px;
}

.modal-body li{
    margin-bottom:8px;
}

.modal-footer{
    background:#f8f9fa;
}