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

:root {
  --default-font-color: #4a4f60;
  --highlight-color: #122158;
  --highlight-color1: #69a328;
  --btn-color: #143bca;
  --text-black: #040815;
}

@font-face {
  font-family: "heading";
  src: url("../assets/fonts/LibreBaskerville-Regular.ttf");
}

@font-face {
  font-family: "para";
  src: url("../assets/fonts/Lato-Regular.ttf");
}

html {
  height: 100vh;
  overflow: auto;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  font-family: "para", sans-serif;
  color: var(--default-font-color);
}

.maincontainer {
  height: 100%;
  width: 100%;
}

/* MARK: Common styles */
.heading {
  font-family: "heading", sans-serif;
}

.bodyfont {
  font-family: "para", sans-serif;
}

.bodyfonttitle {
  color: var(--highlight-color1);
  font-size: 1.25rem;
  font-weight: 600;
}

.buttoncta {
  background: var(--btn-color);
  padding: 12px 18px;
  border: none;
  color: #fff;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  margin-top: auto;
  box-shadow: 0px 0px 32px 8px rgba(170, 189, 255, 0.32);
}

/* Login Section */
.login_outer {
  left: 0;
  top: 0;
  z-index: 100;
  /*height: 90vh;*/
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login_div {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  min-width: 450px;
  max-width: 500px;
  text-align: left;
}

.login_div h3 {
  font-weight: 600;
  font-size: 24px;
  color: var(--highlight-color);
  text-align: left;
}

.login_div p {
  color: var(--default-font-color);
  margin-top: 0.8rem;
  font-size: 16px;
  text-align: left;
}

.login_form {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 1rem;
}

.login_form label {
  font-size: 16px;
  color: var(--text-black);
  font-weight: 500;
  margin-bottom: 12px;
}

.login_form input {
  padding: 16px 10px;
  border-radius: 12px;
  border: 1px solid #cfd2dd;
  font-size: 16px;
  outline: none;
}

.login_form .login_field {
  display: flex;
  flex-direction: column;
}

.login_form button {
  width: 100%;
}

.login_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login_btn p:hover {
  color: var(--highlight-color);
  cursor: pointer;
}

.passwordinput {
  position: relative;
  width: 100%;
}
.passwordinput input {
  width: 100%;
  padding-right: 10%;
}

.pswdeye {
  position: absolute;
  right: 10px;
  top: 12px;
  cursor: pointer;
}

/* MARK: header section */
.headermain {
  width: 100%;
  height: fit-content;
  padding: 0.5rem 5rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e0ddda;
}
.logosection {
  width: clamp(124px, 17.153vw, 247px);
}

.logosection img {
  width: 100%;
  height: 100%;
}

.menusection {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.user-info {
  display: flex;
  align-items: center;
  gap: 4px;
}
.user-info .nav-link {
  color: var(--btn-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.loginsection {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.loginsection img {
  height: 28px;
  width: 28px;
  color: var(--highlight-color);
}
/*.menu2 {*/
/*  padding-right: 2rem;*/
/*}*/
.menu2 a {
  text-decoration: none;
  color: #302c27;
}
.menu2 a:hover {
  color: var(--highlight-color);
}
.logintxt {
  font-weight: bold;
  color: var(--btn-color);
  background: none;
  border: none;
  cursor: pointer;
}
.logintxt a {
  color: var(--btn-color);
}

.logintxt:hover {
  color: var(--highlight-color);
}
.terms-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
}

.terms-label input[type="checkbox"] {
  margin-top: 3px;
  width: 20px;
  height: 18px;
}

/* MARK: Mainbody section */
.mainbody {
  width: 100%;
}
.herosection {
  width: 100%;
  height: 717px;
  display: flex;
  justify-content: center;
  padding-top: 7.5rem;
  background: url("../assets/images/herobg.jpg");
  background-size: 100% 100%;
}
.herocontent {
  width: 80%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2.5rem;
  color: #fff;
}

.herocontent .herodata {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.herocontent h1 {
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 3.2rem;
}
.herocontent p {
  width: 60%;
  text-align: center;
  font-size: 1.25rem;
}

.herocontent a {
  text-decoration: none;
  color: #fff;
}

.missionsection {
  padding: 6.4rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.missionmain,
.planmain {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.missionmain h2,
.planpricing h2,
.faq-container h1 {
  font-size: 2.5rem;
  color: var(--highlight-color);
  text-align: center;
}

.missionmain h4 {
  font-size: 2.25rem;
  color: var(--highlight-color);
  text-align: center;
}

.missionmain p {
  font-size: 1.125rem;
  width: 90%;
  text-align: center;
}

.clientandmission {
  display: flex;
  gap: 1.5rem;
}
.client-head {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.client-img {
  width: 100%;
  margin-top: 1.5rem;
  height: 100%;
  /* max-height: 340px; */
  flex: 1;
}
.client-img img {
  box-shadow: 0 0 16px rgb(142 144 152 / 25%);
  border-radius: 16px;
  height: 100%;
}

.mission {
  width: 50%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0px 0px 16px rgba(142, 144, 152, 0.25);
  height: fit-content;
}

.client h4,
.mission h4 {
  font-size: 1.875rem;
  color: var(--highlight-color);
}

.client div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.missiondesc {
  /*line-height: 1.625rem;*/
  margin-bottom: 1.5rem;
}

.missionlist {
  display: flex;
  gap: 1rem;
}

.num {
  /* padding: 14px 10px;
   */
  height: 2.5rem;
  width: 2.5rem;
  background-color: var(--highlight-color1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
  border-radius: 100%;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list h3 {
  font-size: 1.25rem;
  color: var(--highlight-color);
}

.planpricing {
  background-color: #f5f5f5;
  padding: 5rem;
  text-align: center;
  gap: 4rem;
  display: flex;
  flex-direction: column;
}

.pricingouter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: left;
  gap: 1.5rem;
}

.priceind {
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  width: 100%;
}

.priceind h5 {
  font-size: 1.25rem;
  color: #040815;
}

.articlesmall {
  font-size: 1rem;
}

.featureformobile {
  display: none;
}

.priceind p {
  padding-top: 1rem;
}
.priceind h3 {
  font-size: 4.5rem;
  color: var(--highlight-color);
  margin-top: 2rem;
}

.priceind button {
  width: 100%;
  margin-top: 3rem;
}

.pricingtable {
  width: 100%;
}

.pricingtable table {
  background: #fff;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #e0ddda;
}

tbody tr:last-child td {
  border: none;
}

tbody tr td:first-child {
  text-align: left;
  font-size: 1.125rem;
  color: #040815;
}

thead tr th:first-child {
  text-align: left;
  font-size: 1rem;
  color: var(--default-font-color);
}

thead tr th {
  color: var(--default-font-color);
}

th,
td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

th,
td {
  border-bottom: 1px solid #e0ddda;
}

/*MARK: Footer element */

.footerouter {
  height: fit-content;
  width: 100%;
  background-color: #f5f5f5;
  margin-top: 7.5rem;
  padding: 30px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
}

.footerouter p {
  font-family: "heading";
  font-size: 0.875rem;
  color: #fff;
}

.getintouch {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon {
  stroke: #fff; /* default stroke color */
  transition: stroke 0.3s ease; /* smooth transition */
}

.icon:hover {
  stroke: var(--highlight-color); /* Facebook blue on hover */
}

.footer_contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot1 {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social_logo {
  display: flex;
  gap: 20px;
}

/*MARK:New Footer */

.footer-parent {
  border-top: 1px solid #d9dbe3;
}

.footerout {
  padding: 24px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.footerleft {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  width: 60%;
}
.footer-copy {
  background-color: var(--highlight-color);
  width: 100%;
}
.foot-copy {
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
}

.foot-copy > p {
  font-size: 16px;
  color: white;
}
.foot-terms {
  display: flex;
  gap: 24px;
  font-size: 14px;
}
.foot-terms a {
  color: white;
}

.nfoot {
  display: flex;
  gap: 16px;
}

.nfooter_contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-black);
  width: max-content;
}
.nfoot-time {
  color: var(--text-black);
  font-size: 16px;
}
.nfoot a {
  color: var(--text-black);
  font-size: 16px;
}

/* MARK: file upload section */

.fileupload_outer {
  width: 100%;
  /*padding: 80px;*/
}
.fileuploadinner {
  padding: 1.5rem;
  background-color: #f2f4f7;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 80px;
}
.upload_section {
  display: flex;
  gap: 1.5rem;
}
.fileupload {
  padding: 2rem;
  background-color: #fff;
  width: 60%;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.fileupload h3 {
  font-size: 1.5rem;
  color: #150b04;
}

.uploadarea {
  padding: 33px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px dashed var(--highlight-color);
  border-radius: 12px;
  gap: 1rem;
}

.uploadarea button {
  padding: 8px 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--highlight-color);
  border-radius: 8px;
  color: var(--highlight-color);
  cursor: pointer;
}

.personal {
  padding: 2rem;
  width: 40%;
  background-color: #fff;
  border-radius: 1rem;
}

.personal .heading {
  font-size: 1.5rem;
  color: #150b04;
}

.field {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1rem;
  gap: 0.85rem;
}

.field input {
  padding: 1.125rem;
  border-radius: 12px;
  border: 1px solid #c8cde2;
}

.consent {
  display: flex;
  gap: 1rem;
  width: 50%;
}

.submitbtn {
  width: 20%;
}
.submitbtn button {
  width: 100%;
}
/* Hide arrows for Chrome, Safari, Edge */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows for Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.uploadarea.dragover {
  background-color: #f0f8ff;
  border: 2px dashed #0056b3;
  border-radius: 8px;
  transition:
    background-color 0.3s,
    border-color 0.3s;
}
.error-message {
  color: red;
  font-size: 13px;
  margin-top: 4px;
}

.client {
  width: 100%;
  height: fit-content;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0px 0px 16px rgba(142, 144, 152, 0.25);
  flex: 0 0 auto;
}

.nav-register {
  outline: none;
  border: none;
  background-color: var(--btn-color);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 26px;
  margin-left: 24px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0px 0px 32px 8px rgba(170, 189, 255, 0.32);
}

/*MARK:Aboutus Page*/

.about-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero Section */
.about-hero {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #022f26cc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .about-hero {
    height: 450px;
  }
}

.video-container {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -10;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 83.333%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.hero-content {
  width: 90%;
}

@media (min-width: 1024px) {
  .hero-content {
    width: 72%;
  }
}

.hero-content h1 {
  font-size: 20px;
  color: #fff;
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 28px;
  }
}

.divider {
  height: 1px;
  width: 40px;
  background-color: #eb5a36;
}

.hero-content h2 {
  color: #fff;
  font-size: 20px;
}

@media (min-width: 1024px) {
  .hero-content h2 {
    font-size: 40px;
  }
}

/* About Content Section */
.about-content {
  width: 100%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .about-content {
    padding: 2.5rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-content {
    flex-direction: row;
    justify-content: center;
    padding: 2.5rem;
    gap: 9vw;
  }
}

.about-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .about-text {
    width: 66.666%;
  }
}

.about-text .para1 {
  font-size: 1rem;
  color: #f78b1b;
}

@media (min-width: 1024px) {
  .about-text .para1 {
    font-size: 20px;
  }
}

.about-text .para2 {
  font-size: 1rem;
  color: var(--textblack);
}

@media (min-width: 1024px) {
  .about-text .para2 {
    font-size: 20px;
  }
}

.about-image {
  width: 100%;
}

@media (min-width: 1024px) {
  .about-image {
    width: 33.333%;
  }
}

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

/*MARK:Aboutus Page Vision mission*/

.about-wrapper {
  width: 100%;
  background-color: #f5f5f5;
}

.about-container {
  padding: 2.5rem 2rem 0 2rem;
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-container {
    flex-direction: row;
    align-items: center;
    padding: 5rem;
    padding-left: 5rem;
    padding-right: 5rem;
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-vision .about-container {
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    padding-left: 5rem;
    padding-right: 5rem;
    gap: 1.5rem;
  }
}
.about-image {
  width: fit-content;
  display: flex;
  justify-content: center;
}
.about-image img {
  max-width: 400px;
  height: auto;
  max-height: 300px;
}

@media (min-width: 1024px) {
  .about-image {
    width: fit-content;
  }
  .about-image img {
    max-height: 400px;
  }
}

.about-vision .about-image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.about-vision .about-image img {
  max-width: 400px;
  height: auto;
  max-height: 300px;
}

@media (min-width: 1024px) {
  .about-vision .about-image {
    width: 50%;
  }
  .about-vision .about-image img {
    max-height: 400px;
  }
}

.about-text {
  width: 100%;
}

@media (min-width: 1024px) {
  .about-text {
    width: 40%;
  }
}

.about-text-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .about-text-inner {
    gap: 1.5rem;
  }
}

.about-text-inner h1 {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-black);
}

@media (min-width: 1024px) {
  .about-text-inner h1 {
    font-size: 40px;
    font-weight: 400;
  }
}

.about-text-inner .para {
  font-size: 1rem; /* text-base */
  line-height: 20px;
}

@media (min-width: 1024px) {
  .about-text-inner .para {
    font-size: 18px;
    line-height: 22px;
  }
}

/*MARK:Aboutus Page Journey section*/

.ourjourney-container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.ourjourney-container h1 {
  color: var(--text-black);
  font-weight: 400 !important;
  font-size: 40px;
}
.section {
  padding: 2.5rem 0;
}

.title {
  font-size: 24px;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .section {
    padding: 2rem 0;
  }
}

/* Mobile timeline */
.timeline-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.timeline-mobile .year-start,
.timeline-mobile .year-end {
  color: #f78b1b;
  font-size: 18px;
}

.timeline-mobile .timeline-bar {
  width: 10px;
  height: 3px;
  background-color: #b8b8b8;
}
.journey-wrapper {
  margin-top: 40px;
}

.journey-desktop {
  display: flex;
  justify-content: center;
  /*align-items: flex-start;*/
  /*gap: 1.5rem;*/
}
.year-column {
  display: none;
}
@media (min-width: 1024px) {
  .timeline-mobile {
    display: none;
  }

  .year-column {
    width: 33.3333%;
    display: flex;
    align-items: center;
  }

  .right-journeye {
    justify-content: flex-end;
  }
  .line-horizontal {
    width: 100vw;
    height: 1px;
    background-color: #b8b8b8;
    position: absolute;
    display: flex;
    align-items: center;
    padding-left: 5rem;
    z-index: -1;
    left: 0;
  }

  .line-horizontal.right {
    justify-content: flex-end;
    padding-right: 5rem;
  }

  .line-vertical {
    width: 1px;
    height: 40px;
    background-color: #b8b8b8;
    position: absolute;
    top: 25px;
    left: 50px;
  }
  .right-journeye .line-vertical {
    top: 25px;
    right: 50px;
  }

  .year {
    margin-top: 5rem;
    font-size: 40px;
    font-weight: bold;
    color: #f78b1b;
  }

  .achievements-card {
    width: 33.3333%;
    border: 1px solid #ccc;
    padding: 1.25rem;
    min-height: 250px;
    display: flex;
    align-items: center;
  }

  .achievements-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .achievements-card li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    font-size: 18px;
  }

  .achievements-card img {
    padding: 0.25rem;
  }
}
.achievements-card {
  width: 100%;
  max-width: 450px;
  border: 1px solid #ccc;
  padding: 1.25rem;
  min-height: 250px;
  display: flex;
  align-items: center;
  z-index: 1;
  background: white;
}

.achievements-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.achievements-card li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  font-size: 18px;
}

.achievements-card img {
  padding: 0.25rem;
}
.controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 2rem;
}
.right .line-vertical {
  right: 8vw;
  left: unset;
}

.controls img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.ourjourney-container button {
  border: none;
  outline: none;
  background: transparent;
}

.aboutus-container h1,
.aboutus-container h2 {
  font-weight: 400;
}
.controls #counter {
  font-size: 20px;
}

/*Aboutus flagship*/

.flagshipouter {
  background-size: cover;
  padding: 2rem;
  background-image: url("../assets/images/flagshipbanner.png");
}

.flagship-container {
  max-width: 1536px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.flagship-container h1,
.flagship-container h4 {
  font-weight: 400;
  color: var(--text-black);
}

.flagship-container h4 {
  font-size: 18px;
  line-height: 24px;
}
.flagship-container li {
  font-size: 14px;
}
.flagship-container ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flagship-header {
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .flagship-container {
    flex-direction: row;
    gap: 2.5rem;
    padding: 2rem 1.5rem;
  }
  .flagship-container h4 {
    font-size: 24px;
    line-height: 30px;
  }
}

.flagship-image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.flagship-image img {
  width: 100%;
}
@media (min-width: 1024px) {
  .flagship-image {
    width: 50%;
    justify-content: center;
  }
  .flagship-image img {
    width: 100%;
    max-width: 528px;
  }
}

.flagship-content {
  width: 100%;
}

@media (min-width: 1024px) {
  .flagship-content {
    width: 50%;
    padding-left: 2.5rem;
  }
}

.flagship-header h1 {
  font-size: 32px;
  margin-bottom: 0.8rem;
}

@media (min-width: 1024px) {
  .flagship-header h1 {
    font-size: 40px;
  }
}

.flagship-header p {
  font-size: 14px;
  color: #33312f;
  width: 80%;
}

@media (min-width: 1024px) {
  .flagship-header p {
    font-size: 18px;
  }
}

/* Accordion */
.flagship-accordion .accordion-item {
  border-top: 1px solid #ccc;
  padding: 2rem 0;
}

.flagship-accordion .accordion-item:last-child {
  border-bottom: 1px solid #ccc;
}

.accordion-button {
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.accordion-button .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

@media (min-width: 1024px) {
  .accordion-button .accordion-header {
    font-size: 24px;
  }
}

.accordion-button img {
  transition: transform 0.3s ease;
}

.accordion-button img.rotate-180 {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding-top: 1.5rem;
}

.accordion-content.flex {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.accordion-content li {
  font-size: 14px;
  color: #33312f;
  display: flex;
  align-items: start;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .accordion-content li {
    font-size: 16px;
  }
}

/* Media query */

@media (max-width: 1200px) {
  .footerleft {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1100px) {
  .client-head {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 14px;
  }
  .headermain {
    padding: 1rem 2rem;
  }
  .loginsection img {
    height: 18px;
    width: 18px;
  }
  /*.menu2 {*/
  /*  padding-right: 1rem;*/
  /*}*/
  .herosection {
    height: 490px;
    background: url("../assets/images/herobannermb.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .herocontent {
    width: 90%;
  }

  .herocontent h1 {
    font-size: 2rem;
  }
  .herocontent p {
    width: 80%;
    font-size: 1rem;
  }

  .missionsection {
    padding: 5.5rem 2rem;
  }
  .missionmain,
  .planmain {
    gap: 1.5rem;
  }
  .missionmain h2,
  .planpricing h2 {
    font-size: 1.75rem;
  }
  .missionmain p {
    width: 80%;
    font-size: 1rem;
  }
  .clientandmission {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .client,
  .mission {
    width: 100%;
    padding: 2rem;
  }
  .client h4,
  .mission h4 {
    font-size: 1.5rem;
  }

  .client p,
  .mission p {
    font-size: 1rem;
  }

  .planpricing {
    padding: 2rem;
    gap: 3rem;
  }
  .pricingouter {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .priceind {
    padding: 1rem;
  }
  .priceind p {
    padding-top: 0;
  }
  .priceind > p {
    padding-top: 1rem;
  }

  .featureformobile {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    gap: 1rem;
  }

  .pricingtable {
    display: none;
  }

  .featurelistmb {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .featurelistmb div {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footerouter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding: 30px;
  }
  .afoot {
    margin-left: 0 !important;
  }

  .fileupload_outer {
    padding: 40px 20px;
  }

  .fileuploadinner {
    padding: 1rem;
    border-radius: 1rem;
  }

  .upload_section {
    flex-direction: column;
  }

  .fileupload {
    width: 100%;
  }
  .fileupload h3 {
    font-size: 1.25rem;
  }

  .personal {
    width: 100%;
  }

  .personal .heading {
    font-size: 1.25rem;
    color: #150b04;
  }

  .consent {
    width: 100%;
  }

  .submitbtn {
    width: 70%;
  }

  .login_div {
    width: 100%;
    min-width: unset;
  }
  /*.login_div h3 {*/
  /*  font-size: 1.25rem;*/
  /*  color: #2d3760;*/
  /*}*/
  /*.login_div p {*/
  /*  font-size: 0.85rem;*/
  /*}*/
  .client-head {
    width: 100%;
  }
  .client-img {
    width: 100%;
    max-height: unset;
  }
  .footerout {
    padding: 24px 1.5rem;
    gap: 16px;
    align-items: flex-end;
  }
  .foot-copy {
    padding: 20px 1.5rem;
  }
}

@media (max-width: 800px) {
  .footerout {
    flex-direction: column;
  }
  .footerleft,
  .footer-right {
    width: 100%;
  }
  .foot-copy {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .nfoot {
    flex-direction: column;
  }
  .planpricing {
    padding: 1rem;
  }
  .getintouch {
    flex-direction: column;
    margin-top: 10px;
  }
  .getintouch hr {
    display: none;
    gap: 20px;
  }
  .foot1 {
    flex-direction: column;
    gap: 20px;
  }
  .footerouter {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}

@media (max-width: 500px) {
  .foot-copy {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nfoot-time {
    font-size: 14px;
  }
  .nfoot a {
    font-size: 14px;
  }
  .foot-copy > p {
    font-size: 14px;
  }
  .foot-terms a {
    font-size: 12px;
  }
  .nav-register {
    padding: 10px 12px;
    font-size: 14px;
    margin-left: 10px;
  }
  .loginsection .menu2 {
    padding: 0 5px 0 10px;
  }
  .headermain {
    padding: 1rem;
  }
}

/*Privacy Popup*/
.privacy-policy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.policy-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.policy-section h2 {
  font-size: 18px;
}
.popup {
  display: none;
  position: fixed;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  /* border: 1px solid #ccc; */
  border-radius: 16px;
  width: 80vw;
  min-width: 350px;
  max-height: 80vh;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.popup-header {
  position: sticky;
  top: 0;
  width: -webkit-fill-available;
  background: white;
  display: flex;
  justify-content: space-between;
  padding: 20px 20px 10px 20px;
  border-bottom: 1px solid #ccc;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
}

#popup-content {
  padding: 25px;
  overflow: auto;
  max-height: 70vh;
  border-bottom-right-radius: 16px;
  clip-path: inset(0 round 14px);
}
.popup-header h2 {
  margin: 0;
  font-size: 18px;
}

#popup-content ul {
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gaps {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.close-btn {
  cursor: pointer;
  font-size: 25px;
  border: none;
  background: none;
}
#popup-content p {
  font-size: 16px;
  line-height: 22px;
}

.flage-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .flage-container {
    flex-direction: row;
    gap: 40px;
    width: 50%;
  }
}

.flage-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flage-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flage-header h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #2c2c2c;
}

@media (min-width: 640px) {
  .flage-header h1 {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .flage-header h1 {
    font-size: 40px;
  }
}

.flage-header p {
  font-size: 14px;
  margin: 0;
  color: #666666;
  width: 100%;
}

@media (min-width: 640px) {
  .flage-header p {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .flage-header p {
    font-size: 18px;
  }
}

.features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flage {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #efe6dc;
  border-radius: 16px;
  padding: 8px 12px;
  background: #fff;
  transition: box-shadow 0.3s;
}

.flage img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.flage p {
  margin: 0;
  font-size: 18px;
  color: #2c2c2c;
}

@media (min-width: 640px) {
  .flage p {
    font-size: 20px;
  }
}

/* FAQ section */

.faq-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}
.faq-title {
  font-size: 2rem;
  margin-bottom: 10px;
}
.faq-heading {
  font-size: 2.5rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.faq-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  min-height: 190px;
}
.faq-card h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.faq-card p {
  font-size: 16px;
  color: #040815;
  line-height: 1.4;
}
.faq-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.faq-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-dot.active {
  width: 30px;
  border-radius: 20px;
  background: var(--highlight-color1);
}
@media (max-width: 640px) {
  .faq-card h2 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .faq-card p {
    font-size: 14px;
    color: #040815;
    line-height: 1.4;
  }
  .faq-title {
    font-size: 1.75rem !important;
    margin-bottom: 0px;
  }
  .faq-card {
    min-height: 167px;
  }
  .popup {
    width: 90vw;
  }
}
