* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-color: #63a401;
  --secondary-color: #e1e1e0;
  --secondary-light: #f0f0f0;
}

::selection {
  background-color: var(--secondary-color);
  color: black;
}

.row {
  --bs-gutter-x: 0px;
}

header {
  height: auto;
  border: 1px solid transparent;
}

#head {
  position: fixed;
  width: 100%;
  background-color: white;
  top: 0;
  z-index: 99;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

header .row {
  height: auto;
  /* border: 1px solid; */
  padding: 20px 0;
}

header .row .col {
  height: auto;
  /* border: 1px solid; */
  display: flex;
  align-items: center;
}

header .row .col ul {
  display: flex;
  gap: 55px;
  margin: 0px;
}

header .row .col ul li {
  list-style: none;
}

header .row .col ul li a {
  text-decoration: none;
  color: black;
}

.desktop-menu a.active,
.mobile-sidebar a.active {
  color: var(--primary-color);
  position: relative;
}

.desktop-menu a.active::after,
.mobile-sidebar a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

header .row .col button {
  margin-left: auto;
}

.primary {
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
  text-transform: capitalize;
  border: transparent;
  background-color: var(--primary-color);
}

.secondary {
  padding: 10px 20px;
  border-radius: 30px;
  color: black;
  text-transform: capitalize;
  border: transparent;
  background-color: var(--secondary-color);
}

button a {
  text-decoration: none;
  color: black;
}

/* Mobile menu icon */
.mobile-menu-icon {
  display: none;
  margin-left: auto;
  font-size: 28px;
  cursor: pointer;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #fff;
  padding: 20px;
  transition: right 0.4s ease;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media (min-width: 991px) {
  .container {
    padding: 0px;
  }
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-sidebar ul li {
  list-style: none;
  font-size: 18px;
}

.mobile-sidebar ul li a {
  text-decoration: none;
  color: black;
}

.sidebar-header {
  display: flex;
  justify-content: flex-end;
}

.close-btn {
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .desktop-menu,
  .desktop-btn {
    display: none !important;
  }

  .mobile-menu-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .mobile-menu-icon {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }
}

@media (min-width: 992px) {
  .mobile-menu-col {
    display: none;
  }
}

/* -------------------------------------------------------------- */
/* --------------------------- HOME-PAGE ------------------------ */
/* ------------------------------------------------------------- */

.Home_Sec_1 {
  height: auto;
  /* border: 1px solid red; */
  margin-top: 120px;
}

.Home_Sec_1 .intro_Sec {
  height: 80%;
  /* border: 1px solid; */
  justify-content: space-between;
  margin: 2rem auto;
}

.Home_Sec_1 .intro_Sec .col:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Home_Sec_1 .intro_Sec .col:nth-child(1) p i {
  color: #63a401;
}

@media (max-width: 768px) {
  .intro_Sec {
    padding: 0 11px;
  }
  .Home_Sec_1 .intro_Sec .col:nth-child(1) .mt-2 button {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .Home_Sec_1 .intro_Sec {
    gap: 15px;
  }
}

/* SECTION-2 */

.logo_sec {
  height: auto;
  /* border: 1px solid; */
  margin-top: 120px;
}

.logo_sec .row {
  /* border: 1px solid green; */
  height: auto;
  justify-content: space-evenly;
  margin-top: 25px;
}

.logo_sec h2 {
  text-align: center;
}

.logo_sec .row .col {
  /* border: 1px solid green; */
  height: auto;
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
}

.logo_sec img {
  width: 70%;
  height: auto;
  display: block;
  margin: auto;
}

.logoSwiper {
  padding: 20px 0;
}

.swiper-slide {
  text-align: center;
}

@media (max-width: 768px) {
  .logo_sec {
    margin-top: 70px;
  }
}

/* value_proposition */

.value_proposition {
  height: auto;
  /* border: 1px solid red; */
  /* justify-content: center; */
  align-items: center;
  gap: 55px;
  display: flex;
  flex-direction: column;
  margin-top: 120px;
}

.value_proposition .row {
  height: auto;
  /* border: 1px solid red; */
}

.value_proposition .row .col {
  height: auto;
  /* border: 1px solid red; */
  border-left: 1px solid var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px;
}

.value_proposition .row .col:nth-child(1) {
  border-left: none;
}

.value_proposition .row .col img {
  width: 80px;
  margin-bottom: 15px;
}

.value_proposition .context {
  /* border: 1px solid; */
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
}

.value_proposition .context p {
  width: 70%;
  text-align: center;
}

@media (max-width: 768px) {
  .value_proposition {
    gap: 20px;
    margin-top: 70px;
  }
  .value_proposition .context {
    padding: 10px;
  }

  .value_proposition .context h2 {
    text-align: center;
  }

  .value_proposition .context p {
    width: 90%;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .value_proposition .row .col {
    border: none;
  }
}

/* core_services_overview */

.core_services_overview {
  height: auto;
  background-color: #f0f0f0;
  /* border: 1px solid; */
  margin-top: 120px;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.core_services_overview h2 {
  text-align: center;
}

.core_services_overview .row {
  height: auto;
  /* border: 1px solid; */
  justify-content: space-between;
}

.core_services_overview .row .col {
  height: 350px;
  /* border: 1px solid; */
  padding: 15px;
}

.core_services_overview .row .col:nth-child(1) {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.core_services_overview .row .col .service {
  height: 30%;
  /* border: 1px solid red; */
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  padding: 15px;
}

.core_services_overview .service {
  background-color: white;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.core_services_overview .service.active {
  background-color: rgb(36, 35, 35);
  color: white;
}

.core_services_overview .service.active h4,
.core_services_overview .service.active h6 {
  color: white;
}

.core_services_overview .row .col .service .left {
  width: 20%;
  /* border: 1px solid; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.core_services_overview .row .col .service .left button {
  padding: 8px 12px;
  font-size: 30px;
  border-radius: 5px;
  border: 1px solid var(--secondary-color);
  background-color: transparent;
}

.core_services_overview .row .col .service:nth-child(1) .left button {
  background-color: rgb(233, 255, 233);
  color: green;
}
.core_services_overview .row .col .service:nth-child(2) .left button {
  background-color: rgb(255, 248, 215);
  color: goldenrod;
}
.core_services_overview .row .col .service:nth-child(3) .left button {
  background-color: rgb(223, 223, 255);
  color: rgb(0, 0, 122);
}

.core_services_overview .row .col .service .right {
  width: 80%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  /* align-items: center; */
  /* border: 1px solid; */
}

.core_services_overview .row .col .service .right h6 {
  opacity: 0.9;
}

.core_services_overview .row .col .services_data {
  height: 100%;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  opacity: 1;
  transition: opacity 0.35s ease-in-out;
}

.fade-out {
  opacity: 0;
}

.core_services_overview .row .col .services_data div {
  height: 90%;
  width: 45%;
  /* border: 1px solid; */
}

.core_services_overview .row .col .services_data .service_data_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.core_services_overview .row .col .services_data .service_data_left h6,
.core_services_overview .row .col .services_data .service_data_left p {
  opacity: 0.6;
}

.core_services_overview .row .col .services_data .service_data_left h6 {
  font-size: 16px;
}

.core_services_overview .row .col .services_data .service_data_left p {
  padding: 10px 0;
}

.core_services_overview .row .col .services_data .service_data_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.core_services_overview .row .col .services_data .service_data_right ul {
  margin: 0px;
  padding: 0px;
  margin-right: auto;
}
.core_services_overview .row .col .services_data .service_data_right ul li {
  list-style: none;
  line-height: 3;
}
.core_services_overview
  .row
  .col
  .services_data
  .service_data_right
  ul
  li
  span {
  font-weight: 900;
  padding-right: 10px;
  color: var(--primary-color);
}

@media (max-width: 576px) {
  .core_services_overview {
    padding: 35px 0px;
    gap: 10px;
    margin-top: 50px;
  }

  .core_services_overview .row .col {
    height: auto;
  }

  .core_services_overview .row .col .service .right h4 {
    text-align: center;
  }

  .core_services_overview .row .col .service .right h6 {
    display: none;
  }

  .core_services_overview .row .col .services_data {
    flex-direction: column;
    padding: 15px;
  }

  .core_services_overview .row .col .services_data div {
    width: 98%;
  }
}

/* How Ottenn Works - The "Runway" */
.how_ottenn_works {
  height: 270vh;
  margin-top: 120px;
  position: relative;
}

.how_ottenn_works h2 {
  text-align: center;
  margin-bottom: 60px;
}

.how_ottenn_works .container {
  padding: 0 60px;
  margin: 0 auto;
}

/* Base Row Styling */
.how_ottenn_works .row {
  height: 450px;
  width: 100%;
  /* border: 1px solid #ddd; */
  position: sticky;
  border-radius: 20px;
  top: 150px;
  margin-bottom: 40px;
  justify-content: space-around;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.how_ottenn_works .row-1 {
  z-index: 1;
}

.how_ottenn_works .row-2 {
  z-index: 2;
}

.how_ottenn_works .row-3 {
  z-index: 3;
}
.how_ottenn_works .row-4 {
  z-index: 4;
}

.how_ottenn_works .container .row .col {
  /* border: 1px solid; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how_ottenn_works .container .row .col .content {
  /* border: 1px solid; */
  height: auto;
  width: 90%;
}

.how_ottenn_works .container .row .col:nth-child(2) img {
  width: 70px;
  margin-bottom: 20px;
}

.how_ottenn_works .container .row .col:nth-child(2) h6 {
  margin-top: 5px;
  margin-bottom: 25px;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .how_ottenn_works {
    height: auto;
    /* border: 1px solid; */
    margin-top: 70px;
  }
  .how_ottenn_works .row {
    height: auto;
    position: static;
    top: 0px;
  }

  .how_ottenn_works .container {
    padding: 15px;
    margin: 0 auto;
    /* border: 1px solid red; */
  }

  .faq_section .row img {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .how_ottenn_works {
    height: auto;
    min-height: auto;
    margin-top: 70px;
  }
  .how_ottenn_works .row {
    height: auto;
    position: static;
    top: 0px;
  }
  .how_ottenn_works .container {
    padding: 20px;
  }
  .how_ottenn_works .row .col {
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .how_ottenn_works .row .col:nth-child(1) {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1500px) {
  .how_ottenn_works {
    height: auto;
  }
}

/* SCROLL-SEC */

.grid_sec {
  height: auto;
  /* border: 1px solid; */
  margin-top: 120px;
}

.grid_sec h2 {
  text-align: center;
  text-transform: capitalize;
}

.grid_sec .container {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.grid_sec .container .row {
  height: auto;
  /* border: 1px solid green; */
  justify-content: space-around;
  gap: 40px;
}

.grid_sec .container .row .col {
  /* border: 1px solid; */
  height: 100%;
  border-radius: 20px;
  background-color: var(--secondary-light);
  padding: 40px;
}

.grid_sec .container .row .col .top-img {
  height: 75%;
  width: 100%;
  /* border: 2px solid red; */
}

.grid_sec .container .row .col .bottom-text {
  height: 25%;
  /* border: 2px solid red; */
  width: 100%;
  display: flex;
  /* justify-content: center; */
  gap: 25px;
  align-items: center;
  padding-top: 25px;
}

.grid_sec .container .row .col .bottom-text button {
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  border: none;
  color: black;
  background-color: white;
}

.grid_sec .container .row .col .bottom-text h4 {
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 768px) {
  .grid_sec {
    margin-top: 50px;
  }
  .grid_sec .container .row {
    flex-direction: column;
  }

  .grid_sec .container .row .col {
    padding: 10px;
  }

  .grid_sec .container .row .col .bottom-text h4 {
    font-size: 20px;
  }

  .grid_sec .container .row .col .bottom-text {
    gap: 15px;
    padding-top: 15px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .grid_sec .container .row {
    flex-direction: column;
  }
}

/* COUNTER-SECTION */

.counter_sec {
  height: auto;
  /* border: 2px solid; */
  margin-top: 120px;
}

.counter_sec .row {
  height: auto;
  /* border: 1px solid red; */
}

.counter_sec .row .col {
  height: auto;
  /* border: 1px solid red; */
  border-left: 1px solid var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px;
}

.counter_sec .row .col:nth-child(1) {
  border-left: none;
}

.counter_sec .row .col h1 {
  font-size: 100px;
  color: black;
}

.counter_sec .row .col h1 span:nth-child(2) {
  color: #6461fc;
}

@media (max-width: 768px) {
  .counter_sec {
    margin-top: 50px;
  }
  .counter_sec .row .col {
    border: none;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .counter_sec .row .col {
    border: 1px solid var(--secondary-color) !important;
  }
}

/* SCROLL-SECTION */

.scroll_sec {
  position: relative;
  height: auto;
  background: black;
  overflow: hidden;
  margin-top: 120px;
  padding: 250px 0;
}

.text-move {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
  /* border: 1px solid white; */

  /* FADE ON BOTH SIDES */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.text-move h1 {
  position: absolute;
  top: 0; /* START AT TOP */
  left: 0; /* FULLY VISIBLE */
  font-size: 120px;
  color: white;
  opacity: 0.8;
  white-space: nowrap;
}

.img-move {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  top: 5%;
  height: 150vh;
  /* border: 1px solid red; */
}

/* COMMON IMAGE STYLE */
.img-move .img {
  position: absolute;
  border-radius: 20px;
  will-change: transform;
}

.img-move .img-1 {
  top: 15%;
  left: 5%;
}

.img-move .img-2 {
  top: 12%;
  left: 35%;
}

.img-move .img-3 {
  top: 14%;
  left: 65%;
}

.img-move .img-4 {
  top: 45%;
  right: 6%;
}

.img-move .img-5 {
  bottom: 5%;
  left: 10%;
}

@media (max-width: 1199px) {
  .text-move {
    display: none;
  }

  .scroll_sec {
    padding: 150px 0;
  }
}

@media (max-width: 991px) {
  .scroll_sec {
    padding: 40px;
  }
  .img-move {
    position: relative;
    height: auto;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    pointer-events: auto;
  }

  .img-move .img {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    max-width: auto;
    transform: none !important;
  }
}

@media (max-width: 576px) {
  .img-move .img {
    width: 94%;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .scroll_sec {
    margin-top: 50px;
  }
}

/* FAQ */

.faq_section {
  height: auto;
  /* border: 1px solid; */
  padding: 100px 100px 0;
  margin-top: 80px;
}

.faq_section .row {
  height: auto;
  /* border: 1px solid red; */
  gap: 70px;
}

.faq_section .row .col {
  height: auto;
  /* border: 1px solid red; */
}

.faq_section .row .col h6 {
  text-transform: uppercase;
  opacity: 0.5;
}

.faq_section .row .col:nth-child(1) p {
  opacity: 0.8;
  padding: 10px 0;
}

.faq_section .row .col:nth-child(1) img {
  padding: 30px 0;
}

.faq_accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.faq_item {
  background: #f2f2f2;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq_item.active {
  background: #000;
  color: #fff;
}

.faq_question {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: inherit;
}

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition:
    height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  opacity: 0;
}

.faq_item.active .faq_answer {
  max-height: 200px;
  opacity: 1;
}

.faq_accordion .icon {
  transition: transform 0.3s ease;
}

.faq_accordion .faq_item.active .icon {
  transform: rotate(180deg);
}

.faq_answer p {
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #bbb;
}

.faq_item:not(.active) .faq_answer p {
  color: #666;
}

.faq_accordion .icon {
  font-size: 20px;
}

@media (max-width: 768px) {
  .faq_section {
    padding: 20px;
    margin-top: 50px;
  }

  .faq_section .row {
    flex-direction: column;
    gap: 25px;
  }

  .faq_question {
    padding: 15px;
    text-align: left;
  }
}

/* CONTACT US */

.contact_sec {
  height: auto;
  border: 1px solid;
  margin-top: 120px;
}

.contact_sec .container {
  height: auto;
  padding: 100px 0;
  color: white;
  border: 1px solid;
  border-radius: 20px;
  background-color: black;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.contact_sec .container p {
  width: 60%;
  text-align: center;
  opacity: 0.8;
  padding: 15px 0;
}

.contact_sec .container h6 {
  opacity: 0.5;
  text-transform: uppercase;
}

/* CLIENT-TESTIMONIAL */

.client_testimonial {
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 120px;
}

.client_testimonial .client_testimonial_head h6 {
  opacity: 0.6;
  text-transform: uppercase;
  text-align: center;
}

.testimonial-container {
  overflow: hidden; /* Hides the slides that aren't visible */
  width: 100%;
  position: relative;
  padding: 20px 0;
  /* border: 1px solid red; */
}

.testimonial-wrapper {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out; /* Smooth sliding effect */
  padding: 10px;
  /* border: 1px solid; */
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px); /* Makes 3 cards visible */
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px;
  border-radius: 8px;
}

.testimonial-card h1 {
  color: var(--primary-color);
}

.testimonial-card h5 {
  opacity: 0.8;
  font-size: 1rem;
}

.testimonial-card h6 {
  opacity: 0.6;
  margin-top: 15px;
}

.testimonial-card p i {
  color: orange;
}

.testimonial-container .nav-btn {
  padding: 12px 18px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: none;
  cursor: pointer;
  font-size: 24px;
  transition: 0.3s;
}

.testimonial-container .nav-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

@media (max-width: 768px) {
  .client_testimonial {
    gap: 0px;
    margin-top: 70px;
  }

  .testimonial-wrapper {
    gap: 0; /* Space between cards */
    padding: 15px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px); /* 2 cards per view */
  }

  .testimonial-wrapper {
    gap: 20px;
  }
}

/* FOOTER */

footer {
  background-color: var(--secondary-color);
  padding: 80px 0 40px 0;
  margin-top: 120px;
}

footer .container {
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 0 100px; */
}

/* Layout for Top Part */
.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 35px;
}

footer a {
  text-decoration: none;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.brand-text {
  line-height: 1.6;
  font-size: 15px;
  /* border: 1px solid; */
}

/* Link Columns */
.footer-links {
  width: 100%;
  display: flex;
  /* gap: 180px; */
  justify-content: space-around;
  /* border: 1px solid; */
}

.link-group {
  display: flex;
  flex-direction: column;
}

.link-group h4 {
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 600;
}

.link-group a {
  text-decoration: none;
  margin-bottom: 16px;
  font-size: 15px;
  transition: color 0.2s;
  color: black;
}

.link-group a:hover {
  color: var(--primary-color);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid black;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom a {
  /* text-decoration: underline; */
  color: black;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 12px;
}

.social-box {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8); /* Dark transparent box */
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}

.social-box:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  footer {
    background-color: var(--secondary-color);
    padding: 30px;
    margin-top: 50px;
  }
  footer .container {
    padding: 0px;
  }
  .footer-top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 0px;
  }
  .footer-links {
    gap: 20px;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  footer .container {
    /* border: 1px solid; */
    padding: 0px;
  }
  footer .footer-top {
    padding: 0px;
  }

  footer .footer-top .footer-links {
    gap: 80px;
  }
}

/* -------------------------------------------------------------- */
/* --------------------------- ABOUT-US ------------------------ */
/* ------------------------------------------------------------- */

.inner_head {
  height: 350px;
  /* border: 1px solid; */
  margin-top: 85px;
  box-shadow: inset 0 -50px 150px rgba(99, 164, 1, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.inner_head h1 {
  font-size: 50px;
}

.inner_head p {
  text-align: center;
}

@media (max-width: 768px) {
  .inner_head {
    padding: 0 20px;
  }
}
/* ABOUT-SECTION-1 */

.About_sec_1 {
  height: auto;
  /* border: 1px solid; */
  margin-top: 100px;
}

@media (max-width: 768px) {
  .About_sec_1 {
    margin-top: 60px;
  }
}

/* MISSION-VISION */

.mission-vision {
  height: auto;
  /* border: 1px solid red; */
  margin-top: 120px;
}

.mission-vision .container {
  gap: 50px;
  display: flex;
  flex-direction: column;
}

.mission-vision .row h6 {
  text-transform: uppercase;
  opacity: 0.5;
}

.mission-vision .row h2 {
  width: 35%;
}

.mission-vision .row:nth-child(2) {
  justify-content: space-between;
}

.mission-vision .row .col {
  height: auto;
  /* border: 1px solid red; */
}

.mission-tabs {
  gap: 12px;
}

.mission-content p {
  color: #666;
  line-height: 1.7;
  /* width: %; */
}
.mission-text {
  opacity: 1;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.mission-text.fade-out {
  opacity: 0;
  transform: translateY(5px);
}

.mission-text ul {
  list-style: none; /* Removes default dots if you want custom ones */
  padding-left: 0;
  margin-left: 15px;
  margin-top: 15px;
}

.mission-text li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #666;
}

/* Add a custom checkmark or dot for your points */
.mission-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745; /* Green checkmark */
  font-weight: bold;
}

.values-desc {
  color: #666;
}

@media (max-width: 992px) {
  .mission-vision {
    margin-top: 50px;
  }
  .mission-vision .container {
    gap: 25px;
  }
  .mission-vision .container .row h2 {
    width: 100%;
  }

  .mission-vision .row .col:nth-child(1) {
    justify-content: center;
    display: flex;
  }

  .mission-vision .container .row:nth-child(2) {
    gap: 20px;
  }

  .mission-tabs {
    gap: 5px;
    justify-content: space-around;
  }

  .mission-tabs button {
    font-size: 14px;
    padding: 12px 18px;
  }
}

/* OUR TEAM */

.our-team {
  height: auto;
  /* border: 1px solid; */
  margin-top: 120px;
}

.our-team h2 {
  text-align: center;
}

.our-team .container {
  margin-top: 50px;
}

.our-team .row {
  height: auto;
  /* border: 1px solid; */
  justify-content: space-evenly;
}

.our-team .row .col {
  height: auto;
  /* border: 1px solid; */
}

.our-team .row .col:nth-child(2) {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  gap: 10px;
}

.our-team .row .col:nth-child(2) h6 {
  opacity: 0.5;
}

.our-team .row .col:nth-child(2) h5 {
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .our-team {
    margin-top: 60px;
  }
  .our-team .row {
    gap: 20px;
  }
  .our-team .row .col:nth-child(1) {
    justify-content: center;
    display: flex;
    align-items: center;
  }
}

/* -------------------------------------------------------------- */
/* --------------------------- CONTACT-US ------------------------ */
/* ------------------------------------------------------------- */

.contact_us {
  height: auto;
  /* border: 1px solid; */
  margin-top: 120px;
}

.contact_us .row {
  height: auto;
  /* border: 1px solid red; */
  align-items: center;
  justify-content: space-evenly;
}

.contact_us .row .col {
  height: auto;
  /* border: 1px solid blue; */
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.contact_us .row .col .detail_div {
  height: auto;
  box-shadow:
    rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  padding: 15px;
  border-radius: 10px;
}

.contact_us .row .col .detail_div button {
  padding: 8px 12px;
  border-radius: 50%;
  /* font-size: 18px; */
  border: transparent;
  color: white;
  background-color: var(--primary-color);
}

.contact_us .row .col .detail_div a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  opacity: 0.7;
}

.contact_us .row .col:nth-child(2) {
  padding: 30px;
  background-color: #f7f7f7;
  border-radius: 10px;
  box-shadow:
    rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.contact_us .row .col:nth-child(2) form {
  height: auto;
  /* border: 1px solid; */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.contact_us .row .col:nth-child(2) form input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--secondary-color);
  margin: 10px 0;
}

.contact_us .row .col:nth-child(2) form textarea {
  width: 100%;
  border: 1px solid var(--secondary-color);
  margin: 10px 0;
}

.contact_us .row .col:nth-child(2) form button {
  margin: 15px 0;
}

/* contact_map */

.contact_map {
  height: auto;
  /* border: 1px solid; */
}

.contact_map .container {
  height: 500px;
  /* border: 1px solid; */
  margin-top: 120px;
}

.contact_map .container iframe {
  height: 100%;
  width: 100%;
}

/* -------------------------------------------------------------- */
/* --------------------------- SERVICES ------------------------ */
/* ------------------------------------------------------------- */

.services {
  height: auto;
  /* border: 1px solid; */
  margin-top: 120px;
}

.services .container {
  gap: 80px;
  display: flex;
  flex-direction: column;
}

.services .row {
  height: auto;
  /* border: 1px solid red; */
  justify-content: space-between;
}

.services .row .col {
  height: auto;
  /* border: 1px solid blue; */
}

.services .row .col:nth-child(1) {
  position: relative;
}

.services .row .col img:nth-child(1) {
  margin-bottom: 100px;
}

.services .row .col img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.services .row .col h6 {
  text-transform: uppercase;
  opacity: 0.5;
}

.services .row .col p {
  margin: 15px 0;
  line-height: 1.8;
  opacity: 0.7;
}

.services .row .col ul {
  margin: 15px;
  padding: 0;
}

.services .row .col ul li {
  list-style: none;
  line-height: 2;
}

.services .row .col ul li span {
  font-weight: 700;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .services .row {
    gap: 15px;
  }
  .services .row .col:nth-child(1) {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .services .row .col img:nth-child(1) {
    margin-bottom: 0;
  }

  .services .row .col img:nth-child(2) {
    position: static;
  }
}

/* -------------------------------------------------------------- */
/* --------------------------- SERVICES ------------------------ */
/* ------------------------------------------------------------- */

.smart-cashback-feature {
  height: auto;
  border: 1px solid;
  margin-top: 120px;
}

.smart-cashback-feature h6 ,
.digital-gold-feature h6,
.smart-cashback-feature h2,
.digital-gold-feature h2{
  text-align: center;
}

.smart-cashback-feature h6,
.digital-gold-feature h6{
  opacity: 0.7;
  text-transform: uppercase;
}

.smart-cashback-feature .row {
  width: 100%;
  height: auto;
  margin-top: 60px;
  /* border: 1px solid; */
  justify-content: space-between;
}

.smart-cashback-feature .row .col{
  height: auto;
  /* border: 1px solid; */
}

.smart-cashback-feature .row .col:nth-child(2){
  display: flex;
  justify-content: center;
  flex-direction: column;
  
}
.smart-cashback-feature .feature-list {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding-top: 20px;
}

.smart-cashback-feature .feature-item {
  display: flex;
  gap: 30px;
  /* border: 1px solid; */
  align-items: flex-start;
}

.smart-cashback-feature .feature-item .icon {
  padding: 15px 20px;
  background: #eef5f1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.smart-cashback-feature .feature-item .icon i {
  font-size: 30px;
  color: #2e7d32;
}

.smart-cashback-feature .feature-item .content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.smart-cashback-feature .feature-item .content p {
  /* font-size: 14px; */
  opacity: 0.75;
  margin: 0;
}


/* digital-gold-feature */

.digital-gold-feature {
  /* text-align: center; */
  margin-top: 120px;
}

.digital-gold-feature .features-container {
  /* max-width: 1200px; */
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.digital-gold-feature .feature-item {
  padding: 20px;
}

.digital-gold-feature .icon-circle {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.digital-gold-feature .icon-circle img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.digital-gold-feature .feature-item h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.digital-gold-feature .feature-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ✅ Tablet */
@media (max-width: 992px) {
  .digital-gold-feature .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ Mobile */
@media (max-width: 576px) {
  .digital-gold-feature .features-container {
    grid-template-columns: 1fr;
  }

  .digital-gold-feature .digital-gold-feature h2 {
    font-size: 28px;
  }
}
