:root {
  --primary-color: rgba(224, 0, 0, 1);
  --font-popin: "Poppins", sans-serif;
  --font-nution: "Nunito Sans", sans-serif;
  --font-opensans: "Open Sans", sans-serif;
}

/* navbar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  padding: 20px 70px 10px 70px !important;
  box-shadow: 0px 3.34px 76.69px -23.36px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(50.06657028198242px);
}

.navbar .navbar-brand img {
  height: 45px;
}

.navbar-button {
  background-color: var(--primary-color);
  border-radius: 20px;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  font-family: var(--font-popin);
}

.navbar-button:hover {
  background-color: rgba(224, 0, 0, 0.8);
  transition: 0.3s ease-in-out;
}

@media (max-width: 785px) {
  .navbar {
    padding: 20px 0px !important;
  }
}

/* hero */
.hero {
  padding: 0px 20px 50px 20px;
  background-color: rgb(255, 255, 255);
  background: url(../imgs/herobg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .hero-layer {
    display: none;
  }
}

.hero .hero-content {
  text-align: center;
  padding: 30px 30px;
  position: relative;
}

.hero .hero-content h1 {
  font-size: clamp(28px, 6vw, 80px);
  font-family: var(--font-popin);
  font-weight: 700;
  color: rgba(45, 45, 45, 1);
}

/* second page hero dseign title */
.hero .hero-content h2 {
  font-size: clamp(28px, 6vw, 80px);
  font-family: var(--font-popin);
  font-weight: 500;
  color: rgb(0, 0, 0);
}

.hero-bottom-para {
  margin-top: 30px;
  font-family: var(--font-popin);
  font-size: 16px;
  color: black;
}

.hero .hero-content h2 span {
  color: var(--primary-color);
}

.hero .hero-content p {
  font-size: clamp(14px, 2vw, 20px);
  color: rgba(45, 45, 45, 1);
  font-family: var(--font-popin);
  font-weight: 400;
}

.hero-layer {
  position: absolute;
  top: 115px;
  right: 0;
  height: 30px;
}

.hero-button-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-button-box button {
  background-color: var(--primary-color);
  border-radius: 20px;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 30px;
  font-family: var(--font-popin);
}

.hero-button-box button:hover {
  background-color: rgba(224, 0, 0, 0.8);
  transition: 0.3s ease-in-out;
}

.active {
  background-color: transparent !important;
  border: 1px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  transition: 0.3s ease-in-out;
}

.active:hover {
  background-color: var(--primary-color) !important;
  color: white !important;
}

@media (max-width: 670px) {
  .hero {
    padding: 30px 0px;
  }

  .hero-content {
    padding: 30px 15px;
  }

  .hero-layer {
    display: none;
  }
}

@media (max-width: 400px) {
  .hero {
    padding: 30px 0px;
  }

  .hero-content {
    padding: 30px 0px !important;
  }
}

/* how it works */
.works {
  padding-top: 20px 10px;
  position: relative;
  overflow: hidden;
}

.works .work-content {
  text-align: center;
  padding: 40px 0px;
}

.works .work-content h2 {
  font-size: clamp(24px, 4vw, 43px);
  font-family: var(--font-popin);
  font-weight: 700;
  color: black;
}

.works .work-content h5 {
  font-size: clamp(20px, 3vw, 34px);
  font-family: var(--font-popin);
  font-weight: 500;
  color: black;
}

/* .works .work-content .img-box {
  padding: 0px 250px;
  position: relative;
} */

/* .works .work-content .img-box img {
  width: 100%;
  margin-top: 10px;
} */

.works .work-content .img-box .play-button {
  position: absolute;
  color: var(--primary-color);
  font-size: clamp(30px, 5vw, 150px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.videolayer2 {
  position: absolute;
  height: 250px;
  transform: rotate(200deg);
  top: 0;
  right: -100px;
}

@media (max-width: 800px) {
  /* .works .work-content .img-box {
    padding: 0px 20px;
    position: relative;
  } */
}

/* features */
.features {
  background: url(../imgs/Group\ 1000002742.png);
  height: 150vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .features {
    height: 90vh;
  }
}

@media (max-width: 500px) {
  .features {
    height: 130vh;
  }

  .features-content {
    padding-top: 150px !important;
  }

  .features-content_content {
    padding: 40px 0px 0px 0px !important;
  }

  .features-content_img img {
    margin-top: 10px;
    height: 250px !important;
  }
}

.features-content {
  padding-top: 70px;
  padding-left: 0px;
}

.features-content h1 {
  font-size: clamp(24px, 4vw, 48px);
  color: white;
  font-weight: 700;
  font-family: var(--font-popin);
}

.features-content h4 {
  font-size: clamp(16px, 3vw, 24px);
  font-family: var(--font-popin);
  color: white;
  font-weight: 400;
}

.features-content_content {
  padding: 60px 30px 0px 0px;
}

.features-content_content h3 {
  font-size: clamp(24px, 4vw, 40px);
  font-family: var(--font-popin);
  color: white;
  margin-top: 20px;
}

.features-content_content h4 {
  font-size: clamp(16px, 3vw, 24px);

  color: white;
  font-family: var(--font-popin);
}

.features-content_content span {
  color: var(--primary-color);
  font-size: clamp(16px, 3vw, 28px);
  margin-right: 10px;
  font-weight: 600;
}

.features-content_content p {
  font-size: clamp(16px, 3vw, 20px);
  font-family: var(--font-popin);
  color: white;
  font-weight: 300;
}

.features-content_img img {
  height: 320px;
}

@media (max-width: 992px) {
  .features-content_img img {
    height: 300px;
  }
}

/* plan */
.plan {
  padding: 50px 0px 0px 0px;
  position: relative;
}

.plan-layer {
  position: absolute;
  top: 220px;
  height: 270px;
  z-index: -99999999;
}

.plan .plan-header {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.plan .plan-header button {
  background-color: var(--primary-color);
  border-radius: 20px;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 30px;
  font-family: var(--font-popin);
}

.plan .plan-header h2 {
  font-size: clamp(24px, 5vw, 48px);
  font-family: var(--font-popin);
  font-weight: 700;
  color: rgba(25, 31, 51, 1);
  margin-top: 10px;
}

.plan .plan-header p {
  font-size: clamp(16px, 2.5vw, 24px);
  font-family: var(--font-popin);
  font-weight: 400;
  color: rgba(91, 91, 91, 1);
  width: 700px;
  margin: 0;
}

.plan-content-card {
  margin-top: 50px;
  border: 1px solid #edeff7;
  border-radius: 13px;
  height: 750px;
  background-color: white;
}

.plan-content-card:hover {
  box-shadow: rgba(240, 5, 5, 0.2) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: 0.3s ease-in-out !important;
  transform: translateY(-5px);
}

.plan-card-header {
  display: flex;
  align-items: center;
  padding: 50px 0px;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px solid #edeff7;
}

.plan-card-header-second {
  background-color: var(--primary-color);
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}

.second-card-title {
  color: white !important;
}

.plan-card-header h1 {
  font-size: 24px;
  text-align: center;
  font-family: var(--font-popin);
  font-weight: 600;
  color: rgba(25, 31, 51, 1);
}

.plan-card-header p {
  font-size: clamp(13px, 2vw, 18px);
  text-align: center;
  font-family: var(--font-popin);
  color: rgba(118, 126, 148, 1);
}

.plan-card-header button {
  background-color: rgba(232, 247, 255, 1);
  color: var(--primary-color);
  font-size: 18px;
  display: flex;
  align-items: center;
  padding: 14px 50px;
  border-radius: 4px;
  gap: 5px;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-nution);
  border: none;
  margin-top: 30px;
}

.plan-card-header .btn:hover .right-button-arrow {
  transform: translateX(4px);
  transition: 0.3s ease-in-out;
}

.right-button-arrow {
  margin-top: 3px;
}

.plan-card-body {
  text-align: start;
  padding: 30px 25px 50px 50px;
}

.plan-card-body h3 {
  font-size: clamp(18px, 2.5vw, 27px);
  font-family: var(--font-popin);
  font-weight: 600;
}

.plan-card-body ul {
  /* padding: ; */
  list-style: none;
}

.plan-card-body ul li span {
  font-size: clamp(14px, 2vw, 18px);
  font-family: var(--font-popin);
  font-weight: 600;
  color: rgba(25, 31, 51, 1);
}

.plan-card-body ul li {
  font-size: clamp(14px, 2vw, 18px);
  font-family: var(--font-popin);
  font-weight: 500;
  margin-top: 30px;
  text-align: start;
  position: relative;
}

.list-circle-box {
  height: 27px;
  width: 27px;
  top: 2px;
  left: -35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 50%;
  background-color: rgba(224, 0, 0, 0.38);
}

.active-icon {
  background-color: var(--primary-color);
}

.check-icon {
  color: white;
  font-size: 12px;
}

@media (max-width: 500px) {
  .plan-layer {
    display: none;
  }

  .plan .plan-header p {
    width: 100%;
  }

  .plan-card-body ul {
    padding: 0;
  }

  .plan-content-card {
    height: 100% !important;
  }
}

/* faqs */
.faqs {
  padding-bottom: 50px;
  overflow: hidden;
  background: url(../imgs/faqslaye2.png);
  /* height: 100vh; */
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: end;
  margin-top: -200px;
  padding: 120px 0px 300px 0px;
  /* height: 300px; */
  /* background-position: center;
  background-size: cover;
  background-repeat: no-repeat; */
}

.faqs-content {
  text-align: start;
  padding: 240px 50px 0px 90px;
}

.faqs-content h1 {
  font-size: clamp(32px, 5vw, 45px);
  font-family: var(--font-popin);
  font-weight: 700;
}

.faqs-content p {
  font-size: clamp(14px, 1.8vw, 18px);
  font-family: var(--font-opensans);
}

.faqs-accordin-box {
  padding: 230px 40px 0px 40px;
}

.accordion-item {
  margin-top: 20px;
  padding: 0px 0px 0px 0px !important;
  border-radius: 13px !important;
  border: none;
}

.accordion-button {
  padding: 25px 20px !important;
  width: 100%;
  font-size: clamp(14px, 2vw, 17px) !important;
  font-family: var(--font-opensans);
  color: black;
  font-weight: 600;
  border-radius: 13px !important;
  /* Default state: all corners rounded */
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s, border-radius 0.3s;
  box-shadow: none !important;
  outline: none !important;
}

/* Red arrow icon color when collapsed */
.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(7492%) hue-rotate(356deg) brightness(91%) contrast(117%) !important;
  transition: filter 0.3s;
}

/* Open accordion style: black background, white text & icon */
.accordion-button:not(.collapsed) {
  background-color: black !important;
  color: white !important;
  border-radius: 13px 13px 0 0 !important;
  /* Only top corners rounded when open */
}

/* White icon when open */
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1) !important;
}

/* Hover effect for closed accordions */
.accordion-button:hover:not(:not(.collapsed)) {
  background-color: #f0f0f0 !important;
}

/* Fix for the accordion body to match the styling */
.accordion-collapse {
  border-bottom-left-radius: 13px !important;
  border-bottom-right-radius: 13px !important;
}

@media (max-width: 900px) {
  .faqs-accordin-box {
    padding: 50px 9px !important;
  }

  .faqs-content img {
    width: 100% !important;
  }

  .faqs-content {
    text-align: start;
    padding: 240px 50px 0px 20px;
  }
}

@media (max-width: 500px) {
  .faqs-content {
    padding-top: 300px;
  }
}

/* boost media */
.boost-social-media {
  margin-top: 30px;
  padding: 0px 0px;
  background: url(../imgs/boostbg3.png);
  max-height: 600px;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  background-position: top;
  background-repeat: no-repeat;
}

@media (max-width: 600px) {
  .boost-social-media {
    height: 100%;
  }
}

.boost-content {
  padding: 250px 60px 50px 60px;
}

.boost-content h3 {
  font-size: clamp(28px, 5vw, 40px);
  font-family: var(--font-nution);
  font-weight: 600;
}

.boost-content p {
  font-size: 20px;
  font-family: var(--font-nution);
  font-weight: 600;
  font-weight: 400;
  color: rgba(118, 126, 148, 1);
}

.boost-content button {
  background-color: transparent;
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--primary-color);
  font-family: var(--font-nution);
  font-weight: 700;
}

.boost-content button:hover {
  letter-spacing: 1px;
  transition: 0.3s ease-in-out;
}

.fa-chevron-right {
  margin-top: 2px;
  font-size: 14px;
}

.bootsimg-box {
  padding-top: 100px;
}

@media (max-width: 900px) {
  .boost-content {
    padding: 330px 20px 50px 20px;
  }

  .bootsimg-box {
    padding-top: 20px !important;
  }

  .bootsimg-box img {
    width: 90%;
  }
}

/* footer */
.footer {
  margin-top: 30px;
  padding: 60px 70px;
  background: url(../imgs/footerbg.png);
  /* height: 100vh; */
  /* height: 100%; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  margin-bottom: 0px !important;
  overflow: hidden;
}

@media (max-width: 500px) {
  .footer {
    padding: 60px 20px;
  }
}

.footer-content {
  padding-top: 150px;
}

.footer-content img {
  height: 55px;
}

.footer-content h5 {
  font-size: 18px;
  font-family: var(--font-popin);
  font-weight: 300;
  color: white;
  margin-top: 30px;
}

.footer-content span {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  font-size: 20px;
}

.footer-list {
  display: flex;
  padding: 120px 0px 50px 250px;
  align-items: center;
  justify-content: flex-start;
}

.footer-list ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.footer-list ul a {
  font-size: 20px;
  font-family: var(--font-popin);
  color: white !important;
  margin-top: 20px;
  text-align: start;
  text-decoration: none;
  font-weight: 300;
  cursor: pointer;
}

.footer-list ul a:hover {
  letter-spacing: 2px;
  transition: 0.3s ease-in-out;
}

@media (max-width: 900px) {
  .footer-list {
    display: flex;
    padding: 50px 0px 50px 0px;
    align-items: center;
    justify-content: flex-start;
  }

  .footer-content {
    padding-top: 150px;
  }
}

/* secondpage hero filter design  */
.container {
  width: 100%;
  max-width: 1200px;
}

/* Search bar container styles */
.search-container {
  margin-top: 20px;
  width: 100%;
  background-color: white;
  padding: 20px 20px !important;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 10px;
}

.search-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* Search input styles */
.search-input-wrapper {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.search-input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: none !important;
  border-radius: 6px;
  font-size: 16px;
  font-family: var(--font-popin);
  outline: none;
  transition: border-color 0.3s;
  font-weight: 300;
  color: #b2b2b2;
}

.search-input:focus {
  border-color: #fcfcfc;
}

/* Filter and Sort dropdown styles */
.filter-wrapper,
.sort-wrapper {
  position: relative;
}

.fa-sort,
.sort-dropdown,
.sort-dropdown,
.fa-calendar-alt,
.fa-chevron-down {
  color: var(--primary-color);
}

.filter-button,
.sort-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: white;
  border: 1px solid #ffffff;
  border-radius: 6px;
  cursor: pointer;
  color: #b2b2b2;
  font-family: var(--font-nution);
  font-size: 16px;
  white-space: nowrap;
}

.filter-dropdown,
.sort-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 180px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  margin-top: 5px;
  display: none;
}

.filter-dropdown ul,
.sort-dropdown ul {
  list-style: none;
}

.filter-dropdown li,
.sort-dropdown li {
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.filter-dropdown li:hover,
.sort-dropdown li:hover {
  background-color: #f3f4f6;
}

/* Global toggle styles */
.global-toggle {
  display: flex;
  align-items: center;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 10px;
  height: 22px;
  width: 22px;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}

.checkbox-container:hover input~.checkmark {
  background-color: #f9fafb;
}

.checkbox-container input:checked~.checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.toggle-label {
  margin-left: 8px;
}

/* Search button styles */
.search-button {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-nution);
  transition: background-color 0.3s;
  white-space: nowrap;
}

.search-button:hover {
  background-color: #b91c1c;
}

/* Responsive design */
@media (max-width: 992px) {
  .search-bar {
    justify-content: space-between;
  }

  .search-input-wrapper {
    flex: 1 0 100%;
    order: 1;
  }

  .filter-wrapper,
  .sort-wrapper {
    flex: 0 0 auto;
    order: 2;
  }

  .global-toggle {
    flex: 0 0 auto;
    order: 3;
  }

  .search-button {
    order: 4;
  }
}

@media (max-width: 768px) {
  .icon-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-wrapper,
  .sort-wrapper {
    width: 100%;
  }

  .filter-button,
  .sort-button {
    width: 100%;
    justify-content: space-between;
  }

  .global-toggle {
    margin: 10px 0;
  }

  .search-button {
    width: 100%;
  }
}

/* Active states */
.filter-button.active,
.sort-button.active {
  border-color: #dc2626;
}

.filter-dropdown.active,
.sort-dropdown.active {
  display: block;
}

/* second page design pos section */
.post {
  padding: 80px 40px;
  text-align: center;
}

.post-header h3 {
  font-size: clamp(18px, 2.2vw, 23px);
  font-family: var(--font-popin);
  color: rgba(0, 0, 0, 1);
  font-weight: 600;
  text-align: start;
}

.post-content {
  text-align: start;
  margin-top: 20px;
}

.post-content .post-img {
  width: 100%;
}

.post-content h3 {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-popin);
  color: black;
  margin-top: 20px;
}

.post-content p {
  font-size: 14px;
  font-family: var(--font-popin);
  font-weight: 400;
  color: black;
}

.icon-box {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  gap: 5px;
}

.icon-box h4 {
  font-size: 15px;
  font-family: var(--font-popin);
  margin: 0;
}

.icon-box h6 {
  font-size: 14px;
  font-family: var(--font-popin);
  margin: 0;
  color: rgba(166, 166, 166, 1);
  margin-top: 4px !important;
}

.post-content button {
  font-size: 17px;
  color: white;
  background-color: var(--primary-color);
  border-radius: 13px;
  padding: 8px 20px;
  border: none;
  font-weight: 600;
  margin-top: 15px;
}

.dividelayer {
  margin-top: 40px;
}

@media (max-width: 700px) {
  .post {
    padding: 50px 5px;
  }
  
}

/* third page design nokeyward-content-found */
.KeywordNotfound {
  padding: 70px 0px !important;
}

.nokeyward-content-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nokeyward-content-found h1 {
  font-family: var(--font-popin);
  color: black;
  font-size: 24px;
  text-align: center;
}

.nokeyward-content-found button {
  background-color: var(--primary-color);
  border-radius: 20px;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 30px;
  margin-top: 10px;
  font-family: var(--font-popin);
}