/* =========================================
   GLOBAL
========================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Segoe UI, Tahoma, sans-serif;
    overflow-x: hidden;
    color: rgba(50, 50, 50, 0.85);
}
body::before{
    content:"";

    position:fixed;

    width:350px;
    height:350px;

    top:-100px;
    right:-100px;

    /* background:#198754; */
    background:#fa9539;

    opacity:.6;

    filter:blur(120px);

    border-radius:50%;

    pointer-events:none;
}
body::after{
    content:"";

    position:fixed;

    width:400px;
    height:400px;

    bottom:-150px;
    left:-150px;

    /* background:#0d6efd; */
     background:#0d6efd;

    opacity:.5;

    filter:blur(150px);

    border-radius:50%;

    pointer-events:none;
}
.brand-text{
    color: rgba(50,50,50, 0.85);
}
/* h1,h2,h3,h4,h5,h6{
    color: rgba(25,25,25, 0.92);
} */
.navbar-nav .nav-link{
    color:  #004370;
    font-weight:500;
    margin: 2px;
     border-radius: 10px;
      border: 1px solid #004370;
}

.navbar-nav .nav-link:hover{
    color:#004370;
    font-weight:500;
    border: 2px solid #004370;
    border-radius: 10px;
    margin: 2px;
}
/* p{
    color: rgba(30,30,30, 0.8);
} */
/* =========================================
   NAVBAR
========================================= */
.navbar-logo{
    height:50px;
    width:auto;
}

/* If the logo is horizontal:
.navbar-logo{
    height:60px;
} */

.footer-logo{
    height:80px;
    width:auto;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    transition: all .3s ease;
}

/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, .65),rgba(0, 0, 0, .65)),url('../../patterns/curve-line.svg'),url('../../images/hero.jpg');

    /* background-size: cover;
    background-position: center; */
    background-size:
        auto,
        250px,
        cover;

    background-position:
        center,
        center,
        center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    color: #fff;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
}


/* =========================================
   ABOUT SECTION
========================================= */
#about{
    position: relative;
    overflow: hidden;
}

#about::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;

    width: 100%;
    height: 500px;

    background: url('../../patterns/world-map.svg') no-repeat center;
    background-size: contain;
    opacity: .5;

    z-index: 0;
    pointer-events: none;
}

/* Keep all content above the map */
#about .container{
    position: relative;
    z-index: 1;
}
/* #about{
    background:
        url('../../patterns/world-map.svg') no-repeat center;
    background-size: contain;
} */
/* =========================================
   ABOUT SECTION
========================================= */
 
#services{
    position:relative;
}

#services::before{
    content:"";

    position:absolute;
    inset:0;

    background:url('../../patterns/geometric.svg');

    /* opacity:.03; */
}



/* =========================================
   SECTION TITLE
========================================= */

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #F5951D;
    display: block;
    margin: 10px auto 0;
    border-radius: 50px;
}

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

.service-card {
    transition: .35s ease;
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
}

/* =========================================
   BILLBOARD SECTION
========================================= */

.billboard-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .12);
}

.billboard-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .6s ease;
}

/* Bottom Gradient Overlay */

.billboard-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 25px;

    color: #fff;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, .92)
        );

    transition: all .4s ease;
}

.billboard-overlay h5 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.billboard-overlay p {
    margin-bottom: 6px;
    font-size: .95rem;
}

.billboard-overlay i {
    margin-right: 5px;
}

/* Hidden button initially */

.view-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: .4s ease;
}

/* Hover Effects */

.billboard-card:hover img {
    transform: scale(1.08);
}

.billboard-card:hover .billboard-overlay {
    height: 100%;
    background: rgba(0, 0, 0, .75);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.billboard-card:hover .view-btn {
    opacity: 1;
    transform: translateY(0);
}

#billboards{
    position:relative;
}

#billboards::after{
    content:"";

    position:absolute;

    bottom:70px;
    right:20px;

    width:100%;
    height:100%;

    background:
        url('../../patterns/billboard-outline.svg')
        repeat-y center;

    background-size:contain;

   opacity:.1;
 /* z-index:-1; */
    pointer-events:none;
}



/* =========================================
   STATS
========================================= */

.stats {
    background: #F5951D;
    color: white;
}

.stats h2 {
    font-weight: 700;
}

/* =========================================
   CONTACT
========================================= */

.contact-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .08);
}
#contact{
    position:relative;
}

#contact::before{
    content:"";

    position:absolute;

    left:-250px;
    top:0;

    width:100%;
    height:500px;

    background:
        url('../../patterns/map-pattern.png') no-repeat center;;

     opacity:.04; 
   /* z-index: -1; */
    pointer-events:none;
}

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

footer {
    background: #111827;
    color: white;
}

/* =========================================
   WHATSAPP FLOAT
========================================= */

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;

    width: 30px;
    height: 30px;

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

    border-radius: 50%;
    font-size: 28px;

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

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

@media (max-width: 768px) {

    .hero {
        text-align: center;
        min-height: 85vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .billboard-card img {
        height: 260px;
    }

    .billboard-overlay {
        padding: 20px;
    }

    .view-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE STICKY FOOTER */

.mobile-footer-nav{

    position:fixed;

    left:0;
    right:0;
    bottom:0;

    height:65px;

    background:#fff;

    box-shadow:0 -2px 15px rgba(0,0,0,.15);

    display:none;

    z-index:9999;
}

.mobile-footer-nav a{

    border: solid 1px  #00437052 ;
    background-color: #01360c11;
    margin: 2px;
    border-radius: 5px;

    
    flex:1;

    text-align:center;

    text-decoration:none;

    color:rgba(0,0,0,.85);

    font-size:12px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transition:.3s;
}



.mobile-footer-nav a i{

    font-size:18px;

    margin-bottom:3px;
}

.mobile-footer-nav a:hover{

    color:#F44E37;

    transform:translateY(-2px);
}

@media(max-width:768px){

    .mobile-footer-nav{
        display:flex;
    }

    body{
        padding-bottom:75px;
    }

}
/* ==================================
   CALL BUTTON
================================== */

.call-btn{
    display:flex;
    align-items:center;
    gap:8px;

    color:#111 !important;
    font-weight:600;
    text-decoration:none;
}

/* Blue Circle */

.call-icon-wrapper{

    position:relative;

    width:38px;
    height:38px;

    border-radius:50%;

    background:#1A416E;

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

    color:#fff;

    overflow:visible;
}

/* Phone Animation */

.call-icon-wrapper i{

    font-size:18px;

    animation:ring 1.2s infinite;
}

/* Wave Effect */

.call-icon-wrapper::before,
.call-icon-wrapper::after{

    content:"";

    position:absolute;

    width:100%;
    height:100%;

    border-radius:50%;

    background:rgba(1, 25, 44, 0.7);

    z-index:-1;

    animation:wave 2s infinite;
}

.call-icon-wrapper::after{
    animation-delay:1s;
}

/* Ringing Phone */

@keyframes ring{

    0%{
        transform:rotate(0deg);
    }

    10%{
        transform:rotate(15deg);
    }

    20%{
        transform:rotate(-15deg);
    }

    30%{
        transform:rotate(15deg);
    }

    40%{
        transform:rotate(-15deg);
    }

    50%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(0deg);
    }
}

/* Expanding Wave */

@keyframes wave{

    0%{
        transform:scale(1);
        opacity:.7;
    }

    70%{
        transform:scale(2.2);
        opacity:0;
    }

    100%{
        transform:scale(2.2);
        opacity:0;
    }
}