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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Prevent content hiding behind navbar */
.main-content {
    padding-top: 85px;
}

/* Sections */
.section {
    padding: 80px 20px;
}

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

.custom-navbar {
    background-color: #000000;
    padding: 14px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    z-index: 9999;
}

.navbar-brand {
    font-size: 1.4rem;
    color: #ffffff !important;
    letter-spacing: 0.5px;
}

.nav-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

/* Navbar links */
.navbar .nav-link {
    color: #ffffff !important;
    margin-left: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #0d6efd !important;
}

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

.hero {
    background: linear-gradient(135deg, #0b1c2c, #0d6efd);
    padding: 130px 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 1.1rem;
}

.logo {
    width: 220px;
    max-width: 100%;
}

/* =========================================
   CARDS
========================================= */

.card-custom {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-6px);
}

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

.contact-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

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

.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 20px;
}

/* =========================================
   TEXT
========================================= */

.section-text {
    max-width: 700px;
    margin: auto;
    color: #6c757d;
    font-size: 1.05rem;
}

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

.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-text {
    color: #cccccc;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #0d6efd;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0;
}

.footer-copy {
    color: #999999;
    margin: 0;
}

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

@media (max-width: 768px) {

    .hero {
        padding: 110px 20px;
    }

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

    .section {
        padding: 60px 15px;
    }

    .navbar .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .footer {
        text-align: center;
    }
}
/* CONTACT PAGE MAP */

.contact-box iframe {
    border-radius: 12px;
}