* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "open sans", sans-serif;
  font-weight: 200;
  font-style: normal;
}

body,
html {
  font-family: "open sans", sans-serif;
  font-weight: 200;
  font-style: normal;
  height: 100%;
  background: black;
  touch-action: manipulation;
}

.video-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: black;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.picture-section {
  padding: 2rem 0;
  text-align: center;
  background-color: #000; /* optional background */
}

.image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem; /* optional: rounds the corners */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* optional: subtle shadow */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    to bottom,
    rgba(12, 35, 71, 0.3),
    rgba(0, 5, 15, 0.78),
    rgba(5, 17, 40, 0.52)
  );
  background-size: 100% 300%;
  background-position: top;
  animation: gradientShift 5s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

.navbar {
  width: 100%;
  padding: 25px 25px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  z-index: 10;
  background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 13px;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}
.logo {
  display: flex;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 65px;
  font-size: 18px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  transition: 0.3s;
}

.nav-links li a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.nav-links .btn {
  background: #cfd8dc;
  color: black;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .logo img {
    height: 50px;
  }

  .navbar {
    display: none !important;
  }
}

.hamburger-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.7));
  position: relative; /* important */
  z-index: 20; /* above the main navbar */
  display: none;
}

.hamburger-logo img {
  height: 50px;
}

.hamburger-toggle {
  display: none; /* shown only on mobile */
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 30; /* above menu */
}

.hamburger-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease; /* smooth animation */
}

.hamburger-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-toggle.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* Links */
.hamburger-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.hamburger-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger-navbar,
  .hamburger-toggle {
    display: flex;
  }

  .hamburger-links {
    position: absolute;
    top: 70px; /* adjust if needed */
    left: 0;
    right: 0;
    background-color: #000;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    display: none;
    z-index: 20;
  }

  .hamburger-links.show {
    display: flex;
  }

  .animated-button4 {
    width: 60% !important;
  }
}

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #2772eb;
  box-shadow: 0 0 0 2px #2772eb;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #2772eb;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background-color: #2772eb;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #2772eb;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.animated-button2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #2772eb;
  box-shadow: 0 0 0 2px #2772eb;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button2 svg {
  position: absolute;
  width: 24px;
  fill: #2772eb;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button2 .arr-1 {
  right: 16px;
}

.animated-button2 .arr-2 {
  left: -25%;
}

.animated-button2 .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 20px;
  background-color: #2772eb;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button2 .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button2:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button2:hover .arr-1 {
  right: -25%;
}

.animated-button2:hover .arr-2 {
  left: 16px;
}

.animated-button2:hover .text {
  transform: translateX(12px);
}

.animated-button2:hover svg {
  fill: #212121;
}

.animated-button2:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #2772eb;
}

.animated-button2:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.animated-button3 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 0 0 2px #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button3 svg {
  position: absolute;
  width: 24px;
  fill: #ffffff;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button3 .arr-1 {
  right: 16px;
}

.animated-button3 .arr-2 {
  left: -25%;
}

.animated-button3 .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button3 .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button3:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #000000ff;
  border-radius: 12px;
}

.animated-button3:hover .arr-1 {
  right: -25%;
}

.animated-button3:hover .arr-2 {
  left: 16px;
}

.animated-button3:hover .text {
  transform: translateX(12px);
}

.animated-button3:hover svg {
  fill: #000000ff;
}

.animated-button3:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #ffffffff;
}

.animated-button3:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.animated-button4 {
  width: 30%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 0 0 2px #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button4 svg {
  position: absolute;
  width: 24px;
  fill: #ffffff;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button4 .arr-1 {
  right: 16px;
}

.animated-button4 .arr-2 {
  left: -25%;
}

.animated-button4 .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button4 .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button4:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #000000ff;
  border-radius: 12px;
}

.animated-button4:hover .arr-1 {
  right: -25%;
}

.animated-button4:hover .arr-2 {
  left: 16px;
}

.animated-button4:hover .text {
  transform: translateX(12px);
}

.animated-button4:hover svg {
  fill: #000000ff;
}

.animated-button4:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #ffffffff;
}

.animated-button4:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 30px;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  display: none;
  list-style: none;
  z-index: 20;
  min-width: 150px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 15px;
}

.hero {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 5;
}

.hero h1 {
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 60px;
  width: 1000px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 50px;
}

.hero button {
  font-size: 20px;
}

.social-icons {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.social-icons img {
  width: 30px;
  margin-left: 10px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.social-icons img:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 38px;
    width: 600px;
  }

  .hero p {
    font-size: 22px;
  }

  .social-icons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
    width: 350px;
  }

  .hero p {
    font-size: 20px;
  }
}

.gradient-bg {
  background: none;
  background-image: url("../images/bg4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.gradient-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.gradient-bg2 {
  background: none;
  background-image: url("../images/bg2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.gradient-bg2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.video-section-wrapper {
  position: relative;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Wrapper for page content */
.content-wrapper {
  max-width: 1200px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-2 {
  margin-top: 0.5rem;
}

/* Headings */
h1 {
  font-weight: 600;
  color: #edf2f7;
  font-size: 1.75rem;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 1.875rem;
  }
}

/* Decorative underline */
.underline-group {
  display: flex;
  margin-top: 1.5rem;
  justify-content: flex-start;
  gap: 0.25rem;
}
.underline-group span {
  display: inline-block;
  border-radius: 9999px;
  background-color: #3b82f6; /* blue */
  height: 0.25rem;
}
.underline-group .long {
  width: 10rem;
}
.underline-group .medium {
  width: 0.75rem;
}
.underline-group .short {
  width: 0.25rem;
}

/* Flex container for header and arrows */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .flex-between {
    flex-direction: column;
    gap: 1rem;
  }
}

.features-section {
  background-color: black;
  padding: 60px 20px;
}

.features-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.features-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fcfcfcff;
  text-transform: capitalize;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.underline {
  margin-top: 8px;
  margin-right: 80px;
  text-align: center;
}

.line {
  display: inline-block;
  background-color: #3b82f6;
  border-radius: 9999px;
}

.line-lg {
  width: 160px;
  height: 4px;
}

.line-md {
  width: 12px;
  height: 4px;
  margin-left: 4px;
}

.line-sm {
  width: 4px;
  height: 4px;
  margin-left: 4px;
}

.features-content {
  margin-top: 40px;
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* MODIFIED: Change feature-item to horizontal layout */
.feature-item {
  display: flex;
  flex-direction: row; /* Changed from column to row */
  align-items: flex-start; /* Align items to the top */
  gap: 2rem; /* Increased gap for better spacing */
}

/* NEW: Style the picture section for left positioning */
.picture-section {
  flex: 0 0 300px; /* Fixed width, don't grow or shrink */
}

.image-wrapper {
  width: 100%;
  height: auto;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 9px;
  max-height: 250px; /* Limit height to keep it reasonable */
}

/* NEW: Create a wrapper for text content */
.feature-text-content {
  flex: 1; /* Take up remaining space */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center all content horizontally */
  text-align: center; /* Center text alignment */
  gap: 12px;
}

.icon-wrap {
  font-size: 1.5rem;
  padding: 12px;
  background-color: #e0f2fe;
  color: #3b82f6;
  border-radius: 12px;
  width: fit-content;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2772eb;
  margin-top: 0; /* Remove top margin since image is beside it */
}

.feature-desc {
  color: #ffffffff;
  line-height: 1.6;
}

.image-wrap {
  display: none;
  justify-content: center;
}

.image-wrap img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 9px;
}

/* RESPONSIVE: Stack vertically on smaller screens */
@media (max-width: 768px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .picture-section {
    flex: none;
    width: 100%;
  }

  .image-wrapper img {
    max-height: none; /* Remove height restriction on mobile */
  }
}

.social-icons2 {
  position: absolute;
  display: flex;
  right: 100px;
  align-items: center;
  z-index: 1;
}

.social-icons2 img {
  width: 30px;
  margin-left: 10px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.social-icons2 img:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    word-wrap: break-word; /* ensures long text wraps */
  }

  .footer p {
    margin-bottom: 10px;
    max-width: 90%; /* optional: prevents overflow */
  }

  .social-icons2 {
    justify-content: center;
    gap: 45px;
    margin-top: 70px;
  }
}

@media (min-width: 1024px) {
  .features-content {
    flex-direction: row;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    flex: 1;
  }

  .image-wrap {
    display: flex;
    flex: 1;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.modal-box {
  background: white;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  padding: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-box.show {
  transform: scale(1);
  opacity: 1;
}

.modal-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.modal-content {
  text-align: center;
  margin-top: 1rem;
}

.dots {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.dot {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: #d1d5db;
}

.dot.active {
  background: #3b82f6;
}

.modal-buttons {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
}

.btn-skip,
.btn-next {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-skip {
  background: #e5e7eb;
  color: #111827;
}

.btn-skip:hover {
  background: #d1d5db;
}

.btn-next {
  background: #3b82f6;
  color: white;
}

.btn-next:hover {
  background: #2563eb;
}

.container3 {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: white;
  text-transform: capitalize;
}

.subtitle {
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.pricing-card {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  text-align: center;
}

.pricing-card:hover {
  background: #2563eb;
  color: white;
}

.pricing-card:hover .plan-name,
.pricing-card:hover .duration,
.pricing-card:hover .price {
  color: white;
}

.plan-name {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #666;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
}

.duration {
  font-size: 0.9rem;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-blue {
  background-color: #4a90e2;
  color: #fff;
}

.btn-white {
  background-color: #fff;
  color: #4a90e2;
  border: 1px solid #4a90e2;
}

.btn:hover {
  background-color: #357dbf;
}

.dark-bg-gray-900 {
  background-color: #333;
  color: #fff;
}
