/* Global Styles */
:root {
  /* Color Palette */
  --primary: #ff0000;
  --accent: #00ffb2;
  --secondary: #0b0c10;
  --support: #b0bec5;
  --white: #ffffff;

  /* Typography */
  --heading-font: "Poppins", sans-serif;
  --body-font: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}

a {
  text-decoration: none;
  color: red;
}

body {
  font-family: var(--body-font);
  color: var(--secondary);
  line-height: 1.6;
  overflow-x: hidden;
}


/* HERO SECTION */
.hero {
  width: 100%;
  padding: 40px 20px;
  padding-top: 80px; /* reduce top space */
  background: #ffffff;
}

.hero-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Content */
.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* VIDEO RESPONSIVE WRAPPER */
.hero-video-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  position: relative;
}

.hero-video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* MOBILE FIXES */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 20px;
  }

  .hero {
    padding-top: 40px; /* remove big top space */
  }

  .hero-video-wrapper {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* FADE IN ANIMATION */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.1s ease forwards;
}

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

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

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--body-font);
}

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

.btn-primary:hover {
  background: #0069d9;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: rgba(0, 123, 255, 0.1);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Full-screen video overlay */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-overlay video {
  max-width: 90%;
  max-height: 90%;
}

.video-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
/* video placeholder css */

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
}

.logo h2 {
  color: var(--primary);
  font-family: var(--heading-font);
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-links li {
  /* margin: 0 15px; */
  font-size: 17px;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}
.nav-buttons {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1036px) {
  .nav-links {
    gap: 10px;
  }
  .nav-links li {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .logo h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 383px) {
  .logo h2 {
    font-size: 15px;
  }
}

/* nav hero section ends */

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 150px 5% 100px;
  background: linear-gradient(
    135deg,
    rgba(255, 8, 0, 0.023) 0%,
    rgba(255, 102, 0, 0.005) 100%
  );
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      transparent 49%,
      rgba(0, 123, 255, 0.1) 50%,
      transparent 51%
    ),
    linear-gradient(
      transparent 49%,
      rgba(0, 123, 255, 0.1) 50%,
      transparent 51%
    );
  background-size: 50px 50px;
  z-index: -1;
}

.hero-content {
  width: 40%;
  padding-right: 50px;
}

.hero-content h1 {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}
.hero-buttons {
  display: flex;
  gap: 5px;
}

.hero-graphics {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-animation {
  position: relative;
  flex: 1;
  min-height: 300px;
  display: flex;
  place-content: center;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.dashboard-animation img {
  max-width: 100%;
  border-radius: 10px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
  height: 560px;
}

.float-image-left {
  position: absolute;
  left: -150px;
  top: 50px;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

.float-image-right {
  position: absolute;
  right: -170px;
  top: 50px;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

@media screen and (max-width: 1462px) {
  .hero-buttons button {
    gap: 5px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1356px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .dashboard-animation img {
    height: 500px;
  }
  .float-image-left {
    left: -130px;
  }
  .float-image-right {
    right: -130px;
  }
}
@media screen and (max-width: 1300px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 1110px) {
  .dashboard-animation img {
    height: 420px;
  }
  .float-image-left {
    left: -140px;
  }
  .float-image-right {
    right: -140px;
  }
}
@media screen and (max-width: 986px) {
  .hero {
    gap: 20px;
  }
  .hero-content {
    width: 90%;
    margin-top: 70px;
  }
  .dashboard-animation img {
    height: 360px;
  }
  .float-image-left {
    left: -140px;
  }
  .float-image-right {
    right: -140px;
  }
}
@media screen and (max-width: 766px) {
  .hero {
    padding: 0;
    margin-top: 60px;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .dashboard-animation img {
    height: 350px;
  }
  .float-image-left {
    top: 20px;
  }
  .float-image-right {
    top: 20px;
  }
}
@media screen and (max-width: 646px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .dashboard-animation img {
    height: 300px;
  }
}
@media screen and (max-width: 576px) {
  .hero {
    margin-top: 0;
  }
  .dashboard-animation img {
    height: 280px;
  }
  .float-image-left {
    left: -100px;
    height: 230px !important;
    top: 50px;
  }
  .float-image-right {
    right: -100px;
    height: 230px !important;
    top: 50px;
  }
}
@media screen and (max-width: 426px) {
  .dashboard-animation img {
    height: 210px;
  }
  .float-image-left {
    left: -80px;
    top: 20px;
    height: 180px !important;
  }
  .float-image-right {
    right: -80px;
    top: 20px;
    height: 180px !important;
  }
}
/* hero section ends */

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.how-it-works h2 {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--secondary);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.step {
  flex: 0 0 30%;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 0, 123, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 2rem;
}

.step h3 {
  font-family: var(--heading-font);
  margin-bottom: 15px;
  color: var(--secondary);
}

@media screen and (max-width: 1025px) {
  .how-it-works h2 {
    font-size: 2rem;
  }
}

/* Why Choose Section */
.why-choose {
  padding: 100px 0;
  background: #fff9eb;
  /* background: linear-gradient(135deg, var(--secondary) 0%, #1a1c25 100%); */
  color: black;
}

.why-choose h2 {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.features-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature {
  flex: 0 0 22%;
  text-align: center;
  /* padding: 30px; */
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 0, 60, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: red;
  font-size: 1.8rem;
}

.feature h3 {
  font-family: var(--heading-font);
  margin-bottom: 15px;
}
@media screen and (max-width: 1025px) {
  .why-choose h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 514px) {
  .why-choose h2 {
    font-size: 1.3rem;
  }
}

/* For Whom Section */
.for-whom {
  padding: 100px 0;
  background: var(--white);
}

.for-whom h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.for-whom p {
  font-size: 1.2rem;
  max-width: 700px;
  color: #555;
}

.audience-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 500px;
}

.audience {
  border-radius: 10px;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin: 20px 0;
  gap: 20px;
}

.audience-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.audience-image {
  flex: 1;
  height: 700px;
  /* background-color: blue; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-image img {
  /* width: 100%; */
  height: 80%;
  object-fit: contain;
  border-radius: 10px 0 0 10px;
}

.audience .hero-buttons {
  margin-top: 20px;
}

/* .audience:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

.audience-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 1.8rem;
}

.audience h3 {
  font-family: var(--heading-font);
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: 40px;
}

@media screen and (max-width: 900px) {
  .audience h3 {
    font-size: 30px;
  }
  .audience .hero-buttons {
    font-size: 12px;
  }
}
@media screen and (max-width: 659px) {
  .audience {
    flex-direction: column;
    align-items: flex-start;
  }
  .audience-image img {
    max-width: 100%;
    max-height: 500px;
  }
  .audience-image {
    height: 300px;
  }

  .audience:nth-child(2) {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 426px) {
  .audience h3 {
    font-size: 25px;
  }
  .audience-image img {
    max-width: 100%;
    max-height: 300px;
  }
}
/* End For Whom Section */

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #fff9eb;
}

.testimonials h2 {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.testimonials p {
  text-align: center;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
}

.stats-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.stat {
  text-align: center;
  padding: 0 30px;
  border-right: 1px solid var(--support);
}

.stat:last-child {
  border-right: none;
}

.stat h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.testimonials-container {
  display: flex;
  justify-content: center;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-style: italic;
  text-align: left;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-author h4 {
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

/* Final CTA Section */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgb(45, 2, 2) 0%, #350211 100%);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons .btn {
  margin: 0 10px;
}

.cta-buttons .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.cta-buttons .btn-primary:hover {
  background: var(--support);
}

.cta-buttons .btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
  background: var(--secondary);
  color: var(--white);
  padding: 70px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-logo h2 {
  color: red;
  font-family: var(--heading-font);
  margin-bottom: 15px;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--support);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-icons a {
  color: var(--white);
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Chatbot Icon */
.chatbot-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: transform 0.3s ease;
}

.chatbot-icon:hover {
  transform: scale(1.1);
}

/* Webinar Popup */
.webinar-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

.popup-content {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #777;
}

.popup-content h3 {
  font-family: var(--heading-font);
  margin-bottom: 15px;
  color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
  }

  .feature,
  .audience {
    flex: 0 0 45%;
    margin-bottom: 30px;
  }

  .stat {
    padding: 0 15px;
  }

  .footer-content {
    flex-wrap: wrap;
  }

  .footer-logo,
  .footer-links,
  .footer-social {
    flex: 0 0 100%;
    margin-bottom: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .step,
  .feature,
  .audience {
    flex: 0 0 50%;
    padding: 0;
  }

  .stats-bar {
    flex-wrap: wrap;
  }

  .stat {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid var(--support);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .stat:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

@media (max-width: 576px) {
  .nav-container {
    /* flex-direction: column; */
    padding: 15px;
  }

  /* .nav-buttons {
    margin-top: 15px;
  } */

  .nav-buttons .btn {
    /* margin: 0 5px; */
    padding: 8px 15px;
    font-size: 0.7rem;
  }

  .hero {
    padding: 120px 5% 50px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn-large {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .how-it-works h2,
  .why-choose h2,
  .for-whom h2,
  .testimonials h2,
  .final-cta h2 {
    font-size: 1.5rem;
  }
}
