/* =================================================
   RESET & BASE
================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1f2937;
  --secondary: #4f46e5;
  --muted: #6b7280;
  --light: #f9fafb;
  --border: #e5e7eb;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: var(--primary);
  line-height: 1.65;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =================================================
   HEADER
================================================= */
.header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* LOGO */
.logo {
  max-width: 140px;
}

.logo img {
  width: 100%;
  max-height: 56px;
  object-fit: contain;
}

/* NAV */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu a {
  margin-left: 28px;
  font-size: 14px;
  text-decoration: none;
  color: var(--primary);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-btn {
  border: 1px solid var(--primary);
  padding: 8px 16px;
  border-radius: 6px;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* =================================================
   HERO
================================================= */
.hero {
  padding: 120px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 30px;
}

.hero-image img {
  width: 100%;
  border-radius: 14px;
  transform: translateY(10px);
  transition: transform 0.8s ease;
}

.hero.show .hero-image img {
  transform: translateY(0);
}

/* =================================================
   BUTTONS
================================================= */
.primary-btn {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.primary-btn.white {
  background: #ffffff;
  color: var(--primary);
}

/* =================================================
   SECTIONS
================================================= */
.section {
  padding: 50px 0;
}

.section.light {
  background: var(--light);
}

.section-title {
  font-size: 34px;
  text-align: center;
  margin-bottom: 70px;
}

/* =================================================
   CARDS
================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.card.small {
  text-align: center;
  font-weight: 500;
}

/* =================================================
   APPROACH
================================================= */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.approach-step {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.4s ease;
}

.approach-step:hover {
  transform: translateY(-6px);
}

.approach-step span {
  font-size: 26px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}

/* =================================================
   CTA
================================================= */
.cta {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #ffffff;
  text-align: center;
  padding: 120px 20px;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.cta p {
  color: #d1d5db;
  margin-bottom: 30px;
}

/* =================================================
   FOOTER
================================================= */
.footer {
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

/* =================================================
   SCROLL ANIMATION
================================================= */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================
   MOBILE
================================================= */
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 24px 0;
    border-top: 1px solid var(--border);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    margin: 14px 0;
    font-size: 16px;
  }

  .hero {
    padding: 90px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }
}


/* =================================================
   HERO VIDEO BACKGROUND
================================================= */

.hero-video {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* VIDEO */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.55) 45%,
    rgba(15, 23, 42, 0.25) 100%
  );
  z-index: 2;
}

/* CONTENT WRAPPER */
.hero-video .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 600px;
}

/* =================================================
   HERO TEXT (STATIC POSITION)
================================================= */

.hero-title {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
  color: #00000;
  margin-bottom: 20px;
  opacity: 0;
}

.hero-title .highlight {
  color: #6366f1;
}

.hero-subtext {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 30px;
  opacity: 0;
}

.hero-video .primary-btn {
  opacity: 0;
}

/* =================================================
   HERO FADE-IN ANIMATION (NO MOVEMENT)
================================================= */

.hero-video.animate.show .hero-title {
  animation: fadeIn 1s ease forwards;
}

.hero-video.animate.show .hero-subtext {
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}

.hero-video.animate.show .primary-btn {
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =================================================
   MOBILE HERO
================================================= */
@media (max-width: 900px) {

  .hero-video {
    min-height: 90vh;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-content {
    text-align: center;
    margin: auto;
  }

  .hero-overlay {
    background: rgba(15, 23, 42, 0.7);
  }
}

.hero-title {
  color: #ffffff;
}

.hero-subtext {
  color: #ffffff;
  
}

/* TEXT ROTATE – CLEAN BLACK (NO GLOW) */
.hero-title .text-rotate,
.text-rotate {
  color: #04d9ff !important;
  text-shadow: none !important;
}

/* FORCE HERO SUBTEXT FULL VISIBILITY */
.hero-subtext {
  opacity: 1 !important;
  color: #ffffff !important;
  font-weight: 500;
  filter: none !important;
  text-shadow: none !important;
}

/* =========================
   BLOG PAGE LAYOUT FIX
========================= */

.blog-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  color: #4b5563;
  font-size: 16px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* CARD */
.blog-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 22px;
  flex: 1;
}

.blog-date {
  font-size: 13px;
  color: #6b7280;
  display: block;
  margin-bottom: 6px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 16px;
}

/* LINK */
.blog-link {
  font-size: 14px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   CONTACT PAGE – FINAL LAYOUT
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT SIDE */
.contact-info h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-info p {
  margin-bottom: 16px;
  color: #4b5563;
}

/* RIGHT SIDE FORM */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 18px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
}

/* =========================
   MOBILE STACK
========================= */

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}













