/* =========================
   GLOBAL STYLES
========================= */

body {
    font-family: "Red Hat Display", sans-serif;
    font-weight: 400;
    color: #000;
    background: #fff;
    line-height: 1.7;
}

.section {
    padding: 80px 0;
}

.section-light {
    background: #f8f9fa;
}

.nav-offset {
    height: 80px;
}


/* =========================
   TYPOGRAPHY
========================= */

h1 {
    font-weight: 700;
    font-size: 2.4rem;
    color: #0d2366;
}

h2 {
    font-weight: 650;
    font-size: 2rem;
    color: #0d2366;
}

h3 {
    font-weight: 600;
    font-size: 1.4rem;
    color: #0d2366;
}

p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

strong {
    font-weight: 600;
}

/* =========================
   SECTIONS
========================= */

.section {
    padding: 80px 0;
}

.section-light {
    background: #f8f9fa;
}

.nav-offset {
    height: 80px;
}

/* =========================
   NAVBAR
========================= */

/* NAVBAR LOGO */
.navbar-brand .logo-img {
    height: 42px;
    width: auto;
    max-width: 100%;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 1rem;
}

.navbar-nav .nav-link:hover {
    font-weight: 700;
    font-size: 1.05rem;
}

/* =========================
   BUTTONS
========================= */

.btn-primary {
    background-color: #0d2366;
    border: none;
    padding: 10px 22px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #271B4C;
}

/* =========================
   SERVICE CARDS (FANCY)
========================= */

.service-card {
    border: none;
    border-radius: 10px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #0d2366;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-image {
    overflow: hidden;
}

.service-image img {
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-card .card-body {
    padding: 28px;
}

.service-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0d2366;
    background: rgba(13, 35, 102, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.service-card ul {
    padding-left: 25px;
}

.service-card ul li::marker {
    color: #0d2366;
}

/* =========================
   CTA BANNER (HORIZONTAL)
========================= */

.cta-banner {
    background: #271B4C;
    padding: 50px 0;
}

.cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-banner h2 {
    color: #fff;
    font-weight: 500;
}

.cta-link {
    color: #ffffff;
    font-style: italic;
    text-decoration: none;
    margin-left: 8px;
    font-weight: 700;
}

.cta-link:hover {
    color: #e0e0e0;
}

/* =========================
   INDUSTRY GRID WITH ICONS
========================= */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.industry-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.35s ease;
}

.industry-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0d2366;
}


.industry-card .icon-wrapper {
    position: relative;
    width: 75px;
    height: 75px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card .icon-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.industry-card:hover  {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    background-color: #271B4C;
    color: #ffffff;
}

.industry-card:hover h4 {
    color: #ffffff;
}

.industry-card .icon-hover {
    opacity: 0;
}

.industry-card:hover .icon-default {
    opacity: 0;
}

.industry-card:hover .icon-hover {
    opacity: 1;
}

/* =========================
   FORMS
========================= */

.contact-form input,
.contact-form textarea {
    font-size: 0.95rem;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* =========================
   FOOTER
========================= */

.footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    font-size: 0.9rem;
}
