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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#0b1220;
    color:white;
}

.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* NAV */
nav{
    background:#0b1220;
    border-bottom:1px solid rgba(255,255,255,.08);
}

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

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-img{
    height:55px;
}

.brand small{
    display:block;
    font-size:13px;
    color:#94a3b8;
}

.nav-links{
    display:flex;
    gap:25px;
}

.nav-links a{
    color:#cbd5e1;
    text-decoration:none;
    font-weight:600;
}

.nav-links a:hover{
    color:white;
}

.nav-cta{
    display:flex;
    gap:15px;
}

.btn{
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.btn.primary{
    background:#1c5aa6;
    color:white;
}

.btn.primary:hover{
    background:#174c8a;
}

.btn.ghost{
    border:1px solid rgba(255,255,255,.2);
    color:#cbd5e1;
}

.btn.ghost:hover{
    background:rgba(255,255,255,.05);
}

/* HERO */
.hero{
    height:50vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:#0f172a;
}

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

.hero p{
    color:#cbd5e1;
    margin-bottom:30px;
}

/* SECTION */
.section{
    padding:80px 0;
    text-align:center;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:40px;
}

.card{
    background:#111a2f;
    padding:30px;
    border-radius:16px;
}

/* FOOTER */
.footer{
    padding:40px 0;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
    display:flex;
    justify-content:space-between;
}

.footer small{
    color:#94a3b8;
}

/* BURGER */
.burger{
    display:none;
    font-size:24px;
    background:none;
    border:none;
    color:white;
}

@media(max-width:900px){
    .nav-links{
        display:none;
        flex-direction:column;
        position:absolute;
        top:70px;
        right:20px;
        background:#111a2f;
        padding:20px;
        border-radius:12px;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-cta{
        display:none;
    }

    .burger{
        display:block;
    }

    .footer-grid{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }
}
.hero{
    position:relative;
    height:50vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.hero-slider{
    position:absolute;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.slide.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

.hero-content{
    position:relative;
    z-index:2;
}

.services .card{
    background:#111c30;
    padding:30px;
    border-radius:14px;
    transition:0.3s ease;
}

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

.services h3{
    margin-bottom:12px;
}

.services p{
    color:#94a3b8;
    font-size:14px;
    line-height:1.6;
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #071426, #0b2d5c);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
}

.services-header p {
    color: #cbd5e1;
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 18px;
}

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

.service-card {
    background: #112b4d;
    padding: 35px;
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    background: #15375f;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.service-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
}

.service-cta {
    text-align: center;
    margin-top: 70px;
}

.service-cta a {
    background: #3b82f6;
    padding: 14px 32px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.service-cta a:hover {
    background: #2563eb;
}

.services-section {
    padding: 80px 0;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background: #0f1f35;
    padding: 35px;
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    background: #132a47;
  }
  
  .service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 20px;
  }
  
  .card-link {
    font-weight: 600;
    color: #3b82f6;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .card-link:hover {
    color: #60a5fa;
  }
  
  .highlight {
    background: linear-gradient(135deg, #0f1f35, #17365f);
    border: 1px solid rgba(59,130,246,0.4);
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  nav {
    background: #0b2d5c;
    padding: 15px 0;
    color: white;
  }
  
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
  }
  
  .logo-img {
    height: 50px;
  }
  
  .nav-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
  }
  
  .btn {
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .btn.primary {
    background: #d4af37;
    color: black;
  }
  
  .btn.ghost {
    border: 2px solid white;
    color: white;
  }
  
  .hero {
    position: relative;
    height: 85vh;
    color: white;
    overflow: hidden;
  }
  
  .hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .hero-slider .slide.active {
    opacity: 1;
  }
  
  .hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 40%;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
  }
  
  .service-card {
    background: #f4f4f4;
    padding: 25px;
    border-radius: 6px;
  }
  
  .investor-section {
    background: #0b2d5c;
    color: white;
    padding: 80px 20px;
    text-align: center;
  }
  
  .footer {
    background: #111;
    color: white;
    padding: 30px 0;
    text-align: center;
  }
  