
  :root {
    --navy: #0a0f2e;
    --navy-mid: #111a45;
    --cobalt: #1a3fa8;
    --electric: #0066ff;
    --accent: #00c6ff;
    --gold: #f5a623;
    --light: #f0f4ff;
    --white: #ffffff;
    --text-muted: #8090b8;
    --card-bg: #111c4e;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--white); color: #1a1a2e; overflow-x: hidden; }

  /* TOP BAR */
  .topbar {
    background: var(--navy);
    color: var(--text-muted);
    font-size: 13px;
    padding: 8px 0;
  }
  .topbar .tb-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 30px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .topbar a { color: var(--accent); text-decoration: none; margin-left: 20px; }
  .topbar a:hover { color: var(--white); }

  /* NAV */
  nav {
    background: var(--white);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    position: sticky; top: 0; z-index: 1000;
  }
  .nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 30px;
    display: flex; justify-content: space-between; align-items: center;
    height: 72px;
  }
  .logo { font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: 700; color: var(--navy); text-decoration: none; letter-spacing: 0.5px; }
  .logo span { color: var(--electric); }
  .nav-links { display: flex; list-style: none; gap: 36px; }
  .nav-links a { text-decoration: none; color: var(--navy); font-size: 14px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--electric); transition: width 0.3s; }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
  .nav-links a:hover, .nav-links a.active { color: var(--electric); }
  .nav-cta {
    background: var(--electric); color: var(--white);
    padding: 10px 24px; border-radius: 4px;
    text-decoration: none; font-weight: 600; font-size: 14px;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--cobalt); transform: translateY(-1px); }

  /* HERO */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0d1f5c 50%, #0a1845 100%);
    min-height: 90vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066ff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: linear-gradient(var(--accent) 1px, transparent 1px), linear-gradient(90deg, var(--accent) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-glow {
    position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,102,255,0.3) 0%, transparent 70%);
  }
  .hero-glow2 {
    position: absolute; bottom: -150px; left: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,198,255,0.15) 0%, transparent 70%);
  }
  .hero-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 30px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; position: relative; z-index: 1;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(0,198,255,0.15);
    border: 1px solid rgba(0,198,255,0.4);
    color: var(--accent);
    padding: 6px 16px; border-radius: 20px;
    font-size: 12px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 20px;
  }
  .hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 700; line-height: 1.05;
    color: var(--white); margin-bottom: 24px;
  }
  .hero h1 span { color: var(--accent); }
  .hero p {
    color: #a0b0d8; font-size: 17px; line-height: 1.8;
    margin-bottom: 36px; max-width: 520px;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--electric); color: var(--white);
    padding: 14px 32px; border-radius: 4px;
    text-decoration: none; font-weight: 600; font-size: 15px;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: #0050cc; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,102,255,0.4); }
  .btn-outline {
    border: 2px solid rgba(255,255,255,0.3); color: var(--white);
    padding: 12px 30px; border-radius: 4px;
    text-decoration: none; font-weight: 500; font-size: 15px;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }
  .hero-visual {
    display: flex; justify-content: center; align-items: center;
  }
  .tech-card-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; max-width: 480px;
  }
  .tech-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 24px 20px;
    transition: all 0.3s; cursor: default;
  }
  .tech-card:hover { background: rgba(0,102,255,0.15); border-color: rgba(0,198,255,0.5); transform: translateY(-4px); }
  .tech-card .tc-icon { font-size: 32px; margin-bottom: 12px; }
  .tech-card h4 { font-family: 'Rajdhani', sans-serif; color: var(--white); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
  .tech-card p { color: var(--text-muted); font-size: 12px; line-height: 1.6; }
  .hero-stats {
    display: flex; gap: 40px; margin-top: 44px;
    padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item { text-align: left; }
  .stat-num { font-family: 'Rajdhani', sans-serif; font-size: 36px; font-weight: 700; color: var(--accent); line-height: 1; }
  .stat-label { color: var(--text-muted); font-size: 13px; margin-top: 4px; }

  /* SECTION COMMONS */
  section { padding: 20px 0; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 30px; }
  .section-tag {
    display: inline-block; color: var(--electric); font-size: 12px;
    font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 12px;
  }
  .section-tag::before { content: '— '; }
  .section-title {
    font-family: 'Rajdhani', sans-serif; font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 18px;
  }
  .section-desc { color: #4a5568; font-size: 16px; line-height: 1.8; max-width: 640px; }

  /* BENEFITS / WHY US */
  .benefits { background: var(--light); }
  .benefits-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .benefit-cards { display: flex; flex-direction: column; gap: 20px; }
  .benefit-card {
    background: var(--white); border-radius: 10px; padding: 24px 28px;
    border-left: 4px solid var(--electric);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex; gap: 18px; align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .benefit-card:hover { transform: translateX(6px); box-shadow: 0 8px 30px rgba(0,102,255,0.1); }
  .benefit-num {
    font-family: 'Rajdhani', sans-serif; font-size: 40px; font-weight: 700;
    color: rgba(0,102,255,0.15); line-height: 1; min-width: 48px;
  }
  .benefit-card h4 { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .benefit-card p { color: #6b7280; font-size: 14px; line-height: 1.7; }

  /* ABOUT STRIP */
  .about-strip { background: var(--white); }
  .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-img-wrap { position: relative; }
  .about-img-wrap img { width: 100%; border-radius: 12px; display: block; }
  .about-img-wrap .img-accent {
    position: absolute; bottom: -20px; right: -20px;
    width: 200px; height: 200px;
    border: 3px solid var(--electric); border-radius: 12px;
    z-index: -1;
  }
  .about-img-wrap .exp-badge {
    position: absolute; bottom: 20px; left: -20px;
    background: var(--electric); color: var(--white);
    border-radius: 10px; padding: 16px 20px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,102,255,0.4);
  }
  .exp-badge .big { font-family: 'Rajdhani', sans-serif; font-size: 36px; font-weight: 700; line-height: 1; }
  .exp-badge .small { font-size: 12px; opacity: 0.9; }
  .skills-list { margin: 30px 0; }
  .skill-item { margin-bottom: 18px; }
  .skill-label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
  .skill-bar { height: 6px; background: #e5e7eb; border-radius: 10px; overflow: hidden; }
  .skill-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--electric), var(--accent)); }

  /* SERVICES */
  .services { background: var(--navy); }
  .services .section-title { color: var(--white); }
  .services .section-desc { color: var(--text-muted); }
  .services .section-tag { color: var(--accent); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
  .service-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 36px 28px; transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--electric), var(--accent));
    transform: scaleX(0); transition: transform 0.3s;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover { background: rgba(0,102,255,0.1); border-color: rgba(0,102,255,0.3); transform: translateY(-6px); }
  .svc-icon { font-size: 40px; margin-bottom: 20px; display: block; }
  .service-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
  .service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
  .svc-link { color: var(--accent); font-size: 13px; font-weight: 600; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
  .svc-link:hover { color: var(--white); }

  /* CTA BANNER */
  .cta-banner {
    background: linear-gradient(135deg, var(--cobalt), var(--electric));
    padding: 70px 0; position: relative; overflow: hidden;
  }
  .cta-banner::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-opacity='0.03'%3E%3Cpath d='M20 0l20 20-20 20L0 20z'/%3E%3C/g%3E%3C/svg%3E");
  }
  .cta-inner { max-width: 1280px; margin: 0 auto; padding: 0 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; position: relative; z-index: 1; }
  .cta-text h2 { font-family: 'Rajdhani', sans-serif; font-size: clamp(24px, 3vw, 40px); font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .cta-text p { color: rgba(255,255,255,0.8); font-size: 16px; }
  .btn-white { background: var(--white); color: var(--electric); padding: 14px 32px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 15px; transition: all 0.2s; white-space: nowrap; }
  .btn-white:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

  /* GLOBAL PRESENCE */
  .global { background: var(--light); }
  .global-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
  .global-card {
    background: var(--white); border-radius: 10px; padding: 30px 20px; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.2s;
  }
  .global-card:hover { transform: translateY(-6px); }
  .globe-icon { font-size: 36px; margin-bottom: 12px; }
  .global-card h4 { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .global-card p { color: #6b7280; font-size: 13px; }

  /* TEAM PREVIEW */
  .team-preview { background: var(--white); }
  .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 50px; max-width: 700px; }
  .team-card {
    background: var(--light); border-radius: 12px; padding: 32px; text-align: center;
    transition: transform 0.2s; border: 1px solid #e5e7eb;
  }
  .team-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,102,255,0.1); border-color: rgba(0,102,255,0.2); }
  .team-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--electric), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; color: white;
    margin: 0 auto 16px;
  }
  .team-card h4 { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .team-card span { color: var(--electric); font-size: 13px; font-weight: 500; }
  .team-card p { color: #6b7280; font-size: 13px; margin-top: 10px; line-height: 1.7; }

  /* FOOTER */
  footer { background: var(--navy); color: var(--text-muted); padding: 60px 0 0; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer-logo { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
  .footer-logo span { color: var(--accent); }
  .footer-about { font-size: 13px; line-height: 1.8; margin-bottom: 20px; }
  .footer-social { display: flex; gap: 10px; }
  .social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; cursor: pointer; transition: all 0.2s; text-decoration: none; }
  .social-btn:hover { background: var(--electric); border-color: var(--electric); color: var(--white); }
  .footer-col h5 { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 18px; letter-spacing: 1px; text-transform: uppercase; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--accent); padding-left: 4px; }
  .contact-info { list-style: none; }
  .contact-info li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; line-height: 1.6; }
  .ci-icon { min-width: 16px; margin-top: 2px; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); margin-top: 50px; padding: 20px 0; text-align: center; font-size: 12px; }
  .footer-bottom a { color: var(--accent); text-decoration: none; }

  /* ANIMATIONS */
  @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  .hero-content > * { animation: fadeInUp 0.6s ease both; }
  .hero-content > *:nth-child(2) { animation-delay: 0.15s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.45s; }

  @media (max-width: 900px) {
    .hero-inner, .about-inner, .benefits-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .global-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
  }
  
  .menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
color:var(--navy);
}

/* MOBILE MENU */

@media (max-width:900px){

.menu-toggle{
display:block;
}

.nav-links{
position:absolute;
top:72px;
left:0;
width:100%;
background:white;
flex-direction:column;
gap:0;
display:none;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.nav-links li{
border-bottom:1px solid #eee;
}

.nav-links a{
display:block;
padding:16px 30px;
}

.nav-links.active{
display:flex;
}

.nav-cta{
display:none;
}

.services-grid{
grid-template-columns:1fr 1fr;
}

.global-grid{
grid-template-columns:1fr 1fr;
}

.footer-grid{
grid-template-columns:1fr 1fr;
}

}  



:root{
--navy:#0a0f2e;
--electric:#0066ff;
--accent:#00c6ff;
--light:#f6f8ff;
--text:#59607a;
--white:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'DM Sans',sans-serif;
background:#ffffff;
color:#0f172a;
line-height:1.7;
}

/* NAVBAR */

nav{
background:white;
position:sticky;
top:0;
z-index:999;
box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.nav-inner{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px;
}

.logo{
font-family:'Rajdhani';
font-size:26px;
font-weight:700;
color:var(--navy);
text-decoration:none;
}

.nav-links{
display:flex;
gap:35px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#111827;
font-weight:500;
position:relative;
}

.nav-links a:after{
content:'';
position:absolute;
bottom:-5px;
left:0;
width:0;
height:2px;
background:var(--electric);
transition:0.3s;
}

.nav-links a:hover:after{
width:100%;
}

/* HERO */

.about-hero{
background:
radial-gradient(circle at 20% 20%,rgba(0,102,255,0.2),transparent 50%),
linear-gradient(135deg,#0a0f2e,#091a4a);
padding:50px 20px;
text-align:center;
color:white;
}

.about-hero h1{
font-family:'Rajdhani';
font-size:64px;
margin-bottom:20px;
letter-spacing:1px;
}

.about-hero p{
max-width:720px;
margin:auto;
font-size:18px;
color:#c7d2fe;
}

/* GLOBAL SECTION SETTINGS */

.container{
max-width:1200px;
margin:auto;
padding:20px 20px;
}

.section-title{
font-family:'Rajdhani';
font-size:44px;
margin-bottom:20px;
color:#0a0f2e;
}

.section-desc{
color:var(--text);
max-width:650px;
margin-bottom:40px;
}

/* ABOUT GRID */

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.about-img img{
width:100%;
border-radius:14px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.about-text p{
margin-bottom:20px;
color:var(--text);
}

/* TEAM */

.team{
background:var(--light);
}

.team-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:35px;
margin-top:50px;
}

.team-card{
background:white;
padding:45px;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.07);
transition:0.35s;
border:1px solid rgba(0,0,0,0.03);
}

.team-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

.team-card h3{
font-family:'Rajdhani';
font-size:24px;
margin-bottom:6px;
}

.team-role{
color:var(--electric);
font-weight:600;
margin-bottom:14px;
font-size:14px;
}

/* STRENGTHS */

.strength-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.strength{
background:white;
padding:40px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
border-top:4px solid var(--electric);
transition:0.3s;
}

.strength:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.strength h4{
font-family:'Rajdhani';
font-size:20px;
margin-bottom:10px;
}

/* GLOBAL */

.global{
background:#f8fbff;
}

.global-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:50px;
}

.global-card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
text-align:center;
transition:0.3s;
}

.global-card:hover{
transform:translateY(-6px);
}

/* CTA */

.cta{
background:linear-gradient(135deg,#0a0f2e,#1a3fa8);
padding:110px 20px;
text-align:center;
color:white;
}

.cta h2{
font-family:'Rajdhani';
font-size:42px;
margin-bottom:10px;
}

.cta p{
color:#c7d2fe;
margin-bottom:25px;
}

.cta a{
background:white;
color:#0a0f2e;
padding:15px 34px;
font-weight:700;
border-radius:6px;
text-decoration:none;
transition:0.3s;
}

.cta a:hover{
background:#00c6ff;
color:white;
}

/* FOOTER */

footer{
background:#0a0f2e;
color:#9ca3af;
padding:20px 20px;
text-align:center;
font-size:14px;
}

@media(max-width:900px){

.about-grid,
.team-grid,
.strength-grid,
.global-grid{
grid-template-columns:1fr;
}

.about-hero h1{
font-size:44px;
}

}

:root{
--navy:#0a0f2e;
--electric:#0066ff;
--accent:#00c6ff;
--light:#f6f8ff;
--text:#5b6175;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'DM Sans',sans-serif;
color:#0f172a;
background:white;
line-height:1.7;
}

/* NAVBAR */

nav{
background:white;
box-shadow:0 10px 40px rgba(0,0,0,0.06);
position:sticky;
top:0;
z-index:1000;
}

.nav-inner{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:22px;
}

.logo{
font-family:'Rajdhani';
font-size:26px;
font-weight:700;
color:var(--navy);
text-decoration:none;
}

.nav-links{
display:flex;
gap:35px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#111827;
font-weight:500;
}

/* HERO */

.hero{
background:
radial-gradient(circle at 20% 20%,rgba(0,102,255,0.2),transparent 50%),
linear-gradient(135deg,#0a0f2e,#0d1f5c);

color:white;
padding:140px 20px;
text-align:center;
}

.hero h1{
font-family:'Rajdhani';
font-size:60px;
margin-bottom:15px;
}

.hero p{
max-width:700px;
margin:auto;
color:#c7d2fe;
font-size:18px;
}

/* CONTACT SECTION */



.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-bottom:70px;
}

.contact-card{
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.contact-card h3{
font-family:'Rajdhani';
margin-bottom:15px;
color:#0a0f2e;
}

.contact-card p{
margin-bottom:12px;
color:var(--text);
}

.contact-card a{
color:#0066ff;
text-decoration:none;
}

/* MAP */

.map iframe{
width:100%;
height:300px;
border-radius:10px;
border:0;
margin-top:20px;
}

/* FORM */

.form-section{
background:#f8fbff;
padding:100px 20px;
}

.form-box{
max-width:900px;
margin:auto;
background:white;
padding:50px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.form-title{
text-align:center;
margin-bottom:40px;
}

.form-title h2{
font-family:'Rajdhani';
font-size:38px;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

input, textarea{
width:100%;
padding:15px;
border-radius:6px;
border:1px solid #ddd;
font-family:'DM Sans';
}

textarea{
grid-column:span 2;
height:150px;
}

button{
margin-top:20px;
padding:14px 30px;
border:none;
background:#0066ff;
color:white;
font-weight:600;
border-radius:6px;
cursor:pointer;
}

button:hover{
background:#0a0f2e;
}



/* MOBILE */

@media(max-width:900px){

.contact-grid{
grid-template-columns:1fr;
}

.form-grid{
grid-template-columns:1fr;
}

textarea{
grid-column:span 1;
}

.hero h1{
font-size:42px;
}

}


:root{
--navy:#0a0f2e;
--electric:#0066ff;
--accent:#00c6ff;
--light:#f6f8ff;
--text:#5b6175;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'DM Sans',sans-serif;
color:#0f172a;
background:white;
line-height:1.7;
}

/* NAVBAR */

nav{
background:white;
box-shadow:0 10px 40px rgba(0,0,0,0.06);
position:sticky;
top:0;
z-index:1000;
}

.nav-inner{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:22px;
}

.logo{
font-family:'Rajdhani';
font-size:26px;
font-weight:700;
color:var(--navy);
text-decoration:none;
}

.nav-links{
display:flex;
gap:35px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#111827;
font-weight:500;
}

/* HERO */

.hero{
background:
radial-gradient(circle at 20% 20%,rgba(0,102,255,0.2),transparent 50%),
linear-gradient(135deg,#0a0f2e,#0d1f5c);

color:white;
padding:150px 20px;
text-align:center;
}

.hero h1{
font-family:'Rajdhani';
font-size:64px;
margin-bottom:15px;
}

.hero p{
max-width:750px;
margin:auto;
color:#c7d2fe;
font-size:18px;
}

/* GLOBAL SECTION */

.section{
max-width:1200px;
margin:auto;
padding:20px 20px;
}

.section-title{
font-family:'Rajdhani';
font-size:42px;
margin-bottom:20px;
}

/* SERVICE BLOCK */

.service{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
margin-bottom:100px;
}

.service img{
width:100%;
border-radius:14px;
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.service h2{
font-family:'Rajdhani';
font-size:34px;
margin-bottom:15px;
}

.service p{
color:var(--text);
margin-bottom:18px;
}

/* ALTERNATE */

.service.reverse{
grid-template-columns:1fr 1fr;
}

.service.reverse .text{
order:1;
}

.service.reverse img{
order:2;
}

/* FEATURE LIST */

.feature-list{
margin-top:20px;
}

.feature-list li{
margin-bottom:10px;
color:#334155;
}

/* CTA */

.cta{
background:linear-gradient(135deg,#0a0f2e,#1a3fa8);
color:white;
text-align:center;
padding:110px 20px;
}

.cta h2{
font-family:'Rajdhani';
font-size:40px;
margin-bottom:10px;
}

.cta p{
color:#c7d2fe;
margin-bottom:25px;
}

.cta a{
background:white;
color:#0a0f2e;
padding:15px 32px;
font-weight:700;
text-decoration:none;
border-radius:6px;
}



@media(max-width:900px){

.service{
grid-template-columns:1fr;
}

.hero h1{
font-size:44px;
}

}


:root{
--navy:#0a0f2e;
--electric:#0066ff;
--accent:#00c6ff;
--light:#f6f8ff;
--text:#5b6175;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'DM Sans',sans-serif;
color:#0f172a;
background:white;
line-height:1.7;
}

/* NAVBAR */

nav{
background:white;
box-shadow:0 10px 40px rgba(0,0,0,0.06);
position:sticky;
top:0;
z-index:1000;
}

.nav-inner{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:22px;
}

.logo{
font-family:'Rajdhani';
font-size:26px;
font-weight:700;
color:var(--navy);
text-decoration:none;
}

.nav-links{
display:flex;
gap:35px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#111827;
font-weight:500;
}


/* HERO */

.hero{
background:
radial-gradient(circle at 20% 20%,rgba(0,102,255,0.2),transparent 50%),
linear-gradient(135deg,#0a0f2e,#0d1f5c);

color:white;
padding:150px 20px;
text-align:center;
}

.hero h1{
font-family:'Rajdhani';
font-size:64px;
margin-bottom:15px;
}

.hero p{
max-width:750px;
margin:auto;
color:#c7d2fe;
font-size:18px;
}


/* GLOBAL SECTION */


.section-title{
font-family:'Rajdhani';
font-size:42px;
margin-bottom:20px;
}


/* CONTENT BLOCK */

.content-block{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
margin-bottom:100px;
}

.content-block img{
width:100%;
border-radius:14px;
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.content-block h2{
font-family:'Rajdhani';
font-size:34px;
margin-bottom:15px;
}

.content-block p{
color:var(--text);
margin-bottom:18px;
}

.reverse .text{
order:1;
}

.reverse img{
order:2;
}


/* FEATURE LIST */

.feature-list{
margin-top:20px;
}

.feature-list li{
margin-bottom:10px;
color:#334155;
}


/* ECOSYSTEM CARDS */

.ecosystem-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
}

.eco-card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.06);
text-align:center;
transition:0.3s;
}

.eco-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

.eco-card h3{
font-family:'Rajdhani';
margin-bottom:10px;
}

.eco-card p{
color:var(--text);
}


/* CTA */

.cta{
background:linear-gradient(135deg,#0a0f2e,#1a3fa8);
color:white;
text-align:center;
padding:110px 20px;
}

.cta h2{
font-family:'Rajdhani';
font-size:40px;
margin-bottom:10px;
}

.cta p{
color:#c7d2fe;
margin-bottom:25px;
}

.cta a{
background:white;
color:#0a0f2e;
padding:15px 32px;
font-weight:700;
text-decoration:none;
border-radius:6px;
}




/* MOBILE */

@media(max-width:900px){

.content-block{
grid-template-columns:1fr;
}

.ecosystem-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:44px;
}

}
/* MOBILE MENU */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:var(--navy);
}

/* MOBILE */

@media(max-width:900px){

.menu-toggle{
display:block;
}

.nav-links{
position:absolute;
top:72px;
left:0;
width:100%;
background:white;
flex-direction:column;
display:none;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
z-index:999;
}

.nav-links li{
border-bottom:1px solid #eee;
}

.nav-links a{
display:block;
padding:16px 25px;
}

.nav-links.active{
display:flex;
}

.nav-cta{
display:none;
}

}
.leadership{
padding:110px 20px;
background:#f8fbff;
}

.leadership-header{
text-align:center;
max-width:750px;
margin:auto;
margin-bottom:80px;
}

.section-title{
font-family:'Rajdhani';
font-size:44px;
margin-bottom:15px;
}

.section-desc{
color:#64748b;
font-size:16px;
}

.leader{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:60px;
align-items:center;
margin-bottom:80px;
}

.leader.reverse{
grid-template-columns:1.2fr 1fr;
}

.leader.reverse .leader-img{
order:2;
}

.leader-img img{
width:100%;
border-radius:12px;
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.leader-content h3{
font-family:'Rajdhani';
font-size:30px;
margin-bottom:5px;
}

.leader-role{
color:#0066ff;
font-weight:600;
display:block;
margin-bottom:15px;
}

.leader-content p{
color:#5b6175;
margin-bottom:16px;
line-height:1.8;
}

@media(max-width:900px){

.leader{
grid-template-columns:1fr;
}

.leader.reverse .leader-img{
order:0;
}

}

.leadership-section{
padding:20px 0;
background:#f8fafc;
}

.leadership-header{
max-width:720px;
margin-bottom:60px;
}

.leaders-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.leader-card{
background:#fff;
padding:40px;
border-radius:14px;
border:1px solid #eef2f6;
box-shadow:0 20px 40px rgba(0,0,0,0.05);
transition:all .3s ease;
}

.leader-card:hover{
transform:translateY(-6px);
box-shadow:0 30px 60px rgba(0,0,0,0.08);
}

.leader-icon{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
background:#eef4ff;
border-radius:12px;
margin-bottom:20px;
}

.leader-card h3{
font-size:22px;
margin-bottom:5px;
}

.leader-role{
display:inline-block;
margin-bottom:16px;
font-size:14px;
font-weight:600;
color:#2563eb;
letter-spacing:.5px;
}

.leader-card p{
color:#4b5563;
line-height:1.7;
margin-bottom:14px;
}

@media (max-width:900px){
.leaders-grid{
grid-template-columns:1fr;
}
}

.strengths-section{
padding:20px 0;
background:#f8fafc;
}

.strength-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.strength-card{
background:#fff;
padding:30px;
border-radius:12px;
border:1px solid #eef2f6;
text-align:center;
transition:all .3s ease;
box-shadow:0 15px 30px rgba(0,0,0,0.04);
}

.strength-card:hover{
transform:translateY(-6px);
box-shadow:0 25px 50px rgba(0,0,0,0.08);
}

.strength-icon{
font-size:32px;
margin-bottom:15px;
}



.global-section{
padding:20px 0;
}

.global-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.global-card{
background:#fff;
padding:30px;
border-radius:12px;
text-align:center;
border:1px solid #eef2f6;
box-shadow:0 15px 30px rgba(0,0,0,0.04);
transition:all .3s ease;
}

.global-card:hover{
transform:translateY(-6px);
box-shadow:0 25px 50px rgba(0,0,0,0.08);
}

.country-icon{
font-size:28px;
margin-bottom:10px;
}

.global-card h4{
margin-bottom:6px;
}



@media(max-width:900px){

.strength-grid{
grid-template-columns:1fr;
}

.global-grid{
grid-template-columns:repeat(2,1fr);
}

}

.ecosystem-section{
padding:20px 0;
background:#f8fafc;
}

.section-desc{
max-width:700px;
margin:20px auto 50px;
text-align:center;
color:#4b5563;
}

.ecosystem-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.eco-card{
background:#fff;
padding:35px;
border-radius:14px;
border:1px solid #eef2f6;
text-align:center;
transition:all .3s ease;
box-shadow:0 20px 40px rgba(0,0,0,0.04);
}

.eco-card:hover{
transform:translateY(-8px);
box-shadow:0 30px 60px rgba(0,0,0,0.08);
}

.eco-icon{
font-size:36px;
margin-bottom:18px;
}

.eco-card h3{
margin-bottom:10px;
font-size:20px;
}

.eco-card p{
color:#4b5563;
line-height:1.6;
}

@media(max-width:900px){
.ecosystem-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.ecosystem-grid{
grid-template-columns:1fr;
}
}

nav{
background:#ffffff;
height:95px;
display:flex;
align-items:center;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-inner{
width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
display:flex;
align-items:center;
}

.logo img{
height:90px;
width:auto;
object-fit:contain;
}

.nav-links{
display:flex;
list-style:none;
gap:35px;
}

.nav-links li a{
text-decoration:none;
color:#1e293b;
font-weight:500;
font-size:16px;
}

.nav-links li a.active{
color:#2563eb;
}

.nav-cta{
background:#2563eb;
color:#fff;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
font-weight:500;
}

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

@media(max-width:900px){

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:75px;
left:0;
width:100%;
background:#fff;
padding:20px;
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
}

}