@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
}

/* Header - Navbar */

header {
  background-color: #fff;
  padding: 10px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1150px;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

.logo img {
  width: 100%;
}

.menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
  font-size: 1.125rem;
}

.menu ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #141414;
  font-weight: 500;
}
.active {
  color: #0065fe !important;
}

.menubar {
  display: none;
}

.login-signup {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn {
  border: none;
  background: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.btn-login {
  color: #0065fe;
  font-weight: 600;
}

.btn-try {
  font-weight: 600;
  padding: 12px 31.5px;
  background-color: #0065fe;
  color: white;
  border-radius: 100px;
}

@media only screen and (max-width: 992px) {
  nav {
    padding-inline: 0.625rem;
  }
  .logo img {
    width: 80%;
  }

  .menu {
    display: none;
  }

  .login-signup {
    display: none;
  }

  .menubar {
    display: block;
  }
}

/* Main Sections */

.hero {
  max-width: 948px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}


.seamless{
  max-width: 948px;
  margin: 0 auto;
}

.seamless img{
  width: 100%;
}

.hero h1 {
  font-size: 3rem;
  line-height: 6rem;
  font-weight: 700;
  color: #141414;
}

.hero p {
  max-width: 781px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #141414;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-span {
  position: relative;
  color: #0065fe;
}

.hero-span svg {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%);
}

@media only screen and (max-width: 992px) {
  .hero h1 {
    font-size: 2rem;
    line-height: 4rem;
  }
  .hero p {
    font-size: 1.025;

    max-width: 600px;
  }
}

@media only screen and (max-width: 768px) {
  .hero {
    padding-block: 6rem;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 3rem;
  }

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

  .hero-btns {
    gap: 1.5rem;
  }
}

/* Oval */

.oval {
  min-height: 12vh;
  background-image: url("./assets/oval.png");
  background-size: cover;
  background-position: center;
  max-width: 2000px;
  margin: 0 auto;
}

/* Stats sections */

.stats-container {
  padding: 3rem 1rem;
  background-color: #f9fbfd;
}

.stats {
  max-width: 1150px;
  margin: 0 auto;
  padding-inline: 1.25rem;
  display: flex;
  justify-content: space-between;
}

.stats-main h3 {
  font-size: 2.2rem;
  line-height: 3rem;
  color: #141414;
  margin-bottom: 1.5rem;
}

.stats-main h3 span {
  color: #0065fe;
}

.stats-possibilites {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  color: #141414;
}

.possibilities {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 143px;
}

.possibilities h4 {
  font-size: 2rem;
  font-weight: 600;
}

.possibilities p {
  font-size: 1rem;
  color: #555;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .stats-main h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .stats-possibilites {
    gap: 24px;
  }

  .possibilities {
    width: 120px;
  }

  .possibilities h4 {
    font-size: 1.8rem;
  }

  .possibilities p {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 480px) {
  .stats {
    flex-direction: column;
  }

  .stats-main h3 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .stats-possibilites {
    flex-direction: column;
    /* align-items: center; */
    gap: 20px;
  }

  .possibilities {
    width: 100%;
  }

  .possibilities h4 {
    font-size: 1.6rem;
  }

  .possibilities p {
    font-size: 0.85rem;
  }
}

/* Why us section  */
.why {
  max-width: 1150px;
  margin: 0 auto;
  padding: 8rem 1.25rem;
}

.why {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .why {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.25rem;
  }

  .why-right {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
  }
}

.why-left h2 {
  position: relative;
  font-size: 2.5rem;
  color: #141414;
}

.why-left h2 span {
  color: #005ae2;
}
.why-left h2::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 40px;
  left: -15px;
  top: 10px;
  background: linear-gradient(to bottom, #112232, #4d6b8800);
}

.why-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 4rem;
  column-gap: 2rem;
}

.grid-item {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.grid-item-icon {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #3284ff21;
  width: fit-content;
}

.grid-item-icon img {
  width: 20px;
  height: 20px;
}

.grid-item-content {
  color: #141414;
}

.grid-item-content h3 {
  font-size: 1.75rem;
  line-height: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.grid-item-content p {
  line-height: 1.75rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .why {
    padding: 2rem 1rem;
  }

  .why-left h2 {
    font-size: 2rem;
  }
  .why-right {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-item-content h3 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .grid-item-content p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}

/* Pricing section */

/* .pricing {
  max-width: 1150px;
  margin: 0 auto;
  padding: 6rem 1.25rem;
}

.pricing-header {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.pricing-header h2 {
  position: relative;
  font-size: 2.5rem;
  color: #141414;
}

.pricing-header h2 span {
  color: #005ae2;
}

.pricing-header h2::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 40px;
  left: -15px;
  top: 10px;
  background: linear-gradient(to bottom, #112232, #4d6b8800);
}

.pricing-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.pricing-btn {
  padding: 18px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.custom-btn {
  border: 2px solid #0065fe;
  color: #0065fe;
  background-color: transparent;
}

.select-btn {
  background-color: #0065fe;
  border: none;
  color: white;
} */

.pricing {
  max-width: 1150px;
  margin: 0 auto;
  padding: 6rem 1.25rem;
}

.pricing-header {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h2 {
  position: relative;
  font-size: 2.5rem;
  color: #141414;
}

.pricing-header h2 span {
  color: #005ae2;
}

.pricing-header h2::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 40px;
  left: -15px;
  top: 10px;
  background: linear-gradient(to bottom, #112232, #4d6b8800);
}

.prices {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 24px; */
  margin: 0 auto;
  max-width: 1000px;
}

.prices-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.professional {
  background: #1e293b;
  color: white;
  padding: 6rem 2rem;
  /* transform: translateY(-10px); */
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 500;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.plan-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.professional .plan-description {
  color: #cbd5e1;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.feature-item::before {
  content: "✓";
  color: #005ae2;
  font-weight: bold;
}

.professional .feature-item::before {
  color: #fff;
}

.pricing-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.pricing-btn {
  padding: 18px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-btn {
  border: 2px solid #0065fe;
  color: #0065fe;
  background-color: transparent;
}

.select-btn {
  background-color: #0065fe;
  border: none;
  color: white;
}

@media (max-width: 968px) {
  .prices {
    flex-direction: column;
    padding: 0 1rem;
  }

  .prices-item {
    max-width: 100%;
  }

  .professional {
    transform: translateY(0);
  }

  .pricing-header h2 {
    font-size: 2rem;
  }

  .pricing-btns {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }

  .pricing-btn {
    width: 100%;
  }
}

/* trim section */

.trim {
  background-color: #1e3448;
  min-height: 50vh;
  padding-block: 5.25rem;
}

.cta {
  background-color: #1e3448;
  padding-block: 5.25rem;
}

.cta-container{
  max-width: 50.375rem;
  padding: 2.625rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.cta-container h3{
  font-size: 2.5rem;
  color: white;
}

.trim-container {
  max-width: 29.75rem;
  padding: 2.625rem;
  margin: 0 auto;
  background-color: white;
  overflow: hidden;
  border-radius: 12px;
}

.trim-container button {
  width: 100%;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.trim-container p {
  font-size: 14px;
  margin-top: 24px;
  color: #3284ff;
}

.trim-container p span {
  font-weight: bold;
}

input,
select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #3284ff;
  border-radius: 12px;
  font-size: 14px;
  background: white;
  color: #3284ff;
}
input::placeholder {
  color: #3284ff;
}

.form-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.trim-absolute {
  position: absolute;
}

.top-left {
  top: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

@media (max-width: 668px) {
  .trim-container {
    padding: 2.625rem 1.625rem;
  }

  .form-group {
    flex-direction: column;
  }
}

/* faq section */

.faq {
  max-width: 1150px;
  margin: 0 auto;
  padding: 6rem 1.25rem;
}

.faq-header {
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-header h2 {
  position: relative;
  font-size: 2.5rem;
  color: #141414;
}

.faq-header h2::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 40px;
  left: -12px;
  top: 10px;
  background: linear-gradient(to bottom, #112232, #4d6b8800);
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  color: #141414;
  font-weight: 500;
  cursor: pointer;
  padding: 1.25rem;
  position: relative;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fff;
  color: #666;
}

/* CSS-only accordion functionality */
.accordion-item input[type="checkbox"] {
  display: none;
}

.accordion-item label {
  display: block;
  position: relative;
  cursor: pointer;
}

.accordion-item label::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #141414;
}

.accordion-item input[type="checkbox"]:checked ~ .accordion-content {
  max-height: 500px;
  padding: 0 1.25rem 1.25rem;
}

.accordion-item input[type="checkbox"]:checked ~ label::after {
  content: "-";
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .faq {
    padding: 4rem 1rem;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-header h2::before {
    height: 32px;
    top: 8px;
  }

  .accordion-header {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .accordion-content {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 1.75rem;
  }

  .faq-header h2::before {
    height: 28px;
    top: 6px;
  }

  .accordion-header {
    padding: 0.875rem;
    font-size: 0.9rem;
  }
}

/* Footer section */
.footer-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr 2fr;
  gap: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin-top: 24px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

/* Footer columns */
.footer-column h3 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #333;
}

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

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #000;
}

/* Bottom section */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  text-align: right;
  color: #666;
  font-size: 0.8rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-logo-social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-container {
    padding: 3rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-container {
    padding: 2rem 1rem;
  }

  .footer-bottom {
    text-align: center;
  }
}
