/* ===== OGS - OPSORA GLOBAL SERVICES ===== */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #060d1a;
  --bg-secondary: #0a1628;
  --bg-card: #0f1e35;
  --bg-card-hover: #142644;
  --bg-light: #f7fbff;
  --bg-light-soft: #eef5fc;
  --bg-light-card: #ffffff;
  --bg-light-card-hover: #eef6ff;
  --accent-blue: #1a6eff;
  --accent-cyan: #00c6ff;
  --accent-light: #4d8fff;
  --text-primary: #ffffff;
  --text-secondary: #a8c0d6;
  --text-muted: #5a7a99;
  --text-dark: #081426;
  --text-dark-secondary: #40546a;
  --text-dark-muted: #718399;
  --border: rgba(26,110,255,0.18);
  --border-hover: rgba(26,110,255,0.45);
  --border-light: rgba(18,65,120,0.14);
  --border-light-hover: rgba(26,110,255,0.35);
  --gradient-hero: linear-gradient(135deg, #060d1a 0%, #0a1c38 50%, #071030 100%);
  --gradient-btn: linear-gradient(135deg, #1a6eff, #00c6ff);
  --gradient-accent: linear-gradient(135deg, #1a6eff 0%, #00c6ff 100%);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(26,110,255,0.2);
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-blue); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,13,26,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

.navbar.scrolled {
  background: rgba(6,13,26,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 55px;
  width: 80px;
  object-fit: cover;
  border-radius: 8px;
  background: white;
  padding: 2px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.nav-logo-text .tagline {
  font-size: 9px;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(26,110,255,0.12);
}

.nav-links a.active {
  color: var(--accent-cyan);
}

.btn-portal {
  background: var(--gradient-btn);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(26,110,255,0.35);
  transition: all 0.3s !important;
}

.btn-portal:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26,110,255,0.5) !important;
  background: rgba(0,0,0,0) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,110,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,198,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(26,110,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,110,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,110,255,0.12);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 12px;
  color: var(--accent-cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-badge span {
  width: 6px; height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-btn);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(26,110,255,0.4);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,110,255,0.55);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-hover);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(26,110,255,0.1);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-item .num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item .label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Hero right image/graphic */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  width: min(40vw, 520px);
  transform: translateY(-50%);
  z-index: 2;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border-hover);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 42px rgba(0,198,255,0.18);
  position: relative;
  animation: imageFloat 8s ease-in-out infinite;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,13,26,0) 52%, rgba(6,13,26,0.46) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  pointer-events: none;
  z-index: 2;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  animation: imagePan 12s ease-in-out infinite alternate;
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  min-width: 146px;
  padding: 20px 26px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(22,35,57,0.86), rgba(84,91,92,0.76));
  box-shadow: 0 18px 38px rgba(0,0,0,0.34), 0 0 28px rgba(26,110,255,0.16);
  backdrop-filter: blur(14px);
}

.hero-floating-card-top {
  top: 5%;
  left: -7%;
  animation: cardFloatTop 6s ease-in-out infinite;
}

.hero-floating-card-bottom {
  right: -5%;
  bottom: -3%;
  animation: cardFloatBottom 7s ease-in-out infinite;
}

.floating-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: var(--accent-light);
  text-shadow: 0 2px 12px rgba(26,110,255,0.42);
}

.floating-label {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.86);
  white-space: nowrap;
}

/* ===== SECTION COMMONS ===== */
.section {
  padding: 58px 50px 50px 50px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(26,110,255,0.035) 25%, transparent 25%) 0 0 / 34px 34px,
    linear-gradient(225deg, rgba(0,198,255,0.028) 25%, transparent 25%) 0 0 / 34px 34px,
    var(--bg-light);
  color: var(--text-dark);
  --bg-secondary: var(--bg-light-soft);
  --bg-card: var(--bg-light-card);
  --bg-card-hover: var(--bg-light-card-hover);
  --text-primary: var(--text-dark);
  --text-secondary: var(--text-dark-secondary);
  --text-muted: var(--text-dark-muted);
  --border: var(--border-light);
  --border-hover: var(--border-light-hover);
  --shadow-card: 0 12px 32px rgba(18,65,120,0.11);
  --shadow-glow: 0 18px 45px rgba(26,110,255,0.08);
}

.section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 96px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6,13,26,0.96) 0%,
    rgba(18,58,102,0.42) 34%,
    rgba(247,251,255,0.86) 72%,
    rgba(247,251,255,0) 100%
  );
  filter: blur(10px);
  transform: translateY(-28px) scaleY(1.2);
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--bg-secondary);
  color: var(--text-primary);
  --bg-secondary: #0a1628;
  --bg-card: #0f1e35;
  --bg-card-hover: #142644;
  --text-primary: #ffffff;
  --text-secondary: #a8c0d6;
  --text-muted: #5a7a99;
  --border: rgba(26,110,255,0.18);
  --border-hover: rgba(26,110,255,0.45);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(26,110,255,0.2);
}

.section-alt::before {
  background: linear-gradient(
    180deg,
    rgba(247,251,255,0.92) 0%,
    rgba(39,94,145,0.42) 36%,
    rgba(10,22,40,0.72) 76%,
    rgba(10,22,40,0) 100%
  );
}

/*.section-header {*/
/*  text-align: center;*/
/*  margin-bottom: 60px;*/
/*}*/

/*.section-label {*/
/*  display: inline-block;*/
/*  font-size: 15px;*/
/*  font-weight: 700;*/
/*  letter-spacing: 2.5px;*/
/*  text-transform: uppercase;*/
/*  color: var(--accent-cyan);*/
/*  margin-bottom: 14px;*/
/*  margin-left: 332px;*/
/*  text-align: center;*/
/*}*/

.section-header {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  display: flex;
  margin: 0 auto 14px auto;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  text-align: center;
  justify-content: center;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 8px;
  text-align: center;
}

.section-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  
  color: var(--text-secondary);
 
  margin: 0 auto;
  line-height: 1.75;
   margin-bottom: 30px;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  background: var(--bg-card-hover);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 54px; height: 54px;
  background: rgba(26,110,255,0.12);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.card:hover .card-icon {
  background: rgba(26,110,255,0.22);
  border-color: var(--accent-blue);
}

.card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ===== SERVICES ROLE CARD ===== */
.role-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.role-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.role-card-header {
  background: linear-gradient(135deg, #0d1f3c, #0a1628);
  border-bottom: 1px solid var(--border);
  padding: 28px 28px 20px;
  position: relative;
  overflow: hidden;
}

.role-card-header::after {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(26,110,255,0.15), transparent 70%);
}

.role-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.role-card-header h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.role-salary {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.role-card-body {
  padding: 24px 28px;
}

.role-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.role-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.role-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.role-list li::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.role-list-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 8px;
  margin-top: 16px;
}

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.why-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.why-icon {
  width: 44px; height: 44px;
  background: rgba(26,110,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.why-item h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.why-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-glow);
}

.why-image {
  padding: 0;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.metric-row:last-child { border-bottom: none; }

.metric-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.metric-bar-wrap {
  flex: 1;
  margin: 0 16px;
  height: 6px;
  background: rgba(26,110,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.metric-bar {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 3px;
  transition: width 1.5s ease;
}

.metric-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-cyan);
  min-width: 36px;
  text-align: right;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.stars {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  background: var(--gradient-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #0d1f45 0%, #091630 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 5% 80px;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(26,110,255,0.15), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
  position: relative;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 140px 5% 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(26,110,255,0.1), transparent 60%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent-cyan); }

.breadcrumb span { color: var(--text-muted); }

.page-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}

.stat-box:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.stat-box .num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-box .lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.about-visual {
  position: relative;
}

.about-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.value-item:last-child { border-bottom: none; }

.value-icon {
  width: 40px; height: 40px;
  background: rgba(26,110,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.value-item h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

.value-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Values 3 col */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.3s;
}

.contact-info-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(26,110,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.contact-form-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(26,110,255,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--bg-card); }

/* ===== LOGIN PAGE ===== */
.login-page {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.login-page::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,110,255,0.1), transparent 70%);
}

.login-page::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,198,255,0.07), transparent 70%);
}

.login-page .hero-grid {
  position: absolute;
  inset: 0;
}

.login-box {
  position: relative;
  z-index: 2;
  background: rgba(15,30,53,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 44px;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: fadeInUp 0.6s ease;
}

.login-logo {
  text-align: center;
  margin-bottom: 28px;
}

.login-logo img {
  width: 70px; height: 70px;
  object-fit: contain;
  border-radius: 16px;
  background: white;
  padding: 4px;
}

.login-box h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.login-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.login-form .form-group {
  margin-bottom: 22px;
}

.login-form .form-group input {
  background: rgba(10,22,40,0.8);
  padding: 14px 18px;
  font-size: 15px;
}

.login-form .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.btn-login {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 12px;
  margin-top: 8px;
}

.login-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.login-footer a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
  background: #040a15;
  border-top: 1px solid var(--border);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 50px;
  background: white;
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 11px;
  color: var(--accent-cyan);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--accent-cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--accent-cyan);
  text-decoration: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translate(30px, -50%); }
  to { opacity: 1; transform: translate(0, -50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes imageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes imagePan {
  0% { transform: scale(1.08) translateY(0); }
  100% { transform: scale(1.08) translateY(-6px); }
}

@keyframes cardFloatTop {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -10px); }
}

@keyframes cardFloatBottom {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, 10px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: min(92vw, 560px);
    margin: 0 auto;
    transform: none;
    align-self: center;
    animation: fadeInUp 0.8s ease both;
  }
}

@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-image img { min-height: 360px; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 4%; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(6,13,26,0.98); padding: 20px; gap: 15px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding: 110px 4% 64px; gap: 42px; }
  .hero-stats { gap: 24px; }
  .hero-visual { width: min(92vw, 460px); }
  .hero-floating-card {
    min-width: 126px;
    padding: 15px 18px;
  }
  .hero-floating-card-top {
    top: 4%;
    left: -2%;
  }
  .hero-floating-card-bottom {
    right: -2%;
    bottom: 3%;
  }
  .floating-num { font-size: 28px; }
  .floating-label { font-size: 12px; margin-top: 8px; }
  .section { padding: 60px 4%; }
  .cards-grid { grid-template-columns: 1fr; }
  .about-why-grid { grid-template-columns: 1fr; }
  .why-image img { min-height: 260px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats-box { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 40px 24px; margin: 0 4% 60px; }
  .login-box { padding: 36px 28px; }
  .contact-form-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-visual { width: 100%; }
  .hero-image-frame { border-radius: 16px; }
  .hero-image-frame::after { inset: 12px; border-radius: 10px; }
  .hero-floating-card {
    min-width: 108px;
    padding: 12px 14px;
    border-radius: 12px;
  }
  .hero-floating-card-top {
    top: 5%;
    left: 3%;
  }
  .hero-floating-card-bottom {
    right: 3%;
    bottom: 4%;
  }
  .floating-num { font-size: 24px; }
  .floating-label {
    font-size: 11px;
    max-width: 118px;
    white-space: normal;
    line-height: 1.25;
  }
  .about-stats-box { grid-template-columns: 1fr; }
}



/* ------------new css-------------  */


/* ================= HERO VIDEO SECTION ================= */

.hero-video-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 140px 5% 70px;
}

/* Background video */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark blue overlay - theme same rahegi */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 10, 25, 0.18) 0%,
      rgba(3, 10, 25, 0.45) 45%,
      rgba(6, 28, 56, 0.95) 100%
    );
  z-index: 1;
}

/* Existing grid video ke upar */
.hero-video-section .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Glass content box */
.hero-glass-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  padding: 5px 46px;
  border-radius: 18px;
  border: 1px solid rgba(120, 190, 255, 0.55);
  background: linear-gradient(
    135deg,
    rgba(18, 48, 82, 0.74),
    rgba(9, 31, 58, 0.88)
  );
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

/* Hero content width controlled */
.hero-video-section .hero-title,
.hero-video-section .hero-desc,
.hero-video-section .hero-badge,
.hero-video-section .hero-btns {
  max-width: 720px;
}

/* Image section force hide agar HTML me reh bhi gaya ho */
.hero-video-section .hero-visual {
  display: none !important;
}

/* Title thoda same image jaisa compact */
.hero-video-section .hero-title {
  margin-top: 20px;
  margin-bottom: 18px;
}

/* Buttons same rakhe */
.hero-video-section .hero-btns {
  margin-top: 28px;
}

/* Stats hide, kyunki screenshot jaisa clean hero chahiye */
.hero-video-section .hero-stats {
  display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-video-section {
    min-height: 92vh;
    padding: 120px 20px 45px;
    align-items: flex-end;
  }

  .hero-glass-content {
    padding: 26px 22px;
    border-radius: 16px;
  }

  .hero-video-section .hero-title {
    font-size: clamp(42px, 12vw, 64px);
  }

  .hero-video-section .hero-desc {
    font-size: 16px;
  }

  .hero-video-section .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-video-section .btn-primary,
  .hero-video-section .btn-outline {
    text-align: center;
  }
}
/* Hero buttons right side */
.hero-video-section .hero-glass-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 40px;
}

.hero-video-section .hero-badge,
.hero-video-section .hero-title,
.hero-video-section .hero-desc {
  grid-column: 1;
}

.hero-video-section .hero-btns {
  grid-column: 2;
  grid-row: 1 / 4;
  justify-content: flex-end;
  align-self: center;
  margin-top: 70px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Mobile par buttons niche hi rahenge */
@media (max-width: 900px) {
  .hero-video-section .hero-glass-content {
    display: block;
  }

  .hero-video-section .hero-btns {
    margin-top: 28px;
    justify-content: flex-start;
  }
}
/* ================= FINAL HERO VIDEO FIX ================= */

/* Desktop fix */
.hero-video-section {
  position: relative;
  min-height: calc(100vh - 78px);
  margin-top: 78px;              /* navbar ke niche start */
  padding: 28px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #061224;
}

/* Desktop video full visible box */
.hero-video-section .hero-bg-video {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  bottom: 28px;

  width: calc(100% - 56px);
  height: calc(100% - 56px);

  object-fit: cover;
  object-position: center center;

  border-radius: 18px;
  z-index: 0;
}

/* Overlay same video box ke andar */
.hero-video-section .hero-video-overlay {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  bottom: 28px;

  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(3, 10, 25, 0.10) 0%,
    rgba(3, 10, 25, 0.38) 45%,
    rgba(3, 10, 25, 0.88) 100%
  );
  z-index: 1;
}

/* Grid overlay */
.hero-video-section .hero-grid {
  position: absolute;
  inset: 28px;
  border-radius: 18px;
  z-index: 2;
  pointer-events: none;
}

/* Content box */
.hero-video-section .hero-glass-content {
  position: relative;
  z-index: 3;
  width: calc(100% - 70px);
  margin: 0 auto 35px;
}

/* Agar old image HTML me reh gaya ho to hide */
.hero-video-section .hero-visual {
  display: none !important;
}

/* Mobile fix */
@media (max-width: 768px) {
  .hero-video-section {
    min-height: auto;
    margin-top: 78px;
    padding: 14px;
    display: block;
  }

  .hero-video-section .hero-bg-video {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;

    width: 100%;
    height: 285px;

    object-fit: cover;
    object-position: center top;

    border-radius: 14px;
    display: block;
  }

  .hero-video-section .hero-video-overlay {
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: auto;
    height: 285px;
    border-radius: 14px;
  }

  .hero-video-section .hero-grid {
    display: none;
  }

  .hero-video-section .hero-glass-content {
    width: calc(100% - 24px);
    margin: -70px auto 20px;
    padding: 26px 16px;
    border-radius: 14px;
  }

  .hero-video-section .hero-title {
    font-size: 38px;
    line-height: 1.12;
  }

  .hero-video-section .hero-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-video-section .hero-btns {
    margin-top: 26px;
    flex-direction: column;
    gap: 12px;
  }

  .hero-video-section .btn-primary,
  .hero-video-section .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}