
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
  var(--primary-blue): #29A3FC; 
  --primary-blue: #29A3FC; 
  --primary-hover: #1e8be0;
  --secondary-blue: #e0f2fe;
  --dark-blue: #0f172a; 
  --text-dark: #334155;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --radius-lg: 16px;
  --radius-md: 12px;
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--dark-blue); }
.section-title { margin-bottom: 3rem; text-align: center; }

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}
.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}
.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  color: white;
}

.navbar { background: white; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.navbar-brand img { height: 60px; } 
.nav-link { font-weight: 600; color: var(--text-dark) !important; }
.nav-link:hover, .nav-link.active { color: var(--primary-blue) !important; }
.dropdown-menu { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: var(--radius-md); }

.hero-section {
  height: calc(100vh - 76px);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(41, 163, 252, 0.85) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80') center/cover;
  color: white;
  display: flex;
  align-items: center;
}
.inner-page-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(41, 163, 252, 0.85) 100%);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.hero-section h1, .inner-page-banner h1 { color: white; font-weight: 800; }
.glass-btn { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: white; }
.glass-btn:hover { background: white; color: var(--primary-blue); }

.custom-card {
  background: white; border-radius: var(--radius-lg); border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: var(--transition); height: 100%;
}
.custom-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(41, 163, 252, 0.15); }
.icon-box {
  width: 60px; height: 60px; background: var(--secondary-blue); color: var(--primary-blue);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
}
.rounded-image { border-radius: var(--radius-lg); object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.timeline { display: flex; justify-content: space-between; position: relative; padding: 2rem 0; overflow-x: auto; }
.timeline::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: var(--secondary-blue); z-index: 1; }
.timeline-step { position: relative; z-index: 2; text-align: center; background: white; padding: 0 1rem; min-width: 120px; }
.step-circle { width: 50px; height: 50px; background: var(--primary-blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-weight: bold; box-shadow: 0 0 0 5px white; }

.marquee-container { overflow: hidden; white-space: nowrap; position: relative; padding: 2rem 0; background: var(--bg-light); border-top: 1px solid #eaeaea; border-bottom: 1px solid #eaeaea; }
.marquee-content { display: inline-block; animation: marquee 20s linear infinite; }
.marquee-content img, .marquee-content span { font-size: 1.5rem; font-weight: bold; color: var(--text-muted); margin: 0 3rem; filter: grayscale(100%); opacity: 0.6; transition: var(--transition); }
.marquee-content span:hover { filter: grayscale(0%); opacity: 1; color: var(--primary-blue); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

footer { background: var(--dark-blue); color: rgba(255,255,255,0.7); padding-top: 4rem; padding-bottom: 2rem; }
footer h4, footer h5 { color: white; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
footer a:hover { color: white; }
.footer-logo { filter: brightness(0) invert(1); height: 45px; } 
