@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: #17212b;
    background: #ffffff;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

img,
iframe,
video {
    max-width: 100%;
}

.section-padding {
    padding: 50px 0;
}

/* Header */
.navbar {
    width: 100%;
    max-width: 100%;
    background: rgba(5, 24, 44, 0.94);
    backdrop-filter: blur(12px);
    padding: 12px 0;
}

.navbar .container {
    width: 100%;
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-brand {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.site-logo {
    height: 60px;
    width: auto;
    display: block;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    margin-left: 18px;
}

.nav-link:hover {
    color: #f4b41a !important;
}

.btn-brand {
    background: #f4b41a;
    color: #071d33;
    border: none;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
}

.btn-brand:hover {
    background: #ffffff;
    color: #071d33;
}

/* ==========================
   HERO SECTION
========================== */

.hero-section{
    min-height:100vh;
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.hero-content h1{
    font-size:64px;
    font-weight:800;
    line-height:1.12;
    margin-bottom:24px;
    margin-top:28px;
    color:#fff;
    max-width:850px;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    color:#f1f5f9;
    max-width:700px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-brand{
    background:#f4b41a;
    border:2px solid #f4b41a;
    color:#071d33;
    font-weight:700;
    border-radius:50px;
    padding:14px 30px;
}

.btn-brand:hover{
    background:#fff;
    border-color:#fff;
    color:#071d33;
}

.btn-outline-light{
    border:2px solid #fff;
    border-radius:50px;
    padding:14px 30px;
    font-weight:700;
}

@media(max-width:991px){

    .hero-content h1{
        font-size:46px;
    }

}

@media(max-width:575px){

    .hero-section{
        text-align:center;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        justify-content:center;
    }

}

/* Section Title */
.section-title span {
    color: #f4b41a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    margin-top: 10px;
    color: #071d33;
}

/* About */
.about-section {
    background: #f8fbfd;
}

.about-section p {
    color: #536273;
    font-size: 16px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 25px;
}

.about-points div {
    background: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.about-points i {
    color: #f4b41a;
    margin-right: 8px;
}

.about-card {
    background: linear-gradient(135deg, #071d33, #0f3b5f);
    color: #fff;
    padding: 55px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(7, 29, 51, .25);
}

.about-card h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 18px;
}

.about-card p {
    color: #fff;
}

/* Services */
.services-section {
    background: #ffffff;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    height: 100%;
    transition: .35s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 65px rgba(0,0,0,.13);
}

.service-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    display: block;
}

.service-body {
    padding: 28px;
}

.service-body i {
    width: 58px;
    height: 58px;
    background: #f4b41a;
    color: #071d33;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-body h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #071d33;
}

.service-body p {
    color: #5e6c7a;
    margin-bottom: 0;
}

/* Contact */
.contact-section {
    background: #f8fbfd;
}

.contact-box {
    background: #fff;
    padding: 35px;
    border-radius: 26px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    height: 100%;
    overflow: hidden;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    min-width: 0;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item div {
    min-width: 0;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background: #071d33;
    color: #f4b41a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.contact-item h5 {
    font-weight: 800;
    margin-bottom: 4px;
}

.contact-item a {
    display: block;
    color: #536273;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.5;
}

.contact-item a:hover {
    color: #f4b41a;
}

.map-box {
    height: 100%;
    min-height: 430px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Footer */
.footer {
    background: #071d33;
    color: #fff;
    padding: 55px 0 25px;
}

.footer h4 {
    font-size: 28px;
    font-weight: 800;
}

.footer p {
    color: #c7d3df;
}

.footer-social {
    margin: 22px 0;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4b41a;
    color: #071d33;
    border-radius: 50%;
    margin: 0 6px;
    font-size: 18px;
}

.footer-social a:hover {
    background: #fff;
}

.copyright {
    font-size: 14px;
    margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .site-logo {
        height: 52px;
    }

    .navbar-collapse {
        background: #071d33;
        padding: 15px;
        border-radius: 14px;
        margin-top: 12px;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .section-padding {
        padding: 70px 0;
    }

    .navbar {
        padding: 8px 0;
    }

    .navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-logo {
        height: 44px;
    }

    .navbar-toggler {
        padding: 4px 8px;
        border: 1px solid rgba(255,255,255,.35);
    }

    .navbar-collapse {
        max-width: 100%;
    }

    .hero-content {
        padding-top: 95px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 7px 14px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-right: 0;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 28px;
    }

    .service-card img {
        height: 210px;
    }

    .contact-box {
        padding: 24px 18px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-item i {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .map-box {
        min-height: 320px;
    }

    .footer-social a {
        margin-bottom: 8px;
    }
}