body {
    font-family: 'Segoe UI', sans-serif;
}

/* Navbar */
.custom-nav {
    background: #0b1c2d;
    padding: 15px 0;
}
.nav-link.active {
    color: #ff4d4d !important;
    font-weight: 600;
    border-bottom: 2px solid #ff4d4d;
}
.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: #ff4d4d;
}
.hero-slider {
    margin-top: 70px; /* navbar height adjust */
}

.slider-img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(60%);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

.carousel-caption h1 {
    font-size: 48px;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 18px;
}

/* Hero */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(to right, #0b1c2d, #123c5c);
    color: white;
}

.hero-section h1 {
    font-size: 45px;
    font-weight: bold;
}

/* Services */
.section-title {
    font-size: 36px;
    font-weight: bold;
}
.section-title span {
    color: #ff4d4d;
}
.service-card {
    height: 100%;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 70px;
    margin-bottom: 15px;
}

/* CTA */
.cta-section {
    background: #d90429;
    color: white;
    padding: 60px 0;
}

/* Footer */
footer {
    background: #0b1c2d;
    color: #ccc;
    padding: 20px 0;
    text-align: center;
}
