/*=========================
TOP BAR
==========================*/

.top-bar{
    background:#0b1f3a;
    color:#fff;
    font-size:14px;
    padding:8px 0;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
    margin-right:15px;
    transition:.3s;
}

.top-bar a:hover{
    color:#ff3c00;
}

.top-right a{
    margin-left:15px;
}

/*=========================
NAVBAR
==========================*/

.navbar{
    background:#fff;
    padding:15px 0;
    transition:.4s;
}

.navbar-brand{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.navbar-brand img{
    width:70px;
    margin-right:12px;
}

.logo-text h3{
    margin:0;
    color:#0b1f3a;
    font-weight:800;
    font-size:28px;
}

.logo-text small{
    color:#777;
}

.nav-link{
    font-weight:600;
    margin-left:20px;
    color:#333 !important;
    transition:.3s;
}

.nav-link:hover{
    color:#e31b23 !important;
}

.nav-link.active{
    color:#e31b23 !important;
}

.btn-danger{
    background:#e31b23;
    border:none;
    border-radius:50px;
    padding:12px 28px;
}

.btn-danger:hover{
    background:#b30000;
}

@media(max-width:991px){

.top-bar{
display:none;
}

.logo-text h3{
font-size:22px;
}

.nav-link{
margin-left:0;
padding:12px 0;
}

}

/*==========================
FOOTER
==========================*/

.footer{
    background:#0b1f3a;
    color:#ffffff;
    padding:80px 0 0;
}

.footer-logo{
    width:90px;
    margin-bottom:20px;
}

.footer h4,
.footer h5{
    color:#fff;
    margin-bottom:20px;
    font-weight:700;
}

.footer p{
    color:#d8d8d8;
    line-height:1.8;
}

.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li,
.footer-contact li{
    margin-bottom:14px;
}

.footer-links a,
.footer-contact a{
    color:#d8d8d8;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#ff3c00;
    padding-left:5px;
}

.footer-links i{
    margin-right:8px;
    color:#ff3c00;
}

.footer-contact i{
    width:25px;
    color:#ff3c00;
}

.footer-social{
    margin-top:25px;
}

.footer-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#ffffff;
    color:#0b1f3a;
    margin-right:10px;
    transition:.3s;
}

.footer-social a:hover{
    background:#e31b23;
    color:#fff;
}

.footer-bottom{
    margin-top:60px;
    padding:20px 0;
    background:#08162b;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom strong{
    color:#ffc107;
}

@media(max-width:768px){

.footer{
    text-align:center;
}

.footer-contact i{
    display:block;
    margin:0 auto 8px;
}

.footer-bottom{
    text-align:center;
}

}

/*=====================================
BACK TO TOP
======================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:linear-gradient(135deg,#d62828,#ff4d4d);

    color:#fff;

    font-size:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    opacity:0;

    visibility:hidden;

    transform:translateY(30px);

    transition:all .4s ease;

    z-index:9999;

}

.back-to-top:hover{

    background:linear-gradient(135deg,#0b1f3a,#16396b);

    transform:translateY(-8px);

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-to-top i{

    transition:.3s;

}

.back-to-top:hover i{

    transform:translateY(-3px);

}

/* Mobile */

@media(max-width:768px){

.back-to-top{

    width:48px;

    height:48px;

    font-size:18px;

    right:15px;

    bottom:15px;

}

}

/*====================================
  WHATSAPP FLOAT BUTTON
====================================*/

.whatsapp-float{
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    z-index: 9999;
    transition: all .35s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    background: #1EBE5A;
    color: #fff;
    transform: translateY(-5px) scale(1.08);
}

.whatsapp-float i{
    line-height: 1;
}

/* Pulse Animation */

@keyframes whatsappPulse{

    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }

    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }

}

/* Mobile */

@media (max-width:768px){

    .whatsapp-float{
        left: 15px;
        bottom: 15px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

}

/*=========================
SERVICE CARD
=========================*/

.service-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-image{
    width:100%;
    height:230px;
    object-fit:cover;
}

.service-content{
    padding:30px;
}

.service-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#d62828;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.service-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.service-link{
    color:#d62828;
    text-decoration:none;
    font-weight:600;
}

.service-link:hover{
    color:#0A2342;
}

.hero-section{
    position:relative;
    min-height:500px;
    display:flex;
    align-items:center;
    background:url('../images/hero_banner.png') center center/cover no-repeat;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(117, 141, 187, 0.88) 0%,
        rgba(131, 140, 158, 0.82) 38%,
        rgba(71, 85, 111, 0.2) 65%,
        rgba(162, 164, 170, 0) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
    color:#fff;
    padding:120px 0;
}

.hero-logo{
    width:180px;
}

.hero-badge{
    display:inline-block;
    background:#dc3545;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:3.5rem;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#fff;
}

.hero-content p{
    font-size:1.2rem;
    color:#d9d9d9;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.hero-buttons .btn{
    padding:15px 32px;
    border-radius:50px;
    font-weight:600;
}

.hero-features{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
}

.feature-item i{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#dc3545;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.feature-item strong{
    display:block;
    font-size:18px;
}

.feature-item span{
    color:#ddd;
    font-size:15px;
}

@media(max-width:991px){

    .hero-section{
        min-height:auto;
        background-position:right center;
    }

    .hero-content{
        padding:90px 0 70px;
    }

    .hero-content h1{
        font-size:2.4rem;
    }

    .hero-features{
        gap:20px;
    }

    .feature-item{
        width:100%;
    }
}

.page-banner{
    background:linear-gradient(rgba(10,35,66,.85),rgba(10,35,66,.85)),
    url('../images/banner.jpg') center/cover;
    color:#fff;
    padding:100px 0;
    text-align:center;
}

.page-banner h1{
    font-size:48px;
    font-weight:700;
}

.breadcrumb{
    background:none;
    margin-top:15px;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
}

.section-subtitle{
    color:#d62828;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title{
    font-size:40px;
    font-weight:700;
    margin:15px 0 25px;
}

.feature-box{
    padding:15px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    font-weight:600;
}

.mission-box,
.advantage-card,
.stat-box{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.mission-box:hover,
.advantage-card:hover{
    transform:translateY(-8px);
}

.mission-box .icon,
.advantage-card i{
    font-size:45px;
    color:#d62828;
    margin-bottom:20px;
}

.stats-section{
    background:#0A2342;
}

.stat-box{
    background:transparent;
    box-shadow:none;
}

.stat-box h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
}

.stat-box p{
    color:#ddd;
}

.cta-section{
    background:#d62828;
    color:#fff;
    padding:70px 0;
}

.cta-section h2{
    font-weight:700;
}

.cta-section .btn{
    background:#fff;
    color:#d62828;
    font-weight:600;
}

.cta-section .btn:hover{
    background:#0A2342;
    color:#fff;
}

/*==================================
CONTACT PAGE
==================================*/

.contact-info h2,
.contact-form h2{
    font-weight:700;
    color:#0A2342;
}

.contact-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fff;
    padding:25px;
    margin-bottom:20px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-5px);
}

.contact-card .icon{
    width:60px;
    height:60px;
    background:#d62828;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:24px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form .form-control{
    padding:14px;
    border-radius:10px;
    border:1px solid #ddd;
}

.contact-form .form-control:focus{
    border-color:#d62828;
    box-shadow:none;
}

.contact-form button{
    padding:14px 40px;
}

.contact-section{
    background:#f8f9fa;
}