/* ================= GLOBAL ================= */
body {
    font-family: 'Poppins', sans-serif;
    scroll-padding-top: 80px;
}

a, button, img, .service-card {
    transition: all 0.4s ease;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: #0b2c44;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.top-bar a {
    color: #f4c430;
    margin-left: 15px;
}

.top-bar.hide {
    height: 0;
    padding: 0;
    overflow: hidden;
}

/* ================= BRAND ================= */
.brand-name {
    color: #0b2c44;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-tag {
    color: #f4c430;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ================= NAVBAR ================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.nav-link {
    color: #0b2c44 !important;
    font-weight: 500;
    margin-left: 15px;
}

.nav-link:hover {
    color: #f4c430 !important;
}

/* ================= HERO SECTION ================= */
.hero-section {
    height: 85vh;
}

.hero-section h1,
.hero-section p {
    text-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.hero-section .btn:hover {
    background: #ff9800;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,152,0,0.5);
}

/* ================= SECTIONS ================= */
.section-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.section-text {
    color: #555;
    font-size: 15px;
}

.services-section {
    background: #f8f9fa;
}

/* ================= SERVICE CARD ================= */
.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
}

.service-card i {
    font-size: 35px;
    color: #fcb900;
    margin-bottom: 15px;
}

.service-card h3 {
    transition: color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.service-card:hover h3 {
    color: #ff9800;
}

/* ================= CTA ================= */
.cta-section {
    background: linear-gradient(135deg, #0b1f3a, #132f57);
}

.cta-section .btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* ================= FOOTER ================= */
.footer-section {
    background: #0b1f3a;
    color: #ffffff;
}

.footer-title {
    font-size: 26px;
    font-weight: 700;
    color: #fcb900;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fcb900;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #dddddd;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-links a {
    text-decoration: none;
    color: #dddddd;
}

.footer-links a:hover {
    color: #fcb900;
    padding-left: 5px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #ffffff;
    font-size: 16px;
}

.footer-social a:hover {
    color: #fcb900;
    transform: scale(1.1);
}

.footer-copy {
    font-size: 13px;
    color: #cccccc;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .service-card:hover {
        transform: none;
    }
}
