/* ==================== css/style.css - UPDATED WITH WHITE NAVBAR ==================== */
:root {
    --primary-dark: #0b2b3b;
    --primary-accent: #e67e22;
    --primary-accent-hover: #cf711f;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --gray-light: #f1f5f9;
}

* {
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ==================== NAVBAR - WHITE BACKGROUND ==================== */
/* ==================== NAVBAR - DARK DESKTOP / WHITE MOBILE ==================== */
/* Desktop navbar (992px and above) */
.navbar {
    background-color: black !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 700;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary-accent) !important;
        background-color: rgba(230, 126, 34, 0.1);
    }

    .navbar-nav .nav-link.active {
        color: var(--primary-accent) !important;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile navbar (below 992px) */
@media (max-width: 991px) {
    .navbar {
        background-color: black !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav .nav-link {
        color: #1e293b !important;
        text-align: center;
        margin: 0.35rem 0;
        padding: 0.6rem 1rem;
        font-weight: 700;
        border-radius: 12px;
    }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            background-color: rgba(230, 126, 34, 0.1);
            color: var(--primary-accent) !important;
        }

            .navbar-nav .nav-link.active::after {
                display: none;
            }

    .navbar-toggler {
        border: 1.5px solid #e67e22;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e67e22' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem;
        border-radius: 16px;
        margin-top: 0.75rem;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* Common styles */
.navbar-brand img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(105deg, #0b2b3b 0%, #1b4f64 100%), url('/img/banner//banner.jpg');
    background-size: cover;
    background-blend-mode: overlay;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* ==================== BUTTONS ==================== */
.btn-accent {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: white;
    font-weight: 600;
    border-radius: 40px;
    padding: 0.6rem 1.8rem;
    transition: all 0.2s ease;
}

    .btn-accent:hover {
        background-color: var(--primary-accent-hover);
        border-color: var(--primary-accent-hover);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
    }

.btn-outline-accent {
    border: 2px solid var(--primary-accent);
    color: var(--primary-accent);
    background: transparent;
    border-radius: 40px;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .btn-outline-accent:hover {
        background-color: var(--primary-accent);
        color: white;
        transform: translateY(-2px);
    }

.btn-outline-light {
    border-radius: 40px;
    padding: 0.6rem 1.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .btn-outline-light:hover {
        transform: translateY(-2px);
    }

/* ==================== SECTION TITLES ==================== */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    color: var(--primary-dark);
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 3px;
        background: var(--primary-accent);
        border-radius: 4px;
    }

    .section-title.text-start:after {
        left: 0;
        transform: none;
    }

/* ==================== CARDS ==================== */
.feature-card, .testimonial-card, .service-card {
    background: white;
    border-radius: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .feature-card:hover, .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    }

.icon-box {
    background: #fef3e8;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-accent);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: linear-gradient(135deg, #0f2c39, #124c5e);
    color: white;
}

.stat-item h2 {
    font-size: 2.8rem;
    font-weight: 800;
}

/* ==================== INDUSTRY ICONS ==================== */
.industry-icon {
    background: #fef3e8;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-accent);
    transition: 0.3s;
}

    .industry-icon:hover {
        transform: scale(1.05);
        background: var(--primary-accent);
        color: white;
    }

/* ==================== PROCESS STEPS ==================== */
.process-step {
    width: 50px;
    height: 50px;
    background: var(--primary-accent);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: linear-gradient(135deg, #0b2b3b, #1a4a5f);
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: black;
    color: #cddfe7;
}

    .footer a {
        color: #cbd5e1;
        text-decoration: none;
        transition: 0.2s;
    }

        .footer a:hover {
            color: var(--primary-accent);
        }

.social-icons a {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

    .social-icons a:hover {
        background: var(--primary-accent);
        color: white;
        transform: translateY(-3px);
    }

/* ==================== SERVICE CARD ==================== */
.service-icon {
    color: var(--primary-accent);
}

.service-card ul li {
    list-style: none;
    margin-bottom: 6px;
}

.text-accent {
    color: var(--primary-accent);
}

/* ==================== TIMELINE ==================== */
.timeline-content {
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-accent);
}

/* ==================== FORMS ==================== */
.form-control, .form-select {
    border-radius: 14px;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-accent);
        box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
        outline: none;
    }

/* ==================== PAGE HEADER ==================== */
.page-header {
    margin-top: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-section {
        min-height: 70vh;
    }

    .stat-item h2 {
        font-size: 2rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-nav .nav-link {
        text-align: center;
        margin: 0.25rem 0;
    }

        .navbar-nav .nav-link.active::after {
            display: none;
        }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem;
        border-radius: 16px;
        margin-top: 0.5rem;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }
}


/* ==================== HERO SVG ANIMATION ==================== */
.hero-svg-container {
    position: relative;
    width: 100%;
    height: auto;
    animation: fadeInUp 1s ease-out;
}

    .hero-svg-container svg {
        width: 100%;
        height: auto;
        max-height: 450px;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating animation for SVG elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive SVG */
@media (max-width: 992px) {
    .hero-svg-container svg {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-svg-container {
        display: none;
    }
}

/* Industry Icon Enhancements */
.industry-icon {
    background: #fef3e8;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-accent);
    transition: 0.3s;
}

    .industry-icon:hover {
        transform: scale(1.05);
        background: var(--primary-accent);
        color: white;
    }

/* Responsive adjustments for industries section */
@media (max-width: 768px) {
    .industry-icon {
        width: 60px;
        height: 60px;
    }

        .industry-icon i {
            font-size: 1.8rem !important;
        }

        .industry-icon + h5 {
            font-size: 0.9rem;
        }
}

/* Service Card Enhancements */
.service-card {
    background: white;
    border-radius: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #e67e22, #cf711f);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    }

.service-icon {
    color: var(--primary-accent);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-card ul li {
    list-style: none;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

    .service-card ul li i {
        width: 18px;
    }

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem !important;
    }

        .service-card h3 {
            font-size: 1.3rem;
        }

        .service-card p {
            font-size: 0.9rem;
        }
}

/* Achievement Card Styles */
.achievement-card {
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

    .achievement-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.achievement-icon {
    width: 60px;
    height: 60px;
    background: #fef3e8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    background: var(--primary-accent);
}

    .achievement-card:hover .achievement-icon i {
        color: white !important;
    }

/* Responsive */
@media (max-width: 768px) {
    .achievement-card h5 {
        font-size: 0.9rem;
    }

    .achievement-card p {
        font-size: 0.75rem;
    }

    .achievement-icon {
        width: 50px;
        height: 50px;
    }

        .achievement-icon i {
            font-size: 1.5rem !important;
        }
}