/* ===============================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0B1C2D;
    color: #ffffff;
    line-height: 1.6;
}

/* ===============================
   LAYOUT
================================ */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 40px 0;   /* reduced spacing */
    position: relative;
}

/* alternate background */
section.alt {
    background: #0F2438;
}

/* ===============================
   TYPOGRAPHY
================================ */

h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* ===============================
   NAVBAR
================================ */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00C2FF;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #00C2FF;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ===============================
   HERO
================================ */

.hero,
.page-hero {
    padding: 70px 0 70px;
    background: linear-gradient(180deg, #0B1C2D 0%, #0E4A7B 100%);
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* ===============================
   GRID & CARDS
================================ */

.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
    background: #10273D;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    background: #13304D;
}

/* ===============================
   INDUSTRY IMAGE CARDS
================================ */

.industry-card {
    padding: 0;
    overflow: hidden;
}

.industry-image {
    position: relative;
    height: 220px;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.industry-card:hover img {
    transform: scale(1.06);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.3)
    );
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* ===============================
   SPLIT LAYOUT
================================ */

.split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.split > div {
    flex: 1;
    min-width: 280px;
}

/* ===============================
   CTA
================================ */

.cta {
    background: #0E4A7B;
    text-align: center;
    padding: 70px 20px;
}

.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    margin: 10px;
    text-decoration: none;
}

.btn-primary {
    background: #00C2FF;
    color: #001018;
}

.btn-outline {
    border: 1px solid #ffffff;
}

/* ===============================
   FOOTER
================================ */

footer {
    background: #081521;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* ===============================
   SCROLL REVEAL
================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:768px) {
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
}
/* CONTACT FORM */

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 6px;
    border: none;
    background: #10273D;
    color: #fff;
    font-family: inherit;
}

form input:focus,
form textarea:focus {
    outline: 2px solid #00C2FF;
}

/* Auto alternate background for page sections */
section:nth-of-type(even) {
    background: #0F2438;
}
section:not(.page-hero)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    transform: translateX(-50%);
}
/* INDUSTRY ROW IMAGES */

.industry-row img {
    width: 100%;
    max-width: 520px;      /* keeps them consistent */
    height: 320px;         /* fixed height for uniform look */
    object-fit: cover;     /* crop instead of stretch */
    border-radius: 12px;
    display: block;
    .industry-row img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
}
/* INDUSTRY ROW LAYOUT */

.industry-row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.industry-row img {
    flex: 1;
    min-width: 300px;
}

.industry-text {
    flex: 1;
    min-width: 300px;
}