* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: white;
  overflow-x: hidden;
}

/* PRELOADER */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #020617;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid #1e3a8a;
  border-top: 4px solid #60a5fa;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 25px 60px;
}

.navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.navbar a:hover {
  color: #60a5fa;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
}

/* LEFT SIDE */
.hero-left {
  max-width: 500px;
}

/* RIGHT SIDE IMAGE */
.hero-right img {
  width: 500px;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* TEXT */
.hero h2 {
  font-size: 56px;
  color: #60a5fa;
}

.tagline {
  margin-top: 10px;
  color: #93c5fd;
}

.sub {
  margin-top: 20px;
  color: #cbd5f5;
}

.main-btn {
  margin-top: 30px;
  padding: 14px 32px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
.main-btn {
  display: inline-block;
  text-decoration: none;
}
/* SECTIONS */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
}
.section h2 {
  font-size: 40px;
  color: #60a5fa;
}

.section p {
  margin-top: 15px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* GRID */
.grid {
  margin-top: 40px;
  display: flex;
  gap: 30px;
}

.card {
  background: #020617;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(96,165,250,0.2);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* PAGE GENERAL */
.page {
  padding: 100px;
}

.page-title {
  font-size: 42px;
  color: #60a5fa;
}

.page-sub {
  margin-top: 15px;
  max-width: 600px;
  color: #cbd5f5;
}

/* TEAM */
.team-grid {
  margin-top: 60px;
  display: flex;
  gap: 30px;
}

.team-card {
  background: #020617;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  text-align: center;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(96,165,250,0.2);
}

.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.role {
  color: #60a5fa;
  margin-top: 10px;
  font-weight: bold;
}

.desc {
  margin-top: 10px;
  color: #cbd5f5;
  font-size: 14px;
}

/* CONTACT */
.contact-container {
  margin-top: 50px;
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
  color: #cbd5f5;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: #60a5fa;
}

.form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form input,
.form textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
}

.form button {
  padding: 14px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.form button:hover {
  transform: translateY(-3px);
}
/* GRID LAYOUT */
.grid {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* CARD DESIGN */
.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  min-width: 250px;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(96,165,250,0.2);
}

/* CARD TEXT */
.card h3 {
  color: #60a5fa;
  margin-bottom: 10px;
}

.card p {
  color: #cbd5f5;
  line-height: 1.5;
}
.team-grid {
  display: flex;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.team-card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  text-align: center;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(96,165,250,0.2);
}

/* NAME */
.team-card h3 {
  color: white;
  margin-top: 15px;
}

/* POSITION */
.position {
  color: #60a5fa;
  margin-top: 5px;
  font-weight: 600;
}

/* ROLE */
.role {
  color: #93c5fd;
  margin-top: 10px;
  font-size: 14px;
}

/* DESCRIPTION */
.desc {
  color: #cbd5f5;
  margin-top: 15px;
  font-size: 14px;
}

/* AVATAR */
.avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-radius: 50%;
  margin: 0 auto;
}
.logo img {
  height: 50px;
  width: auto;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 90px;
  width: auto;
  transition: 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}
.navbar {
  padding: 15px 60px; /* reduce if logo feels too big */
  align-items: center;
}