* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: transparent;
    z-index: 1000;
    transition: 0.3s;
}

header.scrolled {
    background: #0a1f44;
}

.container {
    width: 90%;
    margin: auto;
}

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

.logo {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 15px;
}

nav a:hover {
    color: #1abc9c;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(9,30,66,0.85), rgba(9,30,66,0.3)),
                url('/images/banner.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    color: #fff;
    max-width: 700px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background: #1abc9c;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

/* SECTIONS */
.section {
    padding: 80px 10%;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.section.light {
    background: #f4f6f9;
}

.eyebrow {
    color: #1227e6;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    margin-bottom: 15px;
    display: block;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 5%;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.icon {
    font-size: 40px;
    color: #1abc9c;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0a1f44;
}

.card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.details-link {
    margin-top: auto;
    color: #1abc9c;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}

.details-link:hover {
    text-decoration: underline;
}

/* FOOTER */
/* FOOTER */
footer {
    background: #0a1f44;
    color: #b0b9c6; /* Light grey text */
    padding: 70px 0 0;
    font-size: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 90%;
    margin: auto;
    padding-bottom: 50px;
}

.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b9c6;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #1abc9c;
    padding-left: 5px;
}

/* News Items */
.news-item {
    margin-bottom: 20px;
}

.news-item h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
}

.news-item span {
    font-size: 12px;
    color: #1abc9c;
}

/* Quick Contact */
.contact-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-row i {
    color: #1abc9c;
    margin-right: 15px;
    margin-top: 5px;
}

/* Copyright */
.copyright {
    background: #061229; /* Darker shade */
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

@media(max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */
@media(max-width:768px){
    .hero h1 {
        font-size: 34px;
    }
}
/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

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

/* Image + Content Layout */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.split img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Feature Cards (Why Choose Us) */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: rgb(40, 145, 187);
    border: 4px solid #1abc9c;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.feature-box:hover {
    transform: translateY(-12px);
}

/* Service Columns Layout */
.service-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-col {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-col h3.cat-title {
    color: #1abc9c;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 15px;
}

.service-item {
    margin-bottom: 25px;
}

.service-item h4 {
    color: #0a1f44;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.service-item ul {
    list-style: none;
    padding-left: 15px;
}

.service-item ul li {
    position: relative;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    padding-left: 15px;
}

.service-item ul li::before {
    content: "•";
    color: #1abc9c;
    position: absolute;
    left: 0;
    top: 0;
}

/* CONTACT SECTION */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info, .contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-info h3, .contact-form h3 {
    margin-bottom: 25px;
    color: #0a1f44;
    font-size: 22px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(26, 188, 156, 0.1);
    color: #1abc9c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #1abc9c;
}

.submit-btn {
    width: 100%;
    background: #0a1f44;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #1abc9c;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Responsive Footer Split */
.footer-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.footer-text {
    margin-bottom: 25px;
    color: #b0b9c6;
}

.contact-icon {
    font-size: 20px;
}

.footer-form {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
}

.footer-btn {
    background: #1abc9c;
    color: #fff;
    font-weight: bold;
}

/* MOBILE RESPONSIVENESS */
@media(max-width: 900px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-split {
        grid-template-columns: 1fr; /* Stack footer cols */
        gap: 40px;
    }
    .service-columns {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .split {
        grid-template-columns: 1fr;
    }
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .cards {
        grid-template-columns: 1fr; /* 1 col for cards */
    }
    .features {
        grid-template-columns: 1fr; /* 1 col for features */
    }
    .hero h1 {
        font-size: 32px;
    }
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    nav a {
        margin: 0 10px;
    }
}
