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

body {
  font-family: Arial, sans-serif;
  font-family: "Open Sans", sans-serif;
}

section {
  padding: 50px 0;
}

.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

/* Responsive max-widths */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
/* Navbar container */
.topSection {
  max-width: 1320px;
  width: 100%;
  background: #fff;
  margin: 0 auto;
  padding-bottom: 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
}

/* Logo */
.logo {
  width: 150px;
}

.logo img {
  width: 100%;
}

/* Menu */
.navbar .menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-size: 24px;
  margin: 0 5px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 25px;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: #000;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #f2f2f2;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Phone */
.phone {
  color: #0d3a7b;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Button */
.login-btn {
  background: #fff;
  border: 2px solid #0d3a7b;
  color: #0d3a7b;
  padding: 10px 12px;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.login-btn:hover {
  background: #0d3a7b;
  color: #fff;
}

/* Responsive */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background: #333;
}

@media (max-width: 1025px) {
  .menu a {
    font-size: 20px;
  }
}
@media (max-width: 769px) {
  .navbar .menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 10px;
    gap: 15px;
    border-top: 1px solid #ddd;
  }
  .navbar .menu.active {
    display: flex;
  }
  .navbar .menu-toggle {
    display: flex;
  }
}
.heroContainer {
  display: flex;
  flex-wrap: wrap;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  gap: 15px;
}
.heroContainer .left {
  flex: 1 1 520px;
  padding: 50px 20px 30px 20px;
  background: #bad4ff;
  border-radius: 20px;
}
.heroContainer .left h2 {
  color: #2C5BAF;
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 55px;
}
.heroContainer .left h2 span {
  color: #16367B;
}
.heroContainer .left p {
  font-size: 28px;
  color: #000;
  margin-bottom: 20px;
}
.heroContainer .left p i {
  font-style: normal;
  font-weight: 400;
  padding: 0 2px;
}
.heroContainer .left .btn {
  display: inline-block;
  background: #FF7A00;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  transition: 0.3s;
}
.heroContainer .left .btn:hover {
  background: #e76a00;
}

.bookReview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.bookReview .features {
  width: 50%;
  margin-top: 20px;
  background: #E1EDFF;
  padding: 10px 20px;
  border-radius: 10px;
}
.bookReview .features p {
  margin: 10px 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  background: url(../images/book-icon.png) no-repeat;
  background-size: 20px;
  background-position-y: 0px;
  padding-left: 30px;
  color: #000;
}
.bookReview .features span {
  display: inline-block;
  margin-right: 5px;
  color: #16367b;
  font-weight: 700;
}
.bookReview .features span img {
  width: 100%;
}
.bookReview .info-box {
  width: 50%;
  margin-top: 20px;
  background: #16367B;
  padding: 15px;
  border-radius: 8px 0px 8px 8px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  position: relative;
}
.bookReview .info-box p {
  font-size: 18px;
  color: #fff;
  margin: 6px 0 7px 0;
  font-weight: 600;
}
.bookReview .info-box a {
  background: #fff;
  color: #15357A;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 30px;
  margin-top: 30px;
  display: inline-block;
  margin: 30px 2px 0 2px;
}
.bookReview .info-box a:hover {
  background: #e76a00;
  color: #fff;
}
.bookReview .info-box::before {
  content: "";
  background: url(../images/folder.png) no-repeat;
  background-size: 100%;
  width: 165px;
  height: 35px;
  position: absolute;
  right: 0;
  top: -34px;
}

.heroContainer .right {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 30px 30px 0px 30px;
  background: #16367b url(../images/bannerbg.png) no-repeat;
  background-size: contain;
  background-position: left;
  border-radius: 20px;
}
.heroContainer .right img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  margin-bottom: -3px;
}

@media (max-width: 1025px) {
  .bookReview .info-box a {
    width: 100%;
    display: block;
  }
}
@media (max-width: 768px) {
  .heroContainer {
    flex-direction: column;
  }
  .right {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .bookReview {
    flex-direction: column;
  }
  .bookReview .features {
    width: 100%;
  }
  .bookReview .info-box {
    width: 100%;
  }
}
/* hero section end */
/* spotlight section */
.spotlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  width: 100%;
  gap: 20px;
}
.spotlight .spotLeft {
  width: 50%;
}
.spotlight .spotLeft h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 900;
  color: #16367B;
}
.spotlight .spotLeft h2 span {
  color: #ff7a00;
}
.spotlight .badge {
  display: inline-block;
  color: #2146d9;
  font-size: 0.8rem;
  padding: 5px 0px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.spotlight .spotRight {
  flex: 1 1 450px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}
.spotlight .card {
  flex: 1 1 180px;
  padding: 0px 0 0 15px;
  border-radius: 10px;
  color: #000;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s;
  background: #e2eaff;
}
.spotlight .card.orange {
  background: #ffddb7;
  color: #000;
}
.spotlight .card {
  color: #000;
}
.spotlight .blue {
  padding: 40px 0;
  color: #16367B;
  font-size: 22px;
  width: 220px;
}
.spotlight .card:hover {
  transform: translateY(-3px);
  background: #FFBF8A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.spotlight .arrow {
  color: #fff;
  border-radius: 0 10px 0 30px;
  background: #16367B;
  font-size: 0.8rem;
  padding: 0 0 10px 10px;
  width: 60px;
  height: 60px;
}
.spotlight .card:hover .arrow {
  background: #ED7B13;
}
.spotlight .arrow img {
  width: 20px;
  margin: 10px;
}

.btn-main {
  background: #ff7a00;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 auto;
  border-radius: 50px;
}

.btn-main:hover {
  background: #e76a00;
}

@media (max-width: 769px) {
  .spotlight {
    flex-direction: column;
    text-align: center;
  }
  .spotlight .spotLeft h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .spotlight .spotRight {
    flex: none;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .spotlight .spotLeft {
    width: 100%;
  }
}
/* spotlight section end */
/* free tools and guide */
.tools-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  max-width: 1320px;
  width: 100%;
  /* Left Section */
}
.tools-container .tools-left {
  max-width: 47%;
  width: 100%;
  background: url(../images/free-tools.png) no-repeat;
  background-size: 100%;
  color: #fff;
  padding: 10px;
  display: flex;
  text-align: center;
  position: relative;
}
.tools-container .tools-left h2 {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 20px;
  position: absolute;
  bottom: 50px;
  left: 50px;
  text-align: left;
}
.tools-container .tools-left .btn-view {
  background: #FF7A00;
  color: #fff;
  padding: 15px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  position: absolute;
  font-size: 24px;
  right: 25px;
  bottom: 40px;
  width: 200px;
}
.tools-container .tools-left .btn-view:hover {
  background: #e76a00;
}
.tools-container .tools-left img {
  max-width: 100%;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 10px;
}

/* Right Section */
.tools-container .tools-right {
  max-width: 52%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 10px;
}
.tools-container .card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-start;
  padding: 0px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  max-width: 48%;
  width: 100%;
}
.tools-container .card img {
  width: 100%;
}
.tools-container .card p {
  position: absolute;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  width: 200px;
  left: 20px;
  top: 45%;
}
.tools-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.tools-container .card::before {
  content: "";
  position: absolute;
  background: #193AA7;
  background: linear-gradient(0deg, rgba(25, 58, 167, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
.tools-container .card:hover::before {
  content: "";
  background: rgba(237, 123, 19, 0.2);
}
.tools-container .card::after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: url(../images/arrow2.png);
  width: 50px;
  height: 50px;
  background-size: 100%;
  border-radius: 50%;
}
.tools-container .card:hover::after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: url(../images/arrow2a.png);
  width: 50px;
  height: 50px;
  background-size: 100%;
  border-radius: 50%;
}

.note {
  text-align: center;
  font-size: 20px;
  color: #2146d9;
  text-align: right;
  padding: 10px;
  width: 100%;
}

@media (max-width: 1025px) {
  .tools-container .tools-left .btn-view {
    right: 10px;
    bottom: 24px;
    width: 160px;
  }
  .tools-container .card p {
    font-size: 18px;
    line-height: 25px;
    top: 52%;
  }
}
@media (max-width: 769px) {
  .tools-container {
    flex-direction: column;
  }
  .tools-container .tools-left {
    max-width: 100%;
    padding: 20px;
  }
  .tools-container .tools-right {
    max-width: 100%;
  }
  .tools-container .card {
    margin-bottom: 15px;
  }
  .tools-container .tools-left .btn-view {
    width: 114px;
    font-size: 14px;
    padding: 10px 15px;
  }
}
@media (max-width: 767px) {
  .tools-container .card {
    max-width: 100%;
  }
  .tools-container .card img {
    width: 100%;
    max-width: 100%;
  }
  .tools-container .card p {
    font-size: 30px;
    line-height: 38px;
    width: 250px;
  }
}
.logo-section {
  width: 100%;
}
.logo-section .logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: #f0f7ff;
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 25px 0;
}
.logo-section img {
  max-width: 160px;
  height: auto;
  transition: transform 0.3s ease;
  margin: 0 3px;
}
.logo-section img:hover {
  transform: scale(1.1);
}

@media (max-width: 1025px) {
  .logo-section img {
    max-width: 130px;
  }
}
@media (max-width: 768px) {
  .logo-container {
    gap: 1.5rem;
  }
  .logo-section img {
    max-width: 120px;
  }
}
@media (max-width: 480px) {
  .logo-container {
    gap: 1rem;
  }
  .logo-section img {
    max-width: 100px;
  }
}
.services-section {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.services-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2146d9;
  font-size: 0.85rem;
  padding: 6px 0ch;
  border-radius: 20px;
  margin-bottom: 10px;
}
.services-section .badge::before {
  content: "";
  color: #2146d9;
  font-weight: 700;
}
.services-section h2 {
  font-size: 50px;
  line-height: 58px;
  font-weight: 900;
  color: #16367B;
  margin-bottom: 40px;
}
.services-section h2 span {
  color: #ff7a00;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.4rem;
    text-align: center;
  }
  .badge {
    display: block;
    text-align: center;
    margin: 0 auto 10px;
  }
}
.slidermain {
  padding-left: 100px;
  padding-bottom: 50px;
}
.slidermain .swiper {
  width: 100%;
  height: 100%;
}
.slidermain .swiper-slide {
  text-align: center;
  font-size: 18px;
}
.slidermain .swiper-slide .sliderM {
  width: 100%;
  position: relative;
  text-align: left;
}
.slidermain .swiper-slide .sliderM .sText {
  position: absolute;
  top: 55%;
  left: 15px;
  width: 80%;
  z-index: 10;
}
.slidermain .swiper-slide .sliderM .sText h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  margin-bottom: 20px;
}
.slidermain .swiper-slide .sliderM .sText p {
  font-size: 22px;
  line-height: 28px;
  color: #fff;
}
.slidermain .swiper-slide .sliderM::before {
  content: "";
  position: absolute;
  background: url(../images/blue.png) no-repeat;
  background-repeat: repeat-x;
  z-index: 2;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 35px;
}
.slidermain .swiper-slide .sliderM:hover::before {
  content: "";
  background: rgba(237, 123, 19, 0.2);
}
.slidermain .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slidermain .swiper-pagination {
  bottom: -10px;
}

@media (max-width: 769px) {
  .slidermain {
    padding-left: 35px;
  }
}
@media (max-width: 767px) {
  .slidermain {
    padding-left: 15px;
  }
}
.process-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  max-width: 1320px;
  gap: 30px;
}
.process-container .process-image {
  flex: 1 1 300px;
  text-align: left;
  position: relative;
}
.process-container .process-image .process-title {
  font-size: 46px;
  line-height: 56px;
  font-weight: 900;
  color: #fff;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0px;
  padding-left: 15px;
  margin: 0 auto 20px auto;
}
.process-container .process-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.process-container .process-content {
  flex: 1 1 400px;
}
.process-container .process-content .steps {
  list-style: none;
  margin-bottom: 20px;
}
.process-container .process-content .steps li {
  display: flex;
}
.process-container .process-content .steps li span {
  width: 60px;
  height: 80px;
  background: #E6F0FF;
  color: #2C5AAE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 50px;
  font-weight: 700;
  padding: 5px;
}
.process-container .process-content .steps li div {
  background: #eaf1ff;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2C5AAE;
  width: 100%;
  min-height: 85px;
}
.process-container .note4s {
  font-size: 15px;
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
}
.process-container .note4s img {
  width: 40px;
}
.process-container .note4s i {
  font-size: 32px;
  font-weight: 900;
  font-style: normal;
  color: #2C5AAE;
}
.process-container .cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: #ff7a00;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 24px;
  text-decoration: none;
  transition: background 0.3s ease;
  display: flex;
  justify-content: center;
  max-width: 400px;
}
.process-container .cta-button span {
  width: 50px;
}
.process-container .cta-button span img {
  width: 40px;
  padding-left: 10px;
  padding: 0 10px 0 0;
}
.process-container .cta-button:hover {
  background: #e76a00;
}

@media (max-width: 768px) {
  .process-container {
    flex-direction: column;
    text-align: center;
  }
  .steps li {
    justify-content: center;
    text-align: left;
  }
  .note {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .process-container .process-content .steps li div {
    font-size: 16px;
  }
  .process-container .note4s i {
    font-size: 20px;
  }
}
/* Comparison Table */
.bglight {
  background: #E6F0FF;
}

.comparison-table {
  display: flex;
  background: #1f53b0;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  gap: 15px;
  /* Feature column */
  /* Company columns */
}
.comparison-table .features {
  flex: 1 1 230px;
  background: #1f53b0;
  padding: 20px;
  border: 2px solid #fff;
  border-radius: 20px;
}
.comparison-table .features h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 35px;
}
.comparison-table .features ul {
  list-style: none;
}
.comparison-table .features ul li {
  margin: 10px 0 35px 0;
  padding: 15px 10px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 25px;
  text-align: center;
  font-size: 21px;
}
.comparison-table .company {
  flex: 1 1 180px;
  background: #E6F0FF;
  color: #000;
  padding: 20px;
  text-align: center;
  border-radius: 20px;
}
.comparison-table .company h3 {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #1f53b0;
}
.comparison-table .company ul {
  list-style: none;
}
.comparison-table .company ul li {
  margin: 10px 0 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  font-size: 20px;
  /* Icons */
}
.comparison-table .company ul li .check {
  width: 30px;
  font-size: 18px;
}
.comparison-table .company ul li .check img {
  width: 100%;
}
.comparison-table .company ul li .cross {
  width: 30px;
  font-size: 18px;
}
.comparison-table .company ul li .cross img {
  width: 100%;
}

/* Responsive */
@media (max-width: 769px) {
  .comparison-table {
    flex-direction: column;
  }
  .features {
    border-right: none;
    border-bottom: 2px solid #fff;
  }
  .company {
    border-top: 1px solid #ccc;
  }
}
/* Comparison Table end */
/* Customer Testimonials  */
.testimonial-section {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.testimonial-section .badge {
  display: inline-block;
  color: #4a7cff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}
.testimonial-section h2 {
  font-size: 50px;
  font-weight: 900;
  color: #ed7b13;
}
.testimonial-section h3 {
  font-size: 50px;
  font-weight: 900;
  color: #16367b;
  margin-bottom: 40px;
}
.testimonial-section .testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-section .testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-section .testimonial .user {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.testimonial-section .testimonial .user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
.testimonial-section .testimonial .user-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #0c1a4b;
}
.testimonial-section .testimonial .user-info small {
  color: #777;
  font-size: 14px;
}
.testimonial-section .testimonial p {
  font-size: 15px;
  color: #555;
}
.testimonial-section .testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .testimonial-section h2 {
    font-size: 24px;
  }
  .testimonial-section h3 {
    font-size: 20px;
  }
}
/* Customer Testimonials end */
/* Newsletter Subscription */
#subscribe-box {
  background: url(../images/newsletter.png) no-repeat;
  background-position-x: center;
  background-size: contain;
  color: #fff;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 11;
}
#subscribe-box #subscribe-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}
#subscribe-box #subscribe-form {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  padding: 2px;
  max-width: 400px;
  margin: 0 auto;
}
#subscribe-box #subscribe-input {
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  flex: 1;
  outline: none;
}
#subscribe-box #subscribe-btn {
  background: #f7931e;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}
#subscribe-box #subscribe-btn:hover {
  background: #d67d16;
}

@media (max-width: 480px) {
  #subscribe-title {
    font-size: 16px;
  }
  #subscribe-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
  #subscribe-input {
    font-size: 13px;
  }
}
/* Newsletter Subscription end */
/* Footer */
footer {
  background: #16367B;
  color: #fff;
  padding: 140px 20px 20px;
  border-radius: 20px 20px 0 0;
  margin-top: -100px;
}
footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto 20px auto;
}
footer .footer-column {
  width: 25%;
  margin-bottom: 20px;
}
footer .footer-column:nth-child(3) {
  width: 16%;
}
footer .footer-column:nth-child(5) {
  width: 31%;
}
footer .footer-column:nth-child(6) {
  width: 31%;
}
footer .footer-column h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
footer .footer-column ul {
  list-style: none;
}
footer .footer-column ul li {
  margin-bottom: 8px;
}
footer .footer-column ul li a {
  text-decoration: none;
  color: #d9e4f9;
  font-size: 20px;
  line-height: 28px;
  transition: color 0.3s;
}
footer .footer-column ul li a:hover {
  color: #f7931e;
}
footer .contact-info {
  font-size: 20px;
  line-height: 1.6;
}
footer .rankingBox {
  width: 300px;
}
footer .rankingBox img {
  width: 100%;
}

.rating-box {
  background: #0c2d66;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-top: 10px;
}

.rating-box span {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 20px;
  color: #d0d8ef;
}

.footer-bottom img {
  height: 18px;
  margin-right: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  text-decoration: none;
}

.social-icons .icon {
  background: #f4b98b;
  color: #1f3571;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

.social-icons .icon:hover {
  background: #fff;
  color: #e74c3c;
  transform: scale(1.1) rotate(10deg);
}

.pro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px 0 20px;
}

.proColor {
  display: block;
  max-width: 1570px;
  width: 100%;
  border-radius: 40px 40px 40px 40px;
  margin: 0 auto;
  background: #DAE9FF;
  padding-bottom: 1px;
}

.pro-text h5 {
  display: inline-block;
  background: #e0e7ff;
  color: #1e40af;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 16px;
}

.pro-text h1 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 30px;
  margin-top: 30px;
  line-height: 1.2;
  color: #2D5BB0;
}

.pro-text p {
  font-size: 30px;
  color: #2c5baf;
  font-weight: 600;
}

.pro-image img {
  max-width: 100%;
  height: auto;
}

.sectionTax {
  max-width: 1320px;
  margin: 40px auto;
  padding: 30px 20px 50px 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
}
.sectionTax .left-optionCircles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  width: 60%;
}
.sectionTax .optionCircle {
  border: 2px solid #1e3a8a;
  border-radius: 30px;
  padding: 12px 16px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #1e3a8a;
}
.sectionTax .optionCircle.active {
  background: #f97316;
  color: #fff;
  border: 2px solid #f97316;
}
.sectionTax .optionCircle:hover {
  background: #f97316;
  color: #fff;
  border: 2px solid #f97316;
}
.sectionTax .optionCircle.highlight {
  background: #f97316;
  color: #fff;
  border: none;
  font-weight: 600;
}
.sectionTax .right-box {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  width: 40%;
}
.sectionTax .right-box h2 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1e3a8a;
}
.sectionTax .amount {
  font-size: 85px;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 20px;
}
.sectionTax .due-date {
  font-size: 30px;
  margin-bottom: 12px;
}
.sectionTax .status {
  font-size: 25px;
  font-weight: 700;
  color: #16367b;
}
.sectionTax .status p {
  font-size: 25px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 16px;
  color: #16367b;
}
.sectionTax .safe {
  color: green;
  margin-right: 10px;
}
.sectionTax .risk {
  color: #eab308;
}

.taxSec {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.taxSec-text h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2D5BB0;
}

.taxSec-text p {
  font-size: 30px;
  color: #2c5baf;
  font-weight: 600;
}

.taxSec-image img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.TaxSection {
  max-width: 1320px;
  margin: 40px auto;
  padding: 30px 20px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 50px;
}

.leftTax1 {
  padding: 25px 0px;
  width: 70%;
}

.optMain {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.taxOpt {
  background: #2c5baf;
  color: #fff;
  border-radius: 50px;
  padding: 10px 16px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  width: 31%;
  display: flex;
  justify-content: center;
  min-height: 75px;
}

.taxOpt.active {
  background: #f97316;
  color: #fff;
  border: 2px solid #f97316;
}

.taxOpt:hover {
  background: #f97316;
}

.taxOpt.active {
  background: #f97316;
  color: #fff;
}

.rightTax {
  width: 30%;
  background: #edf5ff;
  border-radius: 40px;
  padding: 25px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rightTax h3 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2D5BB0;
}

.price {
  font-size: 88px;
  font-weight: 800;
  color: #f97316;
}

.liteCol {
  background: #DAE9FF;
}

/* Responsive */
.taxGuides {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 40px 20px;
  background: #fff;
  flex-wrap: wrap;
  margin-bottom: 50px;
  margin-top: 125px;
}

.taxCard {
  background: #c9ddff;
  border-radius: 60px;
  padding: 0px 60px 140px 60px;
  max-width: 700px;
  flex: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}
.taxCard h2 {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #2c5baf;
  margin: 45px 0 20px;
}
.taxCard h2 span {
  color: #f47c1c;
}
.taxCard p {
  font-size: 24px;
  color: #000;
  margin-bottom: 50px;
  line-height: 1.1;
}
.taxCard button {
  background: #f47c1c;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 30px;
  font-weight: 700;
  transition: background 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  max-width: 300px;
  margin: 0 auto;
}
.taxCard button:hover {
  background: #d9650f;
}

.taxCard img {
  max-width: 400px;
  margin-bottom: 15px;
  margin-top: -125px;
}

.doc-section {
  padding: 70px 20px 50px 20px;
  text-align: center;
  background: #DAE9FF;
}

.doc-section h2 {
  font-size: 60px;
  font-weight: 700;
  color: #f47c1c;
  margin-bottom: 5px;
  text-align: left;
}

.doc-section h3 {
  font-size: 44px;
  font-weight: 600;
  color: #1a3c8b;
  margin-bottom: 40px;
  text-align: left;
}

.doc-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1320px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.doc-card {
  max-width: 48%;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 20px;
  gap: 20px;
  transition: transform 0.3s;
}

.doc-card:hover {
  transform: translateY(-5px);
}

.doc-card img {
  width: 140px;
  height: auto;
  border-radius: 10px;
}

.doc-info {
  text-align: left;
  flex: 1;
}

.doc-info h4 {
  font-size: 30px;
  color: #16367b;
  font-weight: 700;
  margin: 0 0 8px 0;
  border-bottom: 2px solid #16367b;
  display: inline-block;
  padding-bottom: 4px;
}

.doc-info p {
  font-size: 18px;
  color: #333;
  margin: 0 0 10px 0;
  font-weight: 400;
}

.doc-info a {
  color: #2c5baf;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  text-align: right;
  display: block;
}

.doc-info a:hover {
  text-decoration: underline;
}

.banWidth {
  max-width: 1570px;
  width: 100%;
}

.containerAbt {
  background: #e9f2ff;
  border-radius: 20px;
  padding: 40px 40px 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.text-section {
  flex: 1 1 400px;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: #cfe0ff;
  color: #1a3e9a;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  gap: 8px;
}

.dot {
  width: 5px;
  height: 5px;
  background: #1a3e9a;
  border-radius: 50%;
  flex-shrink: 0;
}

.text-section h1 {
  font-size: 60px;
  font-weight: 900;
  color: #2c5baf;
  margin: 10px 0 20px 0;
}

.text-section p {
  font-size: 34px;
  line-height: 44px;
  color: #2c5baf;
  margin-bottom: 15px;
  font-weight: 600;
}

.image-section {
  flex: 1 1 350px;
  text-align: center;
}

.image-section img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }
  .text-section h1 {
    font-size: 26px;
  }
}
.legacy h2 {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 110px;
  color: #1a3e9a;
  text-align: center;
}
.legacy h2 span {
  color: #f57c00;
  /* Orange for "in Numbers" */
}
.legacy .cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.legacy .card {
  background: #dceaff;
  border-radius: 30px;
  padding: 30px 30px;
  width: 250px;
  position: relative;
  text-align: center;
  flex: 1 1 220px;
}
.legacy .card:hover {
  background: #ffe9d1;
}
.legacy .circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #CADCFC;
  background: linear-gradient(180deg, rgb(202, 220, 252) 0%, rgb(53, 97, 179) 100%);
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.legacy .card h3 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 33px;
  font-weight: 700;
  color: #1a3e9a;
}
.legacy .card p {
  font-size: 26px;
  line-height: 1.5;
  color: #333;
}
.legacy .card p strong {
  font-style: italic;
}

@media (max-width: 768px) {
  .legacy h2 {
    font-size: 26px;
  }
  .cards {
    flex-direction: column;
    align-items: center;
  }
}
.whyChoose {
  background: #e9f2ff;
  border-radius: 20px;
  padding: 50px 20px;
  text-align: center;
  max-width: 100%;
  margin: 40px auto;
}
.whyChoose .cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 260px;
}
.whyChoose .card {
  background: #1a3e9a;
  color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  width: 300px;
  flex: 1 1 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.whyChoose .card img {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
  margin-top: -235px;
}
.whyChoose .card h3 {
  font-size: 33px;
  margin-bottom: 15px;
  font-weight: 700;
}
.whyChoose .card p {
  font-size: 22px;
  line-height: 1.5;
  color: #e0e7ff;
  font-weight: 700;
}

.whyChoose h2 {
  font-size: 60px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #f57c00;
}

.whyChoose h2 span {
  color: #1a3e9a;
  /* orange highlight */
}

@media (max-width: 768px) {
  .whyChoose h2 {
    font-size: 26px;
  }
  .cards {
    flex-direction: column;
    align-items: center;
  }
}
.experts-section {
  padding: 50px 20px;
}

.experts-section h2 {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 40px;
  color: #ff6600;
  text-align: center;
}

.experts-section h2 span {
  color: #1a3e9a;
}

.experts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.expert-card {
  border-radius: 15px;
  padding: 20px;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s;
}

.expert-card:hover {
  transform: translateY(-10px);
  background: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.expert-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 15px;
}

.expert-name {
  font-size: 34px;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 5px;
}

.expert-role {
  font-size: 30px;
  font-weight: 700;
  color: #0044cc;
  margin-bottom: 10px;
}

.expert-desc {
  font-size: 24px;
  color: #444;
  line-height: 34px;
}

@media (max-width: 768px) {
  .experts-container {
    flex-direction: column;
    align-items: center;
  }
}
.taxExpert {
  position: relative;
  background: linear-gradient(135deg, #eaf1ff, #d9e7ff);
  border-radius: 20px;
  padding: 80px 40px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1.5s ease;
}

.taxExpert h1 {
  font-size: 70px;
  color: #1a4bb7;
  margin-bottom: 15px;
  animation: slideDown 1.2s ease;
}

.taxExpert p {
  font-size: 40px;
  color: #ff7a00;
  margin-bottom: 30px;
  animation: slideUp 1.2s ease;
}

.btn {
  display: inline-block;
}

.btn:hover {
  transform: translateY(-4px) scale(1.05);
}

/* Floating Icons */
.icon2 {
  position: absolute;
  width: 200px;
  height: 200px;
  animation: float 4s ease-in-out infinite;
}

.icon2.left {
  left: -10px;
  bottom: -70px;
  animation-delay: 0.5s;
}

.icon2.right {
  right: -20px;
  top: -80px;
}

.btn2 {
  width: 300px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
/* Responsive */
@media (max-width: 600px) {
  .taxExpert h1 {
    font-size: 1.5rem;
  }
  .taxExpert p {
    font-size: 1rem;
  }
  .icon {
    width: 60px;
    height: 60px;
  }
}
/* Responsive */
@media (max-width: 1025px) {
  .pro-text h1 {
    font-size: 35px;
  }
  .pro-text p {
    font-size: 25px;
  }
  .sectionTax .optionCircle {
    font-size: 18px;
  }
  .sectionTax .right-box h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
  }
  .taxSec-text p {
    font-size: 24px;
  }
  .sectionTax .amount {
    font-size: 60px;
  }
  .taxSec-text h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
  }
  .taxOpt {
    border-radius: 20px;
    font-size: 18px;
  }
  .taxCard {
    max-width: 425px;
  }
  .taxCard h2 {
    font-size: 30px;
    font-weight: 700;
  }
  .taxCard p {
    font-size: 20px;
    line-height: 24px;
  }
  .taxCard img {
    max-width: 250px;
  }
  .TaxSection {
    margin: 40px 15px;
  }
  .doc-section h3 {
    font-size: 30px;
  }
  .doc-section .doc-info h4 {
    font-size: 20px;
  }
  .doc-section h2 {
    font-size: 40px;
  }
  .text-section h1 {
    font-size: 40px;
    font-weight: 700;
  }
  .text-section p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
  }
  .legacy h2 {
    font-size: 40px;
    font-weight: 700;
  }
  .legacy .card h3 {
    font-size: 24px;
  }
  .legacy .card p {
    font-size: 20px;
  }
  .whyChoose h2 {
    font-size: 40px;
  }
  .whyChoose .card {
    width: 30%;
  }
  .whyChoose .card img {
    width: 240px;
    margin-top: -180px;
  }
  .whyChoose .card h3 {
    font-size: 24px;
  }
  .whyChoose .card p {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
  }
  .experts-section {
    padding: 0px 20px 50px;
  }
  .experts-section h2 {
    font-size: 40px;
    font-weight: 700;
  }
  .expert-card {
    padding: 10px;
    max-width: 30%;
  }
  .expert-name {
    font-size: 24px;
  }
  .expert-role {
    font-size: 26px;
  }
  .expert-desc {
    font-size: 20px;
    line-height: 28px;
  }
  .taxExpert h1 {
    font-size: 40px;
  }
  .taxExpert p {
    font-size: 30px;
  }
}
@media (max-width: 900px) {
  .pro {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pro-text h1 {
    font-size: 32px;
  }
  .pro-text p {
    font-size: 16px;
  }
  .TaxSection {
    grid-template-columns: 1fr;
  }
  .leftTax1 h1 {
    font-size: 26px;
  }
  .sectionTax {
    grid-template-columns: 1fr;
  }
  .left-optionCircles {
    grid-template-columns: 1fr;
  }
  .taxSec {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .taxSec-text h1 {
    font-size: 32px;
  }
  .taxSec-text p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .taxGuides {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  footer .rankingBox {
    max-width: 100%;
  }
  footer {
    margin-top: -184px;
  }
  footer .footer-column {
    width: 43%;
  }
  footer .footer-column:nth-child(5) {
    width: 43%;
  }
  .doc-card {
    max-width: 80%;
    margin: 0 auto;
  }
  .sectionTax {
    flex-direction: column;
  }
  .sectionTax .left-optionCircles {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
  .sectionTax .right-box {
    width: 100%;
  }
  .taxSec-text h1 br {
    display: none;
  }
  .TaxSection {
    flex-direction: column;
  }
  .leftTax1 {
    width: 100%;
  }
  .rightTax {
    width: 100%;
  }
  .price {
    font-size: 50px;
  }
  .taxCard:nth-child(1) {
    margin-bottom: 120px;
  }
  .containerAbt {
    padding: 40px 15px 40px 15px;
  }
}
@media (max-width: 600px) {
  .social-icons {
    gap: 10px;
    justify-content: center;
  }
  .social-icons .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .footer-bottom {
    justify-content: center;
  }
  .optMain {
    flex-direction: column;
  }
  .taxOpt {
    width: 100%;
    min-height: auto;
  }
  .doc-card {
    max-width: 100%;
  }
  #subscribe-box #subscribe-title {
    font-size: 22px;
    line-height: 1.1;
  }
  footer .footer-column {
    width: 100%;
  }
  footer .footer-column:nth-child(3),
  footer .footer-column:nth-child(5),
  footer .footer-column:nth-child(6),
  footer .footer-column:nth-child(7) {
    width: 100%;
  }
  .legacy .card {
    padding: 30px 15px;
    width: 95%;
    margin-bottom: 60px;
  }
  .legacy .card:last-child {
    margin-bottom: 0px;
  }
  .whyChoose .card {
    width: 100%;
    margin-bottom: 200px;
  }
  .whyChoose .card:last-child {
    margin-bottom: 0px;
  }
  .expert-card {
    max-width: 100%;
  }
  .taxExpert {
    padding: 80px 15px 120px;
  }
  .abtBan {
    padding-top: 0px;
  }
}
@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
@media (max-width: 399px) {
  .taxCard {
    max-width: 320px;
  }
}
/* Footer end *//*# sourceMappingURL=style.css.map */