* {
  font-family: "Inter", sans-serif;
}

.hero-gradient {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.card-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.feature-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.recommended-plan {
  border: 2px solid #e42527;
  position: relative;
  overflow: hidden;
}

.recommended-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: #e42527;
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 600;
}

.toggle-checkbox:checked {
  right: 0;
  border-color: #e42527;
}

.toggle-checkbox:checked + .toggle-label {
  background-color: #e42527;
}

.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.section-anchor {
  scroll-margin-top: 100px;
}

.feature-row:nth-child(even) {
  background-color: #f8fafc;
}

.form-success {
  display: none;
}

/* new css */
.red-bg {
  background-color: #e42527;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.button-bg {
  background: linear-gradient(
    215deg,
    rgba(34, 109, 180, 1) 0%,
    rgba(228, 37, 39, 1) 100%
  );
  transition: background 0.4s ease-in-out;
}
.button-bg:hover {
  background: linear-gradient(
    215deg,
    rgba(228, 37, 39, 1) 0%,
    rgba(34, 109, 180, 1) 100%
  );
}
.hero-section {
  margin-top: 95px;
  /* height: 90vh; */
  padding: 30px 0px;
}
.form-bg img {
  position: absolute;
  top: -10px;
  right: 0px;
  z-index: -1;
  width: 47%;
}
.position-reletive {
  position: relative;
}
.hero-wrapper {
  width: 100%;
  display: flex;
  margin: auto;
}
.hero-wrapper .hero-left {
  width: 50%;
}
.hero-wrapper .hero-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Banner section start */
.banner_content_section {
  display: flex;
  width: 100%;
  /* flex-wrap: wrap; */
  margin: auto;
  height: auto;
}
.banner_content_section .left {
  width: auto;
  display: flex;
  align-items: center;
  padding-right: 100px;
}
.banner_listing {
  display: flex;
}
.banner_listing ul:nth-child(1) {
  padding-left: 0px;
}
/* .banner_content_section ul{
  column-count: 2;
} */
.banner_content_section .left .content h2 {
  font-size: 36px;
  font-weight: 500;
}
.banner_content_section .left .content h2 span {
  font-weight: 700;
  color: #0082c8;
}
.banner_content_section .left .content h4 {
  padding: 20px 0px;
  line-height: 1.6;
  font-size: 19px;
  font-weight: 500;
}
.banner_content_section .left .content h4 span {
  font-weight: 700;
}
.banner_content_section .left .banner_listing {
  display: flex;
  justify-content: space-between;
}
.banner_content_section .left .content ul {
  width: 48%;
}
.banner_content_section .left .content ul li {
  font-size: 17px;
  padding: 5px 0px;
  color: #004e9f;
  font-weight: 600;
  position: relative;
  padding-left: 25px;
  align-items: start;
  display: flex;
}
.banner_content_section .left .content ul li::before {
  content: "";
  background-image: url(./images/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 35%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
}
.banner_content_section .right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.banner_img img {
  max-width: 80%;
  margin: auto;
  height: 350px;
  object-fit: contain;
}

/* Banner section end */

/* Container to center the form */
.form-container {
  max-width: 450px;
  width: 100%;
  height: fit-content;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  margin: auto;
}

/* Heading style */
.form-container h2 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #004e9f;
  font-weight: 600;
  text-align: center;
}

/* Label styling */
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #212121;
  font-size: 15px;
}

/* Input field styling */
.form-input {
  width: 100%;
  padding: 10px 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
}

/* Submit button styling */
.submit-button {
  width: fit-content;
  padding: 10px 60px;
  margin: auto;
  font-size: 16px;
  background-color: #004e9f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Hover effect for the submit button */
.submit-button:hover {
  background-color: #004e9f;
}

/* thank you section start */

.thank-u-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  text-align: center;
}

.thank-u-content h2 {
  font-size: 24px;
  color: #004e9f;
  font-weight: 500;
  margin-bottom: 10px;
}

.thank-u-content .thank-p {
  margin: 0px;
}

.thank-u-content a {
  background-color: #004e9f;
  color: #fff;
  padding: 10px 50px;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #004e9f;
  text-decoration: none;
  transition:
    background-color,
    0.3s ease-in-out;
}

.thank-u-content a:hover {
  background-color: #fff;
  color: #004e9f;
  font-weight: 600;
}
.thank-u-content p {
  font-size: 18px;
}

.currency-font {
  font-size: 28px;
}
/* thank you section end */

/* Pricing Section Start */

.pricing-container {
  display: flex;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.pricing-container .content {
  width: 25%;
  padding: 0px 15px;
}

.pricing-card {
  background-color: #ffffff;
  /* padding: 20px; */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -115%;
  left: -50%;
  width: 300%;
  height: 300%;
  background: rgba(74, 44, 195, 0.1);
  transition: transform 0.5s ease;
  transform: rotate(45deg) scale(0);
  z-index: -1;
}
.product-included-section {
  height: 520px;
}

/* .pricing-card:hover::before {
  transform: rotate(45deg) scale(1);
} */
.faq-answer p a {
  color: #e42527;
  text-decoration: underline;
}

.pricing-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  background: #94c7e5;
  padding: 20px;
}
.pricing-container .content:nth-child(1) .pricing-card h3 {
  background: #e42527;
}
.pricing-container .content:nth-child(2) .pricing-card h3 {
  background: #089949;
}
.pricing-container .content:nth-child(3) .pricing-card h3 {
  background: #226db4;
}
.pricing-container .content:nth-child(4) .pricing-card h3 {
  background: #f9b21d;
}

.price {
  font-size: 48px;
  color: #000000;
  margin: 15px 0;
  font-weight: 700;
}

.price span {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  display: inline-block;
}
.light-gray {
  color: rgb(170, 170, 170);
}

.pricing-container ul {
  list-style: disc;
  padding: 0 15px;
  color: #666;
  text-align: left;
  margin: 0px 15px;
  padding-bottom: 30px;
}

.pricing-container ul li {
  margin: 10px 0;
}

.pricing-container button {
  background-color: #004e9f;
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  border-radius: 15px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.pricing-container button:hover {
  background-color: #004e9f;
}
.img-icons img {
  margin: auto;
}

/* Pricing Section End */

/* Pricing Tab Ribbon Start */

.ribbon {
  margin: 0;
  background: rebeccapurple;
  color: white;
  padding: 0.4em 0;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(30%) translateY(0%) rotate(45deg);
  transform-origin: top left;
  font-size: 12px;
}
.ribbon:before,
.ribbon:after {
  content: "";
  position: absolute;
  top: 0;
  margin: 0 -1px; /* tweak */
  width: 100%;
  height: 100%;
  background: rebeccapurple;
}
.ribbon:before {
  right: 100%;
}

.ribbon:after {
  left: 100%;
}

/* Pricing Tab Ribbon end */

.footer_section {
  background-color: #0a111a;
  /* margin-top: 70px; */
}
.footer_section .main {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0px 20px;
  margin-top: 10px;
  border-top: 1px solid gray;
}
.footer_section .main .copiright p,
.footer_section .main a {
  color: #fff;
  margin: 0px;
  text-decoration: none;
}
.footer_section .main .copiright p {
  font-size: 13px;
}

.contact_address {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  align-items: center;
  color: #fff;
}
.contact_address .left {
  display: flex;
  flex-direction: column;
}
.contact_address .left p {
  font-size: 18px;
  padding-bottom: 20px;
}
.contact_address .left span {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
}
.contact_address .left img {
  width: 20px;
  margin-right: 5px;
}
.contact_address .left a {
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  margin-left: 5px;
  font-weight: 400;
  transition: 0.3s ease-in-out;
}
.contact_address .left a:hover {
  color: gray;
}
.contact_address .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact_address .right ul {
  display: flex;
}
.contact_address .right .title {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 20px;
  color: #fff;
}
.contact_address .right ul li {
  list-style: none;
  margin: 10px;
}
.contact_address .right ul li img {
  width: 29px;
  filter: invert(1);
}

.footer_top {
  background: #0a111a;
  margin-top: 50px;
}

.call-icon {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 150px;
  right: 10px;
  background-color: #44bd32;
  z-index: 999;
  border-radius: 50%;
  box-shadow: 0px 0px 10px #44bd32;
}
.call-icon img {
  width: 100%;
  padding: 10px;
}

.mob_call_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #004e9f;
  padding: 16px 0px;
  text-align: center;
}
.mob_call_btn a {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.mob_call_btn a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.mob_call_btn {
  display: none;
}
sup {
  color: red;
  font-size: 16px;
  top: -0.2rem;
}

#form_section,
#contact {
  scroll-margin-top: 5rem !important;
}
/* @media Query Section Start  */
@media only screen and (max-width: 1380px) {
  .form-container {
    max-width: 90%;
  }
}
@media only screen and (max-width: 1280px) {
  .banner_content_section .left {
    width: 70%;
    padding: 0px;
  }
  .banner_img img {
    max-width: 80%;
    margin: auto;
    height: auto;
    object-fit: contain;
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .product-included-section {
    height: 430px;
  }
}
@media only screen and (max-width: 1200px) {
  .form-container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .pricing-container .content {
    width: 50%;
    padding: 0px 15px;
    margin-bottom: 50px;
  }
  .product-included-section {
    height: 520px;
  }
}

@media only screen and (max-width: 992px) {
  .banner_content_section .right {
    width: 100%;
  }
  .banner_content_section .left {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 20px;
  }
  .banner_content_section {
    height: auto;
    flex-wrap: wrap;
  }
  /* .form_bg img {
    position: absolute;
    right: 0px;
    z-index: -1;
    width: 100%;
  } */
  .form-bg img {
    position: absolute;
    top: 50vh;
    right: 0px;
    z-index: -1;
    width: 100%;
  }
  .hidden {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .pricing-container .content {
    width: 100%;
    padding: 0px 15px;
    margin-bottom: 50px;
  }
   .product-included-section {
    height: auto;
  }
}

@media (max-width: 576px) {
  .banner_img img {
    max-width: 100%;
  }
  .banner_content_section .left .banner_listing {
    flex-wrap: wrap;
  }
  .banner_content_section .left .banner_listing ul {
    width: 100%;
  }
  .hero-section {
    margin-top: 80px;
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .button-bg {
    font-size: 16px !important;
  }

  .footer_section .main .copiright p,
  .footer_section .main a {
    font-size: 14px;
  }
  .contact_address {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact_address .right {
    align-items: start;
    padding-top: 20px;
  }
  .contact_address .right ul {
    padding: 0px;
    margin: 0px;
  }
  .pricing-container {
    padding: 0px;
  }
  .pricing-container .content {
    width: 100%;
    padding: 0px;
  }
  .py-20 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .call-icon {
    bottom: 50px;
  }
}
