:root {
  --purple: var(--purple, #6a49f2);
  --dark-purple: var(--dark-purple, #32236f);
  --body-text-purple: var(--body-text-purple, #3e3f66);
  --text-white: var(--text-white, #fff);
  --bg-white: var(--bg-white, #fff);
  --card-radius: 16px;
  --ring: 0 0 0 3px rgba(106, 73, 242, 0.18);
  --shadow-md: 0 10px 30px rgba(50, 35, 111, 0.1);
  --shadow-lg: 0 18px 50px rgba(50, 35, 111, 0.16);
  --card-shadow: 0 10px 30px rgba(50, 35, 111, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #f8f9fb;
  color: #222;
  line-height: 1.6;
}

/* Hero Section */
.hero2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  /* background: #0d1224; */
  /* background-image: url(/img/bg-img/bg-2.jpg); */
  color: white;
  flex-wrap: wrap;
}

.hero-content2 {
  flex: 1;
  min-width: 300px;
}

.hero2 h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1rem;
  max-width: 500px;
}

.hero-img2 img {
  width: 280px;
}

/* About Section - Responsive Fix */
.about {
  display: flex;
  justify-content: space-between;
  padding: 60px 10%;
  flex-wrap: wrap;
  gap: 20px;
}

.about-text,
.about-img {
  flex: 1 1 45%; /* allows shrinking and growing */
  min-width: 280px; /* prevents too small on mobile */
}

.about-text h3 {
  font-size: 2.5rem;
  font-weight: 600;
  padding-bottom: 20px;
  color: #220743;
}

.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.about-img img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 70px;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .about {
    flex-direction: column-reverse;
    align-items: center;
    padding: 40px 5%;
  }
  .breadcumb-area {
    height: 400px !important;
  }

  .about-text,
  .about-img {
    flex: 1 1 100%;
    min-width: 100%;
    text-align: center;
  }

  .about-img img {
    max-height: 300px;
  }

  .getintoch {
    flex-direction: column;
    padding: 40px 5%;
  }

  .signup-content,
  .form-container {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .signup-content h3 {
    font-size: 1.8rem;
  }
}

/* Features Section */
.features {
  text-align: center;
  padding: 70px 10%;
}

.features h3 {
  font-size: 3rem;
  font-weight: 600;
  color: #220743;
}

.features p {
  margin: 10px auto 30px;
  max-width: 600px;
  color: #555;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
  box-shadow: var(--card-shadow);

  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(50, 35, 111, 0.12);
}

.feature-card img {
  width: 50px;
  margin-bottom: 15px;
}

.feature-card h4 {
  color: #0d1224;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* Signup Section */
.getintoch {
  color: black;
  padding: 60px 10%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px; /* smaller gap looks cleaner */
  align-items: center;
  border: 2px solid #00000049;
  width: 95%;
  margin: 0 auto;
  border-radius: 10px;
}

.signup-content,
.form-container {
  flex: 1 1 45%; /* makes them share equal available space */
  max-width: 50%; /* optional: prevents one from growing too large */
}

.form-container {
  border-radius: 12px;
  padding: 40px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
  box-shadow: var(--card-shadow);
}

.signup-content h3 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
}

.signup-content ul {
  list-style: none;
  margin-bottom: 25px;
  padding-left: 0;
}

.signup-content li {
  margin: 8px 0;
  line-height: 1.5;
}

.partner-badge {
  margin-top: 20px;
  max-width: 150px;
  height: auto;
}

.feedback-form {
  display: flex;
  flex-direction: column;
}

.feedback-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.form-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: #f8f8f8;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: #6a49f2;
  background-color: #fff;
  outline: none;
}

.feedback-form textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.checkbox input {
  margin-right: 8px;
}

.feedback-form button {
  background-color: #6a49f2;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feedback-form button:hover {
  background-color: #5e3be7;
  transform: translateY(-2px);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .content {
    flex-direction: column;
    align-items: center;
  }

  .form-container,
  .review {
    width: 100%;
  }
}

.btn {
  background: #6a49f2;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #6a49f2;
}

/* Video Section */
.video {
  padding: 70px 10%;
  text-align: center;
}

.video h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #220743;
}
.video p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.6;
}

.video-container {
  margin-top: 25px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero,
  .about {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-img img,
  .about-img img {
    margin-top: 25px;
  }
}
