.elementor-5664 .elementor-element.elementor-element-ebca6d9{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f1c15b7 *//* ================= ROOT ================= */
:root {
  --primary: #111827;
  --secondary: #1f2937;
  --accent: #2563eb;
  --light: #f6f8fb;
  --text: #374151;
  --white: #ffffff;
  --radius: 14px;
}

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

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.7;
}

/* ================= UTILITIES ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 90px 0;
}

.section.light {
  background: var(--light);
}

.section.gradient {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
}

.center {
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.align-center {
  align-items: center;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  width: 100vw;
  height: 90vh;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 0 20px;
}



/* ================= TYPOGRAPHY ================= */
h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
}

.section.gradient h2 {
  color: #ffffff;
}

h3 {
  font-size: 24px;
  margin: 15px 0 10px;
  color: var(--primary);
}

.section.gradient h3 {
  color: #ffffff;
}

h4 {
  font-size: 18px;
  margin-top: 15px;
  color: var(--primary);
}

p {
  font-size: 16px;
}

/* ================= IMAGES ================= */
.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.image-card img {
  width: 100%;
  display: block;
}

/* ================= CARDS ================= */
.card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.section.gradient .card {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.card img {
  max-width: 70px;
}

.card ul {
  margin-top: 15px;
  padding-left: 18px;
}

.card li {
  margin-bottom: 8px;
}

/* ================= ANIMATIONS ================= */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 0.9s ease forwards;
}

.slide-left {
  animation: slideLeft 0.9s ease forwards;
}

.slide-right {
  animation: slideRight 0.9s ease forwards;
}

.zoom-in {
  animation: zoomIn 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 75vh;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }
}/* End custom CSS */