* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #0b1c2d;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #071a2f, #0b2d4a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background: linear-gradient(90deg, #1ea7ff, #4fc3ff);
    color: #002;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30,167,255,0.4);
}

/* TRUST */
.trust {
    background: #0b1c2d;
    color: #ccc;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

.light {
    background: #f4f6f8;
}

.dark {
    background: #0b1c2d;
    color: white;
}

.gradient {
    background: linear-gradient(135deg, #0b1c2d, #102a44);
    color: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.narrow {
    max-width: 700px;
}

.center {
    text-align: center;
}

.subtitle {
    margin-bottom: 50px;
    font-size: 18px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TIMELINE */
.timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    border-left: 4px solid #1ea7ff;
}

/* INDUSTRIES */
.industries {
    list-style: none;
    padding: 0;
    columns: 2;
}

.industries li {
    margin-bottom: 12px;
}

/* CONTACT */
.contact {
    font-size: 22px;
    margin-top: 20px;
}

/* FOOTER */
footer {
    background: #071a2f;
    color: #aaa;
    text-align: center;
    padding: 20px;
}

/* SCROLL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

details {
    margin-bottom: 20px;
    background: white;
    border-radius: 6px;
    padding: 20px;
}

summary {
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    color: #0b1c2d;
}

summary:hover {
    color: #1ea7ff;
}

.legal-text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

.legal-text h4 {
    margin-top: 20px;
    color: #0b1c2d;
}
