body{
    font-family: 'Poppins', sans-serif;
}

/* Transparent Navbar */

.custom-navbar{
    background: transparent;
    transition: .5s ease;
    padding: 15px 0;
}

.custom-navbar.scrolled{
    background:#006bb6;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    padding:8px 0;
}

/* Logo */

.logo{
    width:90px;
    transition:.4s;
}

.custom-navbar.scrolled .logo{
    width:70px;
}

/* Brand */

.brand-name{
    color:#006bb6;
    font-size:22px;
    font-weight:700;
    margin-left:10px;
}

.custom-navbar.scrolled .brand-name{
    color:#006bb6;
}

/* Menu */

.nav-link{
    color:#006bb6 !important;
    font-weight:600;
    margin-left:15px;
    position:relative;
}

.custom-navbar.scrolled .nav-link{
    color:#333 !important;
}

/* Hover Line */

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:3px;
    background:#f4c542;
    transition:.4s;
}

.nav-link:hover::after{
    width:100%;
}

/* Mobile */

@media(max-width:991px){

.custom-navbar{
    background:#fff;
}

.brand-name{
    color:#006bb6;
    font-size:16px;
}

.nav-link{
    color:#333 !important;
}

.logo{
    width:65px;
}

.hero-content h1{
    font-size:32px;
}

/* Appointment Button */

.appointment-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 28px;
    background:linear-gradient(135deg,#0077C8,#00AEEF);
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    border-radius:50px;
    transition:all .4s ease;
    box-shadow:0 8px 20px rgba(0,119,200,.25);
}

.appointment-btn i{
    font-size:18px;
}

.appointment-btn:hover{
    background:linear-gradient(135deg,#005B99,#0077C8);
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,119,200,.35);
}

.appointment-btn:active{
    transform:scale(.98);
}
}

/* HERO */

#hero{

position:relative;

}

.hero-img{

height:100vh;

object-fit:cover;

}

.overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,40,80,.55);

}

.hero-content{

bottom:50%;

transform:translateY(50%);

text-align:left;

max-width:700px;

animation:fadeUp 1s;

}

.hero-content h5{

font-size:24px;

color:#F9C74F;

font-weight:700;

margin-bottom:15px;

}

.hero-content h1{

font-size:62px;

font-weight:700;

line-height:1.2;

margin-bottom:20px;

}

.hero-content p{

font-size:20px;

margin-bottom:30px;

line-height:32px;

}

.hero-btn{

display:inline-block;

padding:14px 32px;

background:#0077C8;

color:#fff;

text-decoration:none;

border-radius:40px;

font-weight:600;

margin-right:10px;

transition:.4s;

}

.hero-btn:hover{

background:#005f9e;

color:#fff;

transform:translateY(-4px);

}

.hero-btn-outline{

display:inline-block;

padding:14px 32px;

border:2px solid #fff;

color:#fff;

text-decoration:none;

border-radius:40px;

font-weight:600;

transition:.4s;

}

.hero-btn-outline:hover{

background:#fff;

color:#0077C8;

}

.carousel-caption{

left:8%;

right:auto;

}

.carousel-control-prev-icon,

.carousel-control-next-icon{

width:55px;

height:55px;

background-size:60%;

border-radius:50%;

background-color:rgba(255,255,255,.25);

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(80px);

}

to{

opacity:1;

transform:translateY(50%);

}

}

@media(max-width:991px){

.hero-img{

height:80vh;

}

.hero-content{

text-align:center;

left:10%;

right:10%;

bottom:40%;

}

.hero-content h1{

font-size:34px;

}

.hero-content h5{

font-size:18px;

}

.hero-content p{

font-size:16px;

line-height:28px;

}

.hero-btn,

.hero-btn-outline{

display:block;

margin:10px auto;

width:220px;

}

}

/*=========================
ABOUT SECTION
=========================*/

.about-section{
    background:linear-gradient(to bottom,#f8fcff,#ffffff);
}

.about-tag{
    background:#e8f5ff;
    color:#0077c8;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    display:inline-block;
}

.about-title{
    font-size:40px;
    font-weight:700;
    color:#0b3d91;
    margin-bottom:20px;
}

.about-text{
    color:#666;
    font-size:17px;
    line-height:30px;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.experience-box{
    position:absolute;
    bottom:20px;
    left:20px;
    background:#0077c8;
    color:#fff;
    padding:20px;
    border-radius:15px;
    text-align:center;
    width:170px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.experience-box h3{
    font-size:36px;
    font-weight:700;
    margin:0;
}

.experience-box p{
    margin:5px 0 0;
    font-size:15px;
}

.feature-item{
    display:flex;
    align-items:center;
    margin-bottom:15px;
}

.feature-item i{
    color:#0077c8;
    margin-right:10px;
    font-size:20px;
}

.feature-item span{
    font-size:17px;
    color:#333;
    font-weight:600;
}

.about-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 32px;
    background:linear-gradient(90deg,#0077c8,#00b4ff);
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
}

.about-btn:hover{
    background:#005ea6;
    color:#fff;
    transform:translateY(-3px);
}

/*=========================
MOBILE
=========================*/

@media(max-width:991px){

.about-title{
    font-size:30px;
}

.about-text{
    font-size:16px;
}

.experience-box{
    width:140px;
    padding:15px;
}

.experience-box h3{
    font-size:28px;
}

}

@media(max-width:576px){

.about-title{
    font-size:26px;
}

.feature-item span{
    font-size:15px;
}

.experience-box{
    position:relative;
    left:0;
    bottom:0;
    margin-top:20px;
}

}

/*==========================
SERVICES
==========================*/

.services{

background:#f6fbff;

}

.section-title span{

display:inline-block;
padding:8px 22px;
background:#e9f7ff;
border-radius:30px;
font-weight:700;
color:#0077c8;
margin-bottom:15px;

}

.section-title h2{

font-size:42px;
font-weight:700;
color:#0a3b70;

}

.section-title p{

max-width:720px;
margin:auto;
font-size:17px;
color:#666;

}

/* CARD */

.service-box{

background:#fff;
border-radius:25px;
overflow:hidden;
transition:.45s;
box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.image-box{

position:relative;
overflow:hidden;

}

.image-box img{

width:100%;
height:260px;
object-fit:cover;
transition:.6s;

}

.overlay{

position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(180deg,
transparent,
rgba(0,119,200,.75));

opacity:0;
transition:.5s;

}

.icon{

position:absolute;
bottom:20px;
left:20px;

width:65px;
height:65px;

border-radius:50%;

background:#fff;

display:flex;
justify-content:center;
align-items:center;

font-size:28px;

color:#0077c8;

transition:.4s;

}

.content{

padding:28px;

}

.content h4{

font-weight:700;
margin-bottom:15px;

}

.content p{

color:#666;
line-height:28px;

}

.content a{

text-decoration:none;
font-weight:700;
color:#0077c8;

}

.service-box:hover{

transform:translateY(-15px);

box-shadow:0 20px 45px rgba(0,119,200,.22);

}

.service-box:hover img{

transform:scale(1.12);

}

.service-box:hover .overlay{

opacity:1;

}

.service-box:hover .icon{

background:#0077c8;
color:#fff;
transform:rotate(360deg);

}

/* MOBILE */

@media(max-width:768px){

.section-title h2{

font-size:30px;

}

.image-box img{

height:320px;

}

}

/*=========================
WHY CHOOSE US
=========================*/

.why-choose{

background:#f8fbff;

}

.why-content{

padding:80px 70px;
background:linear-gradient(135deg,#0077C8,#00AEEF);
color:#fff;
height:100%;

}

.section-tag{

display:inline-block;
padding:8px 20px;
background:#ffffff22;
border-radius:30px;
font-weight:600;
margin-bottom:20px;

}

.why-content h2{

font-size:42px;
font-weight:700;
margin-bottom:15px;

}

.title-line{

width:90px;
height:4px;
background:#FFD54F;
margin-bottom:30px;
border-radius:10px;

}

.why-content p{

font-size:17px;
line-height:30px;
margin-bottom:25px;

}

.why-content h4{

font-weight:700;
margin-bottom:25px;

}

.why-list{

list-style:none;
padding:0;

}

.why-list li{

margin-bottom:18px;
font-size:17px;

}

.why-list i{

color:#FFD54F;
margin-right:10px;

}

.why-btn{

display:inline-block;
margin-top:30px;
padding:14px 35px;
background:#FFD54F;
color:#0b3d91;
font-weight:700;
text-decoration:none;
border-radius:40px;
transition:.4s;

}

.why-btn:hover{

background:#fff;
color:#0077C8;

}

.why-image{

height:100%;

}

.why-image img{

width:100%;
height:100%;
min-height:650px;
object-fit:cover;
transition:.5s;

}

.why-image:hover img{

transform:scale(1.05);

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.why-content{

padding:50px 30px;

}

.why-content h2{

font-size:30px;

}

.why-image img{

min-height:350px;

}

}

@media(max-width:576px){

.why-content{

padding:40px 20px;

}

.why-content h2{

font-size:26px;

}

.why-content p{

font-size:15px;

}

.why-list li{

font-size:15px;

}

}

/*=========================
FOOTER
==========================*/

.footer{

background:#003b73;
color:#fff;
padding:70px 0 20px;

}

.footer-logo{

width:100px;
margin-bottom:20px;

}

.footer h3{

font-size:24px;
font-weight:700;
margin-bottom:15px;

}

.footer h4{

margin-bottom:25px;
font-size:22px;
font-weight:700;
position:relative;

}

.footer h4:after{

content:"";
position:absolute;
left:0;
bottom:-8px;
width:60px;
height:3px;
background:#FFD54F;

}

.footer p{

line-height:28px;
color:#ddd;

}

.footer ul{

padding:0;
list-style:none;

}

.footer ul li{

margin-bottom:14px;

}

.footer ul li a{

color:#ddd;
text-decoration:none;
transition:.3s;

}

.footer ul li a:hover{

color:#FFD54F;
padding-left:8px;

}

.contact-item{

display:flex;
align-items:flex-start;
margin-bottom:20px;

}

.contact-item i{

width:45px;
height:45px;
background:#0077C8;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-right:15px;
color:#fff;

}

.contact-item span,
.contact-item a{

color:#ddd;
text-decoration:none;
line-height:28px;

}

.contact-item a:hover{

color:#FFD54F;

}

.social-icons{

margin-top:25px;

}

.social-icons a{

width:42px;
height:42px;
background:#0077C8;
display:inline-flex;
justify-content:center;
align-items:center;
border-radius:50%;
margin-right:10px;
color:#fff;
transition:.4s;

}

.social-icons a:hover{

background:#FFD54F;
color:#003b73;
transform:translateY(-5px);

}

.footer hr{

border-color:rgba(255,255,255,.2);
margin:35px 0 20px;

}

.copyright{

text-align:center;
color:#ccc;
font-size:15px;

}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.footer{

text-align:center;

}

.contact-item{

justify-content:center;
text-align:left;

}

.footer h4:after{

left:50%;
transform:translateX(-50%);

}

}

/*=========================
 GOOGLE MAP
=========================*/

.map-section{

padding:80px 0;
background:#f8fbff;

}

.section-title span{

display:inline-block;
padding:8px 22px;
background:#eaf6ff;
color:#0077C8;
font-weight:700;
border-radius:30px;
margin-bottom:15px;

}

.section-title h2{

font-size:40px;
font-weight:700;
color:#003b73;
margin-bottom:15px;

}

.section-title p{

color:#666;
font-size:17px;

}

.map-box{

overflow:hidden;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.map-box iframe{

display:block;
width:100%;
border:0;

}

/*=========================
 MOBILE
=========================*/

@media(max-width:768px){

.map-section{

padding:50px 15px;

}

.section-title h2{

font-size:28px;

}

.map-box iframe{

height:350px;

}

}

/*==========================
Floating Buttons
===========================*/

.call-btn,
.whatsapp-btn{

position:fixed;

width:60px;
height:60px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:28px;

color:#fff;

text-decoration:none;

box-shadow:0 8px 20px rgba(0,0,0,.25);

z-index:99999;

transition:.4s ease;

animation:pulse 2s infinite;

}

/* Call Button */

.call-btn{

left:20px;

bottom:25px;

background:#0077C8;

}

/* WhatsApp Button */

.whatsapp-btn{

right:20px;

bottom:25px;

background:#25D366;

}

/* Hover Effect */

.call-btn:hover{

background:#005ea8;

color:#fff;

transform:scale(1.12);

}

.whatsapp-btn:hover{

background:#1ebe5d;

color:#fff;

transform:scale(1.12);

}

/* Pulse Animation */

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(0,119,200,.5);

}

70%{

box-shadow:0 0 0 18px rgba(0,119,200,0);

}

100%{

box-shadow:0 0 0 0 rgba(0,119,200,0);

}

}

/*==========================
Mobile Responsive
===========================*/

@media(max-width:768px){

.call-btn,
.whatsapp-btn{

width:55px;

height:55px;

font-size:24px;

}

.call-btn{

left:15px;

bottom:20px;

}

.whatsapp-btn{

right:15px;

bottom:20px;

}

}