/*======================================
        GOOGLE FONT
======================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*======================================
        RESET
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    color:#555;
    background:#fff;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

section{
    position:relative;
}

.section-padding{
    padding:100px 0;
}

/*======================================
        ROOT COLORS
======================================*/

:root{

--primary:#0c3c78;
--secondary:#ffb400;
--dark:#1d1d1d;
--light:#f8f9fa;
--white:#ffffff;
--text:#666666;
--border:#eeeeee;

}

/*======================================
        TYPOGRAPHY
======================================*/

h1,
h2,
h3,
h4,
h5,
h6{

font-weight:700;
color:var(--dark);
margin-bottom:15px;

}

h1{

font-size:58px;
line-height:1.2;

}

h2{

font-size:40px;

}

h3{

font-size:30px;

}

h4{

font-size:24px;

}

p{

color:var(--text);
margin-bottom:18px;

}

.section-title{

display:inline-block;
font-size:15px;
font-weight:600;
letter-spacing:2px;
text-transform:uppercase;
color:var(--secondary);
margin-bottom:15px;

}

/*======================================
        BUTTONS
======================================*/

.btn{

padding:14px 34px;
border-radius:50px;
font-weight:600;
transition:.4s;
box-shadow:none;

}

.btn-warning{

background:var(--secondary);
border:none;
color:#fff;

}

.btn-warning:hover{

background:var(--primary);
color:#fff;
transform:translateY(-3px);

}

.btn-outline-light{

border:2px solid #fff;
color:#fff;

}

.btn-outline-light:hover{

background:#fff;
color:var(--primary);

}

/*======================================
        HEADER
======================================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
padding:18px 0;
transition:.4s;

}

header.sticky{

background:#fff;
padding:10px 0;
box-shadow:0 5px 20px rgba(0,0,0,.08);

}

/*======================================
        LOGO
======================================*/

.logo{

height:65px;
transition:.3s;

}

header.sticky .logo{

height:55px;

}

/*======================================
        NAVIGATION
======================================*/

.navbar{

padding:0;

}

.navbar-brand{

padding:0;

}

.navbar-nav{

align-items:center;

}

.nav-item{

margin-left:18px;

}

.nav-link{

font-size:15px;
font-weight:600;
color:#fff;
position:relative;
padding:10px 5px !important;

}

header.sticky .nav-link{

color:var(--dark);

}

.nav-link:hover{

color:var(--secondary);

}

.nav-link.active{

color:var(--secondary);

}

/* Underline Animation */

.nav-link::after{

content:'';
position:absolute;
left:0;
bottom:0;
width:0;
height:2px;
background:var(--secondary);
transition:.4s;

}

.nav-link:hover::after{

width:100%;

}

/*======================================
        NAVBAR TOGGLER
======================================*/

.navbar-toggler{

border:none;
box-shadow:none;

}

.navbar-toggler:focus{

box-shadow:none;

}

/*======================================
        COMMON CLASSES
======================================*/

.shadow-box{

background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.text-primary{

color:var(--primary)!important;

}

.bg-primary{

background:var(--primary)!important;

}

.bg-light{

background:#f8f9fa!important;

}

.rounded-15{

border-radius:15px;

}

.rounded-20{

border-radius:20px;

}

/*======================================
        TRANSITIONS
======================================*/

.service-box,
.team-card,
.value-box,
.core-box,
.feature-box,
.vm-box{

transition:.4s;

}

.service-box:hover,
.team-card:hover,
.value-box:hover,
.core-box:hover,
.feature-box:hover,
.vm-box:hover{

transform:translateY(-8px);

}
/*======================================
        HERO SECTION
======================================*/

.hero{
    position:relative;
    background:url('../images/hero.png') center center/cover no-repeat;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
   background:linear-gradient(
    90deg,
    rgba(8,32,66,.82) 0%,
    rgba(8,32,66,.70) 45%,
    rgba(8,32,66,.45) 100%
    );
}
.navbar{
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(6px);
}

.navbar-brand{
    background:rgba(255,255,255,.85);
    padding:8px 15px;
    border-radius:10px;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero-subtitle{
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    color:#fff;
    font-size:30px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
    max-width:700px;
}

.hero p{
    color:#f1f1f1;
    font-size:18px;
    max-width:650px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    min-width:170px;
    text-align:center;
}

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

.hero h1,
.hero p,
.hero-subtitle,
.hero-buttons{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{

0%{
    opacity:0;
    transform:translateY(40px);
}

100%{
    opacity:1;
    transform:translateY(0);
}

}

/*======================================
        ABOUT INTRO
======================================*/

.company-intro{
    padding:100px 0;
    background:#fff;
}

.company-intro img{
    width:100%;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.company-intro img:hover{
    transform:scale(1.03);
}

.company-intro h2{
    margin-bottom:25px;
    color:var(--primary);
}

.company-intro p{
    margin-bottom:20px;
    font-size:16px;
}

/*======================================
        FEATURE BOXES
======================================*/

.feature-box{
    background:#fff;
    border:1px solid #ededed;
    border-radius:12px;
    text-align:center;
    padding:25px 15px;
    margin-bottom:20px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.feature-box i{
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:28px;
    margin-bottom:18px;
}

.feature-box h5{
    margin-bottom:0;
    font-size:18px;
}

.feature-box:hover{
    background:var(--primary);
    transform:translateY(-8px);
}

.feature-box:hover h5{
    color:#fff;
}

.feature-box:hover i{
    background:var(--secondary);
    color:#fff;
}

/*======================================
        COUNTER BOX
======================================*/

.counter-box{
    background:#fff;
    text-align:center;
    border-radius:12px;
    padding:30px;
    margin-top:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-top:4px solid var(--secondary);
}

.counter-box h2{
    color:var(--primary);
    font-size:42px;
    margin-bottom:8px;
}

.counter-box p{
    margin:0;
    font-weight:600;
}

/*======================================
        IMAGE STYLES
======================================*/

.img-fluid{
    max-width:100%;
    height:auto;
}

.shadow{
    box-shadow:0 20px 45px rgba(0,0,0,.12)!important;
}

.rounded{
    border-radius:15px!important;
}

/*======================================
        SECTION SPACING
======================================*/

.company-intro .row{
    align-items:center;
}

.company-intro .col-lg-6:last-child{
    padding-left:50px;
}

/*======================================
        SMALL DECORATION
======================================*/

.company-intro::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,180,0,.08);
    border-radius:50%;
    top:-60px;
    right:-60px;
    z-index:-1;
}

.company-intro::after{
    content:'';
    position:absolute;
    width:140px;
    height:140px;
    background:rgba(12,60,120,.05);
    border-radius:50%;
    bottom:30px;
    left:-40px;
    z-index:-1;
}
/*======================================
        SERVICES
======================================*/

.services{
    background:#f8f9fb;
}

.services .section-title{
    color:var(--secondary);
}

.services h2{
    color:var(--primary);
    margin-bottom:15px;
}

.services p{
    color:#666;
}

/*======================================
        SERVICE CARD
======================================*/

.service-box{

    background:#fff;
    padding:40px 30px;
    border-radius:15px;
    text-align:center;
    border:1px solid #ededed;
    overflow:hidden;
    position:relative;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.service-box::before{

    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:5px;
    background:var(--secondary);
    transition:.4s;

}

.service-box:hover::before{

    left:0;

}

.service-box:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.service-icon{

    width:90px;
    height:90px;
    line-height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:rgba(12,60,120,.08);
    transition:.4s;

}

.service-icon i{

    font-size:38px;
    color:var(--primary);

}

.service-box:hover .service-icon{

    background:var(--primary);

}

.service-box:hover .service-icon i{

    color:#fff;

}

.service-box h4{

    color:var(--primary);
    margin-bottom:15px;

}

.service-box p{

    margin-bottom:0;
    font-size:15px;

}

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

.core-services{

    padding:100px 0;
    background:#fff;

}

.core-services h2{

    color:var(--primary);

}

.core-box{

    background:linear-gradient(180deg,#ffffff,#f8f9fb);
    border-radius:15px;
    text-align:center;
    padding:35px 20px;
    border:1px solid #ececec;
    transition:.4s;

}

.core-box h4{

    color:var(--secondary);
    font-size:42px;
    margin-bottom:15px;

}

.core-box h5{

    font-size:19px;
    margin:0;
    color:var(--primary);

}

.core-box:hover{

    background:var(--primary);
    transform:translateY(-10px);

}

.core-box:hover h4{

    color:#fff;

}

.core-box:hover h5{

    color:#fff;

}

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

.why-us{

    padding:100px 0;
    background:#f8f9fb;

}

.why-us img{

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

}

.why-us h2{

    color:var(--primary);
    margin-bottom:25px;

}

.why-list{

    margin-top:25px;

}

.why-list li{

    margin-bottom:18px;
    font-size:17px;
    font-weight:500;
    color:#444;

}

.why-list li i{

    color:#28a745;
    margin-right:12px;
    font-size:18px;

}

.why-us .btn{

    margin-top:25px;

}

/*======================================
      CARD HOVER EFFECT
======================================*/

.service-box,
.core-box{

    cursor:pointer;

}

.service-box:hover h4,
.core-box:hover h5{

    transition:.3s;

}

/*======================================
      BACKGROUND SHAPES
======================================*/

.services::before{

    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,180,0,.05);
    top:-80px;
    right:-100px;

}

.services::after{

    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(12,60,120,.05);
    bottom:-60px;
    left:-60px;

}

.core-services::before{

    content:'';
    position:absolute;
    width:160px;
    height:160px;
    background:rgba(255,180,0,.05);
    border-radius:50%;
    top:40px;
    left:-60px;

}

.why-us::after{

    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(12,60,120,.05);
    right:-70px;
    bottom:-80px;

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

.about{
    padding:100px 0;
    background:#ffffff;
    position:relative;
}

.about h2{
    color:var(--primary);
    margin-bottom:20px;
}

.about p{
    margin-bottom:18px;
    color:#666;
}

.about img{
    border-radius:15px;
    transition:.4s;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.about img:hover{
    transform:scale(1.03);
}

.about::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,180,0,.05);
    border-radius:50%;
    top:-60px;
    right:-70px;
}

.about::after{
    content:'';
    position:absolute;
    width:170px;
    height:170px;
    background:rgba(12,60,120,.05);
    border-radius:50%;
    bottom:-50px;
    left:-60px;
}

/*======================================
        COUNTER BOX
======================================*/

.counter-box{

    background:#fff;
    border-radius:15px;
    padding:35px;
    text-align:center;
    margin-top:20px;
    border-top:4px solid var(--secondary);
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s;

}

.counter-box h2{

    color:var(--primary);
    font-size:46px;
    margin-bottom:10px;

}

.counter-box p{

    margin:0;
    font-weight:600;
    color:#666;

}

.counter-box:hover{

    transform:translateY(-8px);

}

/*======================================
        VISION / MISSION
======================================*/

.vision-mission{

    background:#f8f9fb;
    padding:100px 0;

}

.vm-box{

    background:#fff;
    border-radius:15px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-top:5px solid var(--secondary);
    height:100%;
    transition:.4s;

}

.vm-box i{

    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:34px;
    margin-bottom:25px;

}

.vm-box h3{

    color:var(--primary);
    margin-bottom:20px;

}

.vm-box p{

    margin:0;
    color:#666;

}

.vm-box:hover{

    transform:translateY(-10px);

}

.vm-box:hover i{

    background:var(--secondary);

}

/*======================================
        CORE VALUES
======================================*/

.values{

    padding:100px 0;
    background:#ffffff;

}

.values h2{

    color:var(--primary);

}

.value-box{

    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    border:1px solid #ededed;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;

}

.value-box i{

    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:rgba(12,60,120,.08);
    color:var(--primary);
    font-size:30px;
    margin-bottom:20px;

}

.value-box h5{

    color:var(--primary);
    margin-bottom:15px;

}

.value-box p{

    margin-bottom:0;
    color:#666;

}

.value-box:hover{

    background:var(--primary);
    transform:translateY(-8px);

}

.value-box:hover h5,
.value-box:hover p{

    color:#fff;

}

.value-box:hover i{

    background:#fff;
    color:var(--primary);

}

/*======================================
            TEAM
======================================*/

.team{

    background:#f8f9fb;
    padding:100px 0;

}

.team h2{

    color:var(--primary);

}

.team-card{

    background:#fff;
    border-radius:15px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    border-top:4px solid var(--secondary);

}

.team-card h4{

    color:var(--primary);
    margin-bottom:10px;

}

.team-card span{

    display:block;
    color:var(--secondary);
    font-weight:600;
    margin-bottom:18px;

}

.team-card hr{

    margin:20px 0;
    border-color:#eee;

}

.team-card p{

    margin-bottom:12px;
    color:#666;

}

.team-card i{

    color:var(--primary);
    margin-right:10px;

}

.team-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.team-card:hover{

    border-top:4px solid var(--primary);

}

/*======================================
      SECTION DECORATION
======================================*/

.team::before{

    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,180,0,.05);
    top:-80px;
    left:-100px;

}

.values::after{

    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(12,60,120,.05);
    bottom:-60px;
    right:-60px;

}
/*======================================
        CONTACT SECTION
======================================*/

.contact{
    padding:100px 0;
    background:#ffffff;
    position:relative;
}

.contact-info{
    background:var(--primary);
    color:#fff;
    padding:45px;
    border-radius:15px;
    height:100%;
}

.contact-info h3{
    color:#fff;
    margin-bottom:30px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:30px;
}

.contact-item i{
    width:55px;
    height:55px;
    line-height:55px;
    text-align:center;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:20px;
    margin-right:20px;
}

.contact-item h5{
    color:#fff;
    margin-bottom:5px;
}

.contact-item p{
    color:#eee;
    margin:0;
}

.contact form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact .form-control{
    height:55px;
    border-radius:8px;
    border:1px solid #ddd;
    box-shadow:none;
    padding:15px;
}

.contact textarea.form-control{
    height:160px;
    resize:none;
}

.contact .form-control:focus{
    border-color:var(--secondary);
    box-shadow:none;
}

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

iframe{
    display:block;
    border:0;
}

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

footer{
    background:#071f3d;
    color:#fff;
    padding:70px 0 20px;
}

.footer-logo{
    max-height:70px;
    margin-bottom:20px;
}

footer p{
    color:#d7d7d7;
}

footer h4{
    color:#fff;
    margin-bottom:25px;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#d7d7d7;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--secondary);
    padding-left:6px;
}

footer hr{
    margin:40px 0 20px;
    border-color:rgba(255,255,255,.15);
}

/*======================================
        WHATSAPP BUTTON
======================================*/

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:60px;
    font-size:30px;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
    color:#fff;
}

/*======================================
        SCROLL TOP
======================================*/

.scroll-top{
    position:fixed;
    right:25px;
    bottom:100px;
    width:50px;
    height:50px;
    background:var(--secondary);
    color:#fff;
    border-radius:50%;
    line-height:50px;
    text-align:center;
    font-size:18px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:998;
}

.scroll-top.show{
    opacity:1;
    visibility:visible;
}

.scroll-top:hover{
    background:var(--primary);
    color:#fff;
}

/*======================================
        IMAGE HOVER
======================================*/

img{
    transition:.4s;
}

img:hover{
    transform:scale(1.02);
}

/*======================================
        SECTION TITLES
======================================*/

.section-title{
    position:relative;
}

.section-title::after{
    content:'';
    display:block;
    width:60px;
    height:3px;
    background:var(--secondary);
    margin:10px auto 0;
}

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

@media (max-width:991px){

header{
    background:#fff;
    padding:10px 0;
}

.logo{
    height:55px;
}

.navbar-collapse{
    background:#fff;
    margin-top:15px;
    border-radius:10px;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.nav-item{
    margin:10px 0;
}

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

.hero{
    text-align:center;
}

.hero h1{
    font-size:42px;
}

.hero p{
    margin:auto auto 30px;
}

.hero-buttons{
    justify-content:center;
}

.company-intro .col-lg-6:last-child{
    padding-left:12px;
    margin-top:40px;
}

.contact-info{
    margin-bottom:30px;
}

}

/*======================================
        TABLET
======================================*/

@media (max-width:768px){

.section-padding{
    padding:70px 0;
}

.hero h1{
    font-size:24px;
}

.hero p{
    font-size:16px;
}

h2{
    font-size:30px;
}

.counter-box{
    margin-bottom:20px;
}

.contact form{
    padding:25px;
}

.team-card,
.service-box,
.value-box,
.vm-box,
.core-box{
    padding:30px 20px;
}

}

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

@media (max-width:576px){

.hero{
    min-height:90vh;
}

.hero h1{
    font-size:28px;
}

.hero-buttons .btn{
    width:100%;
}

.contact-info{
    padding:30px;
}

footer{
    text-align:center;
}

.footer-logo{
    margin:auto auto 20px;
}

.whatsapp{
    width:55px;
    height:55px;
    line-height:55px;
    font-size:26px;
}

.scroll-top{
    width:45px;
    height:45px;
    line-height:45px;
}

}

/*======================================
        SIMPLE FADE ANIMATION
======================================*/

@keyframes fadeInUp{

0%{
    opacity:0;
    transform:translateY(30px);
}

100%{
    opacity:1;
    transform:translateY(0);
}

}

.service-box,
.core-box,
.team-card,
.value-box,
.vm-box,
.feature-box{
    animation:fadeInUp .8s ease;
}