/* Global Styles */
:root {
    --primary-color: #0b3d91;
    --secondary-color: #f2a900;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
}

/* Navbar */
.navbar {
    background-color: rgba(11, 61, 145, 0.95) !important;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background-color: var(--primary-color) !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Hero Carousel */
.carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, 0.6);
}
.carousel-caption {
    bottom: 30%;
    z-index: 2;
}

/* Titles */
.section-title {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #082d6b;
    border-color: #082d6b;
}
.btn-warning {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}
.btn-warning:hover {
    background-color: #d19200;
    border-color: #d19200;
    color: #fff;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Process Section */
.process-step {
    padding: 20px;
}
.step-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 10px rgba(242, 169, 0, 0.2);
}

/* Team Cards */
.team-card {
    transition: transform 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-img {
    height: 300px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px 10px 0 0;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(11, 61, 145, 0.1);
    color: var(--primary-color);
}
.accordion-button:focus {
    box-shadow: none;
}

/* Client List */
.client-list li {
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 1px solid #e9ecef;
}
.client-list li:last-child {
    border-bottom: none;
}

/* Logo Styling */
.navbar-logo {
    height: 48px;
    width: auto;
    background-color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.footer-logo {
    height: 52px;
    width: auto;
    background-color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.03);
}

