/*==================================================
GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
GLOBAL
==================================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8fafc;
    overflow-x:hidden;
    padding-top:40px;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/*==================================================
FIXED HEADER
==================================================*/
.fixed-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
}

/*==================================================
TOP HEADER
==================================================*/
.top-bar{
    background:#0E4D64;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-left{
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.top-left span{
    display:flex;
    align-items:center;
    gap:8px;
}

.top-left i{
    color:#FFD54F;
}

.top-right{
    display:flex;
    justify-content:flex-end;
}

.btn-call{
    background:#ff5722;
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    display:inline-flex;
    align-items:center;
    gap:8px;
    animation:pulse 2s infinite;
    box-shadow:0 8px 20px rgba(255,87,34,.3);
}

.btn-call:hover{
    background:#e64a19;
    color:#fff;
    transform:translateY(-3px);
}

@keyframes pulse{

0%{
transform:scale(1);
box-shadow:0 0 0 0 rgba(255,87,34,.6);
}

70%{
transform:scale(1.05);
box-shadow:0 0 0 15px rgba(255,87,34,0);
}

100%{
transform:scale(1);
box-shadow:0 0 0 0 rgba(255,87,34,0);
}

}

/*==================================================
NAVBAR
==================================================*/
.navbar{
    background:#fff;
    padding:12px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.navbar-brand{
    font-size:34px;
    font-weight:700;
    color:#0E4D64 !important;
}

.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-nav{
    align-items:center;
}

.nav-item{
    margin-left:10px;
}

.nav-link{
    color:#333 !important;
    font-weight:600;
    padding:12px 15px !important;
    position:relative;
    transition:.3s;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:15px;
    bottom:5px;
    width:0;
    height:3px;
    background:#0E4D64;
    border-radius:20px;
    transition:.3s;
}

.nav-link:hover{
    color:#0E4D64 !important;
}

.nav-link:hover::after{
    width:calc(100% - 30px);
}

.nav-link.active{
    color:#0E4D64 !important;
}

.nav-link.active::after{
    width:calc(100% - 30px);
}

/*==================================================
SLIDER
==================================================*/
.carousel{
    margin:0;
}

.carousel-item{
    position:relative;
}

.carousel-item::before{
    content:'';
    position:absolute;
    inset:0;
   
    z-index:1;
}

#heroSlider .carousel-item::before{
     background:rgba(0,0,0,.45);
}

.hero-img{
    width:100%;
    height:90vh;
    object-fit:cover;
}

.carousel-caption{
    z-index:2;
    bottom:18%;
    text-align:left;
}

.carousel-caption h1{
    font-size:58px;
    font-weight:700;
    color:#fff;
    margin-bottom:20px;
    text-shadow:0 5px 15px rgba(0,0,0,.5);
}

.carousel-caption p{
    font-size:20px;
    color:#fff;
    margin-bottom:30px;
    max-width:650px;
    line-height:1.7;
}

.carousel-caption .btn{
    padding:14px 35px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.carousel-caption .btn-primary{
    background:#0E4D64;
    border:none;
}

.carousel-caption .btn-primary:hover{
    background:#08384a;
    transform:translateY(-3px);
}

.carousel-caption .btn-outline-light:hover{
    transform:translateY(-3px);
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:50px;
    height:50px;
    background-size:60%;
    background-color:rgba(255,255,255,.25);
    border-radius:50%;
    backdrop-filter:blur(6px);
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 6px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

body{
padding-top:100px;
}

.top-left{
justify-content:center;
}

.top-right{
justify-content:center;
margin-top:10px;
}

.nav-link{
padding:12px 0 !important;
}

.hero-img{
height:70vh;
}

.carousel-caption{
bottom:14%;
text-align:center;
}

.carousel-caption h1{
font-size:40px;
}

.carousel-caption p{
font-size:18px;
margin:auto auto 25px;
}

}

@media(max-width:768px){

/* body{
padding-top:100px;
} */

.top-bar{
text-align:center;
}

.top-left{
flex-direction:column;
gap:8px;
}

.navbar-brand{
font-size:28px;
}

.hero-img{
height:60vh;
}

.carousel-caption{
bottom:10%;
}

.carousel-caption h1{
font-size:30px;
}

.carousel-caption p{
font-size:15px;
line-height:1.6;
}

.carousel-caption .btn{
padding:10px 25px;
font-size:15px;
}

}

@media(max-width:576px){

body{
padding-top:100px;
}

.hero-img{
height:55vh;
}

.carousel-caption h1{
font-size:24px;
}

.carousel-caption p{
font-size:14px;
}

.carousel-control-prev,
.carousel-control-next{
display:none;
}

.btn-call{
padding:9px 20px;
font-size:14px;
}

}