* {
  font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
  background: #f4f4f4;
}

/* Navbar */
nav {
  position: sticky;
  top: 0;
  background: #f4f4f4;
  color: white;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #00354f;
  transition: color 0.3s ease;
}

.menu-items {
  align-items: center;
  gap: 40px;
  color: #00354f;
  vertical-align: middle;
}

nav ul li a:hover {
  color: #3eb0f7;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
  background: none;
  border: none;
  color: 00354f;
}

@media (max-width: 768px) {
  nav ul {
    display: flex;
    flex-direction: column;
    background: #f4f4f4;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0;
    border-radius: 0 0 8px 8px;

    /* Hidden by default */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
  }

  nav ul.active {
    max-height: 500px; /* enough for links */
    opacity: 1;
    transform: translateY(0);
    padding: 1rem;
  }

  nav ul li {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    color: #00354f;
  }

  nav ul.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-items {
    align-items: center;
    gap: 20px;
    color: #00354f;
  }

  /* Staggered animation effect */
  nav ul.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  nav ul.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  nav ul.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  nav ul.active li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .menu-toggle {
    display: block;
  }
}

section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  height: 100vh;
}
section:nth-child(even) {
  background: #f4f4f4;
  color: #333;
}
.started-btn {
  padding: 10px 15px;
  background-color: #1f7dc0;
  color: #fff;
  border-radius: 5px;
  border: none;
  font-size: 13px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.started-btn:hover {
  background-color: #1a5d8a;
}

.menu {
  color: #00354f;
}

.main-container {
  max-width: 100%;
  background-repeat: no-repeat;
  opacity: 0.9;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f4;
}

/* Hero section starts here */
.main-container-hero-home {
  max-width: 100%;
  background-repeat: no-repeat;
  opacity: 0.9;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
  justify-content: space-between;
  align-items: center;
  background-color: #1f7dc0;
  background: linear-gradient(0deg, rgba(31, 125, 192, 0.6)),
    url("background.jpg");
  background-size: cover;
  background-position: center;
}
.main-container-hero {
  max-width: 100%;
  background-repeat: no-repeat;
  opacity: 0.9;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
  justify-content: space-between;
  align-items: center;
  background-color: #1f7dc0;
  background: linear-gradient(0deg, rgba(31, 125, 192, 0.6)),
    url("background.jpg");
  background-size: cover;
  background-position: center;
}
.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-container {
  width: 60%;
}

.left-title {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.sub-text {
  color: #fff;
  font-size: 22px;
}
.primary-btn {
  padding: 8px 15px;
  background-color: #fff;
  color: #1f7dc0;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-right: 20px;
  border: #f4f4f4 solid 2px;
}

.primary-btn:hover {
  background-color: #6dbe46;
  color: #fff;
  border: #6dbe46 solid 1px;
}

.watch-video-btn {
  background: linear-gradient(0deg, rgba(31, 125, 192, 0.6));
  color: #f4f4f4;
}

.checkmark::before {
  content: "✔";
  color: #6dbe46;
  font-size: 12px;
  margin-left: 10px;
}

.right-container {
  width: 50%;
}

.right-content {
  width: 70%;

  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-text {
  font-size: 35px;
  font-weight: 500;
  color: #00354f;
}
.form-input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.form-input:focus {
  border-color: #1f7dc0;
  outline: none;
  box-shadow: 0 0 5px rgba(31, 125, 192, 0.5);
}

.form-links {
  text-decoration: none;
  color: #1f7dc0;
}

.form-links:hover {
  text-decoration: none;
  color: #6dbe46;
}

.regular-text {
  color: #00354f;
  text-align: left;
  font-size: 17px;
  line-height: 1.5rem;
}

.main-hr {
  width: 20px;
  height: 2px;
  border: none;
  margin: 20px auto;
}

.started-btn {
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  margin-top: 20px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .main-container {
    height: 100hv;
  }
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    padding-top: 2px;
  }

  .left-container,
  .right-container {
    width: 100%;
    padding: 10px;
  }

  .left-title {
    font-size: 30px;
    margin-top: 8px;
  }

  .page-header {
    font-size: 25px !important;
    margin-top: -10px;
    font-weight: 700;
  }

  .main-container-hero {
    height: 35px;
  }

  .primary-btn {
    padding: 6px 8px;
    background-color: #fff;
    color: #1f7dc0;
    border-radius: 5px;
    border: none;
    font-size: 13px;
    cursor: pointer;
    font-weight: 400;
    transition: background-color 0.3s ease;
    margin-right: 2px;
    border: #f4f4f4 solid 2px;
  }

  .watch-video-btn {
    background: linear-gradient(0deg, rgba(31, 125, 192, 0.6));
    color: #f4f4f4;
  }

  .sub-text {
    font-size: 16px;
    text-align: left;
    margin-bottom: 10px;
  }

  .right-content {
    width: 80%;
    height: auto;
    margin-top: 0px;
    border-radius: 10px;
  }
  .login-text {
    font-size: 25px;
    font-weight: 500;
    color: #00354f;
  }

  .create-account {
    font-size: 12px;
    font-weight: 400;
    text-align: left !important;
    line-height: 1.3rem !important;
  }

  .form-input {
    font-size: 14px;
    border-radius: 5px;
  }

  .started-btn {
    font-size: 14px;
    border-radius: 5px;
  }

  table {
    margin-bottom: -10px;
  }
}

/* Hero section ends here */

/* About section starts here */
.section-heading {
  font-weight: 600;
  margin-top: -10px;
  font-size: 30px;
}
.about-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.about-cards {
  margin: 0 auto;
  padding: 0.85rem 2rem;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-card-left {
  width: 50%;
}
.about-card-image {
  width: 45%;
}
.about-card-right {
  width: 50%;
  padding-left: 50px;
  padding-right: 20px;
}
.about-image {
  border-radius: 8%;
  width: 99.2%;
  margin-bottom: -5px !important;
  border-top: #6dbe46 solid 3px;
  border-left: #6dbe46 solid 3px;
}
.about-image-container {
  border-radius: 8%;
  border-right: #1f7dc0 solid 3px;
  border-bottom: #1f7dc0 solid 3px;
}

.partners-logo {
  width: 30%;
  float: center;
}

.airtel {
  float: right;
}

.mtn {
  float: left;
}

.about-sms {
  text-align: left;
  font-size: 18px;
  line-height: 1.9rem;
  color: #00354f;
}

@media (max-width: 768px) {
  .about-card-image {
    width: 100%;
  }
  .section-heading {
    font-weight: 500;
    margin-top: -10px;
    font-size: 22px;
    text-align: center;
  }
  .about-section {
    margin-top: 0px;
    width: 90%;
  }
  .about-cards {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0.5rem 0.5rem;
    align-items: center;
  }

  .partners-logo {
    width: 60%;
    float: center;
    margin-bottom: -10px;
  }

  .about-image-container {
    width: 100%;
    margin-top: -30px;
    border-radius: 20px;
    border-right: #1f7dc0 solid 3px;
    border-bottom: #1f7dc0 solid 3px;
  }

  .about-image {
    border-radius: 20px;
    width: 99%;
    margin-bottom: -5px;
    border-top: #6dbe46 solid 3px;
    border-left: #6dbe46 solid 3px;
  }

  .about-card-left {
    width: 100%;
    justify-content: center;
  }
  .about-card-right {
    width: 100%;
    padding: 10px;
  }
  .regular-text {
    text-align: left;
    font-size: 16px;
    line-height: 1.6rem;
  }
}
/* About section ends here */

/* Why Bulk SMS Gateway section starts here */
.bulksms-no {
  font-size: 80px;
  color: #1f7dc038;
  font-family: Arial, sans-serif;
}
.bulksms-wrap {
  width: 70%;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 30px;
  margin-top: -125px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  z-index: 0;
}
.bulksms-icon {
  width: 100%;
}
.bulksms-title {
  color: #1f7dc0;
  font-size: 22px;
  font-weight: 600;
}
.bulksms-hr {
  width: 10%;
  height: 2px;
  background-color: #1f7dc0;
  border: none;
  margin-left: 0;
  margin-top: -15px;
}
.bulksms-content {
  font-size: 17px;
}
.reminders {
  margin-top: -50px;
  position: relative;
  z-index: 3;
}
.boost-sales {
  margin-top: -130px;
  position: relative;
  z-index: 2;
}
.notify-customers {
  margin-top: -280px;
  position: relative;
  z-index: 1;
}
.confirm-agreements {
  margin-top: -150px;
  z-index: 0;
}

.keep-customers {
  margin-top: -60px;
}

@media (max-width: 768px) {
  .bulksms-no {
    font-size: 85px;
  }
  .reminders {
    margin-top: -80px;
    position: relative;
    padding: 10px;
  }
  .boost-sales {
    margin-top: -60px;
    position: relative;
    padding: 10px;
    margin-bottom: 150px;
  }
  .notify-customers {
    margin-top: -300px;
    position: relative;
    padding: 10px;
    margin-bottom: 20px;
  }
  .confirm-agreements {
    margin-top: -80px;
    padding: 10px;
    margin-bottom: 130px;
  }

  .keep-customers {
    margin-top: 90px;
  }

  .bulksms-title {
    font-size: 17px;
    word-wrap: break-word;
  }
}

/* Why Bulk SMS Gateway section starts here */

/* Why Choose Us section starts here */
.choose-icon {
  width: 15%;
  margin-bottom: -4%;
}
/* Why Choose Us section ends here */

/* Strategic Partners Section begins here */
.main-why-choose {
  background: #1f7dc0;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

.about-why-card {
  width: 33%;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff !important;
  margin: 10px;
}
.testimonial-card {
  width: 33%;
  padding-left: 50px;
  padding-right: 20px;
}
.testimonials {
  padding: 10px;
  border-radius: 2%;
  border: #ccc solid 2px;
  margin-top: -25px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  background: #ffffff24;
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
  }
  .about-why-card {
    width: 100%;
    padding: 10px;
    margin: 0px;
  }

  .about-card-left {
    width: 50%;
  }
}

/* Strategic Partners Section ends here */

/*======== Contact Page ===========*/
/* Contact Page Banner Starts here */
.sub-text-contact {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.form-input-contact {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 6px;
}

.contact-icon {
  color: #fff;
  font-size: 15px;
  margin-bottom: 0px;
}

/* ====Contact Us Page Ends Here ===*/

/* ===== Start Terms and Conditions Page ====*/
.term-container {
  border-width: 1px;
  border-style: solid;
  border-color: #6dbe46;
  border-radius: 5px;
  padding: 20px;
  margin: 20px;
}
.term-header {
  color: #1f7dc0;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}
.term-content {
  font-size: 16px;
  color: #022247;
  line-height: 1.5;
}
/* ===== End Terms and Conditions Page ====*/

/* ==== Pricing Page Starts Here ==== */
.pricing-table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  background: #fff;
}

.making-payments {
  text-align: center;
  font-size: 25px;
  color: #00354f;
  font-weight: 500;
  margin-bottom: 20px;
}

.last-th {
  border-radius: 0px 8px 0px 0px;
}

.first-th {
  border-radius: 8px 0px 0px 0px;
}

.payment-container {
  position: relative;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  position: relative;
  padding-left: 10px;
}

.step-number {
  background-color: #e7f0ff;
  color: #0066ff;
  font-weight: bold;
  font-size: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 15px;
  position: relative;
}

/* vertical connecting line */
.step-number::after {
  content: "";
  position: absolute;
  top: 34px; /* starts from bottom of circle */
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 15px);
  background-color: #d0d8e5;
  z-index: 0;
}

/* hide line after last step */
.step:last-child .step-number::after {
  display: none;
}

.step-content {
  z-index: 1;
}

.step-content h3 {
  font-size: 18px;
  color: #0a0a0a;
  margin: 0 0 6px 0;
}

.step-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .payment-container {
    padding: 25px;
  }

  .step-content h3 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 14px;
  }

  .sub-text-contact {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
  }
}

/* ===== End Pricing Page ====*/

/* ===== Start Recover Page ====*/
.recovery-container {
  display: flex;
  background: #f4f4f4;
  width: 93%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Left section (image) */
.left-section {
  background: #f3f8ff;
  justify-content: bottom;
  align-items: bottom;
  padding-bottom: 0px;
}

.left-section img {
  width: 100%;
  height: auto;
  max-width: 360px;
}

/* Right section (form) */
.right-section {
  flex: 1;
  padding: 50px 40px;
  position: relative;
}

.top-links {
  text-align: right;
  margin-bottom: 10px;
}

.back-link {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.back-link span {
  color: #007bff;
  font-weight: 500;
}

.right-section h2 {
  color: #022247;
  font-size: 22px;
  margin-bottom: 25px;
}

.recovery-form {
  display: flex;
  flex-direction: column;
}

.recovery-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.recovery-form input[type="email"] {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  outline: none;
}

.radio-group {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  font-size: 14px;
}

.radio-group input[type="radio"] {
  accent-color: #007bff;
  margin-right: 6px;
}

.flower-img {
  width: 17%;
  float: right;
  margin-top: -320px;
}

/* Responsive */
@media (max-width: 768px) {
  .recovery-container {
    flex-direction: column;
  }

  .left-section {
    display: none;
  }

  .right-section {
    padding: 30px;
  }
}
/* ===== End Recover Page ====*/
