/* ---------- SETUP & VARIABLES ---------- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary-blue: #0b2545; /* Deep professional blue */
  --primary-blue-light: #133b6b;
  --secondary-gold: #f2a900; /* Vibrant gold/yellow */
  --secondary-gold-hover: #d49500;
  --accent-red: #d90429; /* Energetic red accent */
  
  /* Neutral Colors */
  --text-dark: #1a1a1a;
  --text-gray: #4a5568;
  --text-light: #718096;
  --bg-light: #f8f9fa;
  --bg-dark: #0a192f;
  --white: #ffffff;
  --border-color: #e2e8f0;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  /* Utils */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 8px;
  --container-width: 1200px;
}

/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-gray);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  line-height: 1.2;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- LAYOUT UTILS ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-red);
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ---------- COMPONENTS ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  text-align: center;
  transition: var(--transition);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--secondary-gold);
  color: var(--primary-blue);
}

.btn-primary:hover {
  background-color: var(--secondary-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--primary-blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--accent-red);
  color: var(--white);
}

.btn-accent:hover {
  background-color: #b00320;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- HEADER & NAVIGATION ---------- */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.logo img {
  height: 60px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-blue);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-red);
  transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-red);
}

/* Mobile Menu Toggle (CSS Only) */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 3px;
  transition: var(--transition);
}

/* ---------- HERO SECTION (HOME) ---------- */
.hero {
  position: relative;
  height: 700px;
  background-color: var(--primary-blue);
  overflow: hidden;
}

/* Removed hero-overlay since text is moved below */
.hero-overlay {
  display: none;
}

.hero-slider {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  width: 50%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider Navigation (Dots) */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.slider-dot:hover {
  background-color: var(--white);
}

.slider-dot.active {
  background-color: var(--secondary-gold);
  width: 30px;
  border-radius: 10px;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-arrow:hover {
  background-color: var(--secondary-gold);
  color: var(--primary-blue);
  border-color: var(--secondary-gold);
}

.arrow-prev { left: 30px; }
.arrow-next { right: 30px; }

.hero-info-section {
  background-color: var(--primary-blue);
  padding: 6rem 0;
  margin: 4rem 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border-left: 10px solid var(--secondary-gold);
  position: relative;
  overflow: hidden;
}

.hero-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(242, 169, 0, 0.03) 100%);
  pointer-events: none;
}

.hero-description {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 100%;
}

.hero-info-section .hero-title {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 0;
  line-height: 1.1;
  text-align: left;
}

.hero-info-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-info-section .hero-text {
  color: #a0aec0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  font-weight: 400;
}

.hero-info-section .hero-btns {
  justify-content: flex-start;
  margin-top: 1rem;
}

.hero-subtitle {
  font-family: var(--font-heading);
  color: var(--secondary-gold);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-title {
  font-size: 4.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title span {
  color: var(--secondary-gold);
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #e2e8f0;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

/* ---------- HOME: OVERVIEW ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
  border-bottom: 4px solid transparent;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(242, 169, 0, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-bottom-color: var(--secondary-gold);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(242, 169, 0, 0.1);
  color: var(--secondary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ---------- SERVICES PREVIEW (HOME) ---------- */
.services-highlight {
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--secondary-gold);
}

.service-img {
  height: 220px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--accent-red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  color: var(--primary-blue);
}

/* ---------- WHY CHOOSE US ---------- */
.why-us {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.why-us-content {
  flex: 1;
}

.why-us-img {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.why-us-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 10px solid var(--secondary-gold);
  border-radius: var(--border-radius);
  z-index: 1;
  pointer-events: none;
}

.why-list {
  list-style: none;
  margin-top: 2rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.why-icon {
  color: var(--secondary-gold);
  font-size: 1.5rem;
}

/* ---------- CALL TO ACTION (CTA) ---------- */
.cta-section {
  background-color: var(--primary-blue);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background-color: var(--accent-red);
  border-radius: 50%;
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ---------- PAGE HEADERS ---------- */
.page-header {
  height: 600px;
  background-color: var(--primary-blue);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11,37,69,0.85);
  z-index: 1;
}

.page-header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  justify-content: center;
  color: var(--secondary-gold);
  font-family: var(--font-heading);
  font-weight: 500;
}

.breadcrumb a {
  color: var(--white);
}

.breadcrumb a:hover {
  color: var(--accent-red);
}

/* ---------- ABOUT PAGE ---------- */
.about-intro {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-text {
  flex: 1.2;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.about-text .highlight {
  color: var(--accent-red);
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.mv-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.mv-card {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary-gold);
}

.mv-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ---------- GALLERY PAGE ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11,37,69,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay h3 {
  color: var(--white);
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

/* ---------- BLOGS PAGE ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-img {
  height: 240px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 15px;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-title a {
  color: var(--primary-blue);
}

.blog-title a:hover {
  color: var(--accent-red);
}

/* ---------- CONTACT PAGE ---------- */
.contact-wrapper {
  display: flex;
  gap: 4rem;
}

.contact-info {
  flex: 1;
  background: var(--primary-blue);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.contact-info h3 {
  color: var(--secondary-gold);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--accent-red);
}

.info-text h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-form {
  flex: 1.5;
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(11,37,69,0.1);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Map Section */
.map-section {
  padding-bottom: 5rem;
}

.map-container {
  height: 400px;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- FOOTER ---------- */
.footer {
  background-color: var(--bg-dark);
  color: #a0aec0;
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-col h3,
.footer-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after,
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-red);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 60px;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-gold);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-gold);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .why-us, .about-intro, .contact-wrapper {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }
  
  .nav-list li {
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    display: block;
    padding: 1rem;
  }
  
  .nav-link::before {
    display: none;
  }
  
  /* Checkbox logic */
  .menu-toggle:checked ~ .nav-menu {
    max-height: 400px; /* Adjust according to number of links */
  }
  
  .menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-info-section {
    padding: 3rem 1.5rem;
    margin: 1.5rem 1rem;
    border-radius: 15px;
    border-left: none;
    border-top: 6px solid var(--secondary-gold);
  }

  .hero-description {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero-info-section .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-info-section .hero-text {
    font-size: 1.1rem;
    text-align: center;
  }

  .hero {
    height: 400px;
  }

  .page-header {
    height: 400px;
  }

  .hero-btns {
    flex-direction: column;
  }

  
  .mv-section {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-grid .footer-col:first-child,
  .footer-grid .footer-col:last-child {
    grid-column: span 2;
  }
  
  .footer-col {
    text-align: left;
  }
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
