/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  --first-color: hsl(30, 70%, 60%);
  --first-color-alt: hsl(30, 70%, 45%);
  --first-color-light: hsl(30, 60%, 55%);
  --first-color-lighten: hsl(30, 90%, 95%);
  --second-color: hsl(40, 60%, 70%);
  --title-color: hsl(30, 20%, 20%);
  --text-color: hsl(30, 20%, 50%);
  --text-color-light: hsl(30, 70%, 65%);
  --border-color: hsl(30, 30%, 90%);
  --body-color: hsl(30, 20%, 95%);
  --container-color: hsl(30, 20%, 92%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: 3s;
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color:#fff;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button {
  font-family: var(--body-font);
  outline: none;
  border: none;
}

/*=============== THEME ===============*/
.change-theme {
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  transition: .3s;

  
}

.change-theme:hover {
  color: var(--first-color);
}

/*========== Variables Dark theme ==========*/
body.dark-theme {

  --first-color: hsl(30, 70%, 62%);
  --second-color: hsl(25, 57%, 54%);
  --title-color: hsl(30, 8%, 95%);
  --text-color: hsl(30, 8%, 70%);
  --border-color: hsl(30, 16%, 14%);
  --body-color: hsl(30, 12%, 8%);
  --container-color: hsl(30, 16%, 12%);

}

/*========== 
    Color changes in some parts of 
    the website, in dark theme 
==========*/

/* .dark-theme .home__search,
.dark-theme .swiper-button-next,
.swiper-button-prev {
  border: 3px solid var(--border-color);
} */

.dark-theme .nav__menu,
.dark-theme .home__img,
.dark-theme .popular__card:hover,
.dark-theme .value__img,
.dark-theme .accordion-open,
.dark-theme .accordion-open .value__accordion-icon,
.dark-theme .accordion-open .value__accordion-arrow,
.dark-theme .contact__img,
.dark-theme .contact__card-box:hover,
.dark-theme .scrollup {
  box-shadow: none;
}

.dark-theme .value__orbe,
.dark-theme .value__accordion-icon,
.dark-theme .value__accordion-arrow,
.dark-theme .contact__orbe,
.dark-theme .contact__card i,
.dark-theme .contact__card-button,
.dark-theme .subscribe__container {
  background-color: var(--container-color);
}

.dark-theme .subscribe__container {
  border: 6px solid var(--border-color);
}

.dark-theme .subscribe__description {
  color: var(--text-color);
}

.dark-theme::-webkit-scrollbar {
  background-color: hsl(228, 4%, 15%);
}

.dark-theme::-webkit-scrollbar-thumb {
  background-color: hsl(228, 4%, 25%);
}

.dark-theme::-webkit-scrollbar-thumb:hover {
  background-color: hsl(228, 4%, 35%);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
}

.section {
  padding: 1.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.section__title span {
  color: var(--second-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--second-color);
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: .4s;
}

nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
    color: #fff;
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: var(--font-medium);
    transition: .3s;
  }
  .nav__logo-img {
    height: 120px; /* Adjust the height of the logo */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain;
    padding: 10px 0; /* Fixed incorrect syntax */
    margin-top: 35px;
}

  .nav__logo i {
    font-size: 1rem;
  }
  
  .nav__logo:hover {
    color: var(--first-color);
  }
  


@media screen and (max-width:1023px) {
  .nav__menu {
    position: fixed;
    bottom: 2rem;
    background-color: var(--container-color);
    box-shadow: 0 8px 24px hsla(228, 66%, 45%, .15);
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 1.3rem 3rem;
    border-radius: 1.25rem;
    transition: .4s;
  }

  .nav__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav__link {
    color: var(--text-color);
    display: flex;
    padding: 0.5rem;
    border-radius: 50%;
  }

  .nav__link i {
    font-size: 1.25rem;
  }

  .nav__link span {
    display: none;
  }
  .nav__logo-img {
    height: 100px; /* Adjust the size of the logo */
    width: auto;
    object-fit: contain;
    padding:10 0 px; /* Ensures logo maintains its aspect ratio */
    margin-top: 40px;
  }
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 1px 4px hsla(228, 4%, 15%, .1);
}

.scroll-header .nav__logo {
  color: var(--first-color);
}

.scroll-header .change-theme {
  color: var(--title-color);
}

/* Active link */
.active-link {
  background: linear-gradient(101deg, hsl(30, 70%, 53%), hsl(30, 70%, 47%));
  color: #fff;
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
}



/*=============== HOME ===============*/
.home {
  /* background: linear-gradient(170deg, hsl(0, 0%, 22%) 0%, hsl(0, 0%, 6%)30%); */
  padding-bottom: 0;
}

.home__container {
  padding-top: 3rem;
  padding-bottom: 4rem;
  row-gap: 3.5rem;
}


.home__value-number {
  color: #fff;
}
           


.home__description {
  color: var(--text-color-light);
  margin-bottom: 2rem;
}

.home__search {
  background-color: var(--body-color);
  padding: .35rem .35rem .35rem .35rem;
  /* display: flex; */
  align-items: center;
  border-radius: 0.75rem;
  border: 3px solid var(--text-color-light);
  margin-bottom: 2rem;
}

.home__search i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.home__search-input {
  width: 40%;
  background-color: var(--body-color);
  color: var(--text-color);
  margin: 0 .5rem;
}

.home__search-input::placeholder {
  color: var(--text-color-light);
}

.home__value {
  display: flex;
  justify-content: space-between; /* Distributes columns evenly */
  flex-wrap: wrap; /* Ensures responsiveness */
  gap: 1rem; /* Provides uniform spacing */
}

.home__value div {
  flex: 1; /* Ensures equal width distribution */
  
}


.home__value-number {
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
}
.home__value-number2 {
  font-size: 3rem;
  font-weight: var(--font-medium);
  line-height: 1.2;
  color: #fff;
}

.home__value-number span {
  color: var(--second-color);
}
.home__value-number2 span {
  color: var(--second-color);
}

.home__value-description {
  display: flex;
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
}

.home__images {
  position: relative  ;
  display: flex;
  justify-content: center;
  bottom: -1rem;
}

.home__orbe {
  width: 265px;
  height: 354px;
  background: linear-gradient(180deg, hsl(0, 0%, 16%) 85%, hsl(0, 0%, 6%) 95%);
  border-radius: 135px 135px 0 0;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .home__orbe{
  height: 270px;
}
}



.home__img {
  position: absolute;
  width: 250px;
  height: 430px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  display: absolute;
  /* align-items: flex-end; */
  bottom: -1.5rem;
  /* box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25); */
}

.home {
  position: relative;
  overflow: hidden;
}

.home__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Sends video to the background */
  opacity: 0.35; /* Adjust for better visibility */
}


/*=============== BUTTON ===============*/
.button {
  display: inline-block;
  background: linear-gradient(101deg, hsl(30, 70%, 53%), hsl(30, 70%, 47%));
  color: #fff;
  padding: 10px;
  border-radius: 0.5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
  transition: .3s;
  cursor: pointer;
  margin-bottom: 2rem;
}
button .nav__link {
  color: white;
  text-decoration: none; /* To remove underline if necessary */
}


.button:hover {
  box-shadow: 0 4px 12px hsla(228, 66%, 25%, .25);
}

/* .nav__button {
  display: none;
} */

/*=============== LOGOS ===============*/
.logos__container {
  /* padding-top: 2rem; */
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
}

.logos__img {
  text-align: center;
}

.logos__img img {
  height: 60px;
  opacity: .2;
  transition: .3s;
}

.logos__img img:hover {
  opacity: .8;
}

/*=============== POPULAR ===============*/
.popular__container {
  padding: 1rem 0 0.6rem;
}

.popular__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 290px;
  padding: 1.5rem 0.5rem;
  border-radius: 1rem;
  margin: 0 auto;
  transition: 0.4s;
  /* background-color: var(--container-color); */
}

.popular__img {
  border-radius: 1rem;
  margin-bottom: 1rem;
  max-height: 25vh;
}

.popular__data {
  padding: 0 1rem 0 0.5rem;
}

.popular__price {
  font-size: var(--h2-font-size);
  color: var(--text-color);
  margin-bottom: 0.25rem;
  /* text-align: center; */

}

.popular__price span {
  color: var(--second-color);
  
}

.popular__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.75rem;
  /* text-align: center; */

}

.popular__description {
  /* text-align: center; */
  font-size: var(--small-font-size);
}

.popular__card:hover {
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}

/* Swiper class */
.swiper-wrapper {
  margin-bottom: 1.5rem;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: '';
}

.swiper-button-next,
.swiper-button-prev {
  top: initial;
  bottom: 0;
  width: initial;
  height: initial;
  background-color: var(--container-color);
  border: 2px solid var(--text-color-light);
  padding: 6px;
  border-radius: .5rem;
  font-size: 1.5rem;
  color: var(--first-color);
}

.swiper-button-prev {
  left: calc(50% - 3rem);
}

.swiper-button-next {
  right: calc(50% - 3rem);
}

/*=============== VALUE ===============*/
.value__container {
  row-gap: 3rem;
}

.value__images {
  position: relative;
  display: flex;
  justify-content: center;
}

.value__orbe {
  width: 266px;
  height: 316px;
  background: linear-gradient(180deg, hsl(0, 0%, 16%) 93%, hsl(0, 0%, 67%) 100%);
  border-radius: 135px 135px 16px 16px;
}

.value__img {
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

.value__description {
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.value__accordion {
  display: grid;
  row-gap: 1.5rem;
}

.value__accordion-item {
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  border-radius: .5rem;
  padding: 1rem .75rem;
}

.value__accordion-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.value__accordion-icon {
  background-color: var(--first-color-lighten);
  padding: 5px;
  border-radius: .25rem;
  font-size: 18px;
  color: var(--first-color);
  margin-right: .75rem;
  transition: .3s;
}

.value__accordion-title {
  font-size: var(--small-font-size);
}

.value__accordion-arrow {
  display: inline-flex;
  background-color: var(--first-color-lighten);
  padding: .25rem;
  color: var(--first-color);
  border-radius: 2px;
  font-size: 10px;
  margin-left: auto;
  transition: .3s;
}

.value__accordion-arrow i {
  transition: .4s;
}

.value__accordion-description {
  font-size: var(--smaller-font-size);
  padding: 1.25rem 2.5rem 0 2.75rem;
}

.value__accordion-content {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease;
}

.accordion-open {
  box-shadow: 0 12px 32px hsla(228, 66%, 45%, .1);
  transition: .4s;
}

.accordion-open .value__accordion-icon {
  box-shadow: 0 4px 4px hsla(228, 66%, 45%, .1);
}

.accordion-open .value__accordion-arrow {
  box-shadow: 0 2px 4px hsla(228, 66%, 45%, .1);
}

.accordion-open .value__accordion-arrow i {
  transition: 0.3s;
  transition: rotate(-180deg);
}

/*=============== CONTACT ===============*/
.contact__container {
  /* padding-top: 4rem; */
  /* padding-bottom: 4rem; */
  row-gap: 3.5rem;}

.contact__images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22rem;
  padding-top: 2rem;
}

.contact__content{
  justify-content: center;
  align-items: center;
}
.contact__orbe {
  width: 266px;
  height: 316px;
  background: linear-gradient(180deg, hsl(0, 0%, 16%) 93%, hsl(0, 0%, 67%) 100%);
  border-radius: 135px 135px 16px 16px;
}

.contact__img {
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

.contact__description {
  font-size: var(--small-font-size);
  margin-bottom: 2.5rem;
}

.contact__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem .75rem;
}

.contact__card-box {
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  padding: 1.25rem .75rem;
  border-radius: .5rem;
  transition: .3s;
}

.contact__card-info {
  display: flex;
  align-items: flex-start;
  column-gap: .75rem;
  margin-bottom: 1.25rem;
}

.contact__card i {
  padding: 6px;
  background-color: var(--first-color-lighten);
  border-radius: 6px;
  font-size: 1.25rem;
  color: var(--first-color);
}

.contact__card-title {
  font-size: var(--normal-font-size);
}

.contact__card-description {
  font-size: var(--smaller-font-size);
}

.contact__card-button {
  font-size: var(--small-font-size);
  padding: 14px 0;
  width: 100%;
  border-radius: .25rem;
  background: var(--first-color-lighten);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  box-shadow: none;
  transition: all .4s ease;
}

.contact__card-button:hover {
  background-color: var(--first-color);
  color: #fff;
}

.contact__card-box:hover {
  box-shadow: 0 8px 24px hsla(228, 66%, 45%, .1);
}


.contact__container_mail {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem 1rem;
    margin-top: 5rem; /* Adjust this value based on header height */
}

.contact__card_mail {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    background-color: var(--body-color);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px hsla(228, 66%, 25%, 0.1);
    padding-top: 3rem; /* Adds space inside the card */
}

.contact__card-box_mail {
    width: 100%;
}

.contact__form_mail {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.contact__input-box_mail {
    display: flex;
    flex-direction: column;
}

.contact__label_mail {
    font-size: var(--small-font-size);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact__input_mail {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    background-color: var(--body-color);
    color: var(--text-color);
    font-size: var(--normal-font-size);
    transition: 0.3s;
}

.contact__input_mail:focus {
    border-color: var(--first-color);
    outline: none;
}

.contact__card-button_mail {
    width: 100%;
    padding: 0.9rem;
    border-radius: 0.5rem;
    background: var(--first-color-lighten);
    color: var(--first-color);
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    cursor: pointer;
    transition: 0.3s;
}

.contact__card-button_mail:hover {
    background-color: var(--first-color);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact__container_mail {
        margin-top: 7rem; /* Increase margin for smaller screens */
    }
    .contact__images{
      font-size: 11rem;
      padding-top: 4rem;
    }
}


/*=============== SUBSCRIBE ===============*/
.subscribe {
  padding: 2.5rem 0;
}

.subscribe__container {
  background-color: var(--first-color);
  padding: 3rem 2rem;
  border-radius: 1.25rem;
  border: 6px solid var(--first-color-light);
  text-align: center;
}

.subscribe__title {
  font-size: var(--h2-font-size);
  color: #fff;
  margin-bottom: 1rem;
}

.subscribe__description {
  color: var(--first-color-lighten);
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.subscribe__button {
  border: 2px solid #fff;
  background: var(--first-color-light);
  font-size: var(--small-font-size);
}

.subscribe__button:hover {
  background-color: var(--first-color);
}

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 2.5rem;
}

.footer__logo {
  color: var(--first-color);
  font-size: 1rem; /* Increased from h3 to h1 for larger size */
  font-weight: var(--font-bold); /* Optional: Make it bolder */
  display: inline-flex;
  align-items: center;
  column-gap: .5rem; /* Slightly increased spacing */
  margin-bottom: 1rem; /* Adjust spacing */
}

.footer__logo i {
  font-size: 4rem;
}
.footer__logo-img{
  /* height: 40px;
  width: 40px; */
  transform: scale(0.9); /* 1.5x the original size */

}

.footer__description,
.footer__link {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.footer__content,
.footer__links {
  display: grid;
}

.footer__content {
  display: flex;
  justify-content: space-evenly;
  /* margin: auto; */
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.footer__links {
  row-gap: .7rem;
}

.footer__link {
  color: var(--text-color);
  transition: .3s;
}

.footer__link:hover {
  color: var(--title-color);
}

.social {
  margin: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;  /* gap between social media links */
}

.footer__social-link {
  font-size: 1.75rem;
  color: var(--text-color);
  transition: .3s;
}

.footer__social-link:hover {
  color: var(--title-color);
}

.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 1rem;
  padding-bottom: 6rem;
  row-gap: 1.5rem;
}

.footer__privacy {
  display: flex;
  justify-content: center;
  column-gap: 1.25rem;
}

.footer__copy,
.footer__privacy a {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
}

.footer__privacy {
  justify-content: center;
  column-gap: 1.25rem;
}
/* Responsive Design */
@media (max-width: 768px) {
  .footer__content {
      display: grid;
      grid-template-columns: repeat(2, 1.5fr); /* Two columns in mobile view */
      gap: 1.5rem;
      text-align: center;
      justify-content: center;
      align-items: center;
  }

  .footer__logo-section {
      text-align: center;
      grid-column: span 2; /* Make logo section full width */
  }

  .footer__links-section,
  .footer__contact-section {
      text-align: center;
      font-size: 0.3rem;
  }

  .footer__contact-section .footer__links li {
      justify-content: start;
      font-size: 0.7rem;
  }
  .footer__contact-section i{
    font-size: 10px;
  }
}


/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  border-radius: .5rem;
  background-color: hsl(228, 8%, 76%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(228, 8%, 64%);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(228, 8%, 54%);
  border-radius: .5rem;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--container-color);
  box-shadow: 0 8px 12px hsla(228, 66%, 45%, .1);
  display: inline-flex;
  padding: .35rem;
  border-radius: .25rem;
  color: var(--title-color);
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: .3s;
}

.scrollup:hover {
  transform: translateY(-.25rem);
  color: var(--first-color);
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 8rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width:350px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .section {
    padding: 3.5rem 0 1rem;
  }

  .home {
    padding-bottom: 0;
  }

  .contact__card {
    grid-template-columns: repeat(1, 180px);
    justify-content: center;
  }

}

@media screen and (max-width: 320px) {
  .nav__menu {
    padding: 1.3rem 1.5rem;
  }

  .home__value {
    column-gap: 1rem;
  }

  .home__img {
    width: 220px;
    height: 280px;
  }

  .home__orbe {
    width: 240px;
    height: 264px;
  }

  .logos__container {
    gap: 2rem 1rem;
  }

  .popular__card {
    width: 230px;
    padding: .5rem .5rem .75rem;
    
  }

  .value__img {
    width: 220px;
    height: 260px;

  }

  .value__orbe,
  .contact__orbe {
    width: 236px;
    height: 280px;
  }

  .subscribe__container {
    padding: 2rem 1rem;
  }

  .footer__content {
    gap: 1rem;
  }
}

@media screen and (max-width: 767px){
  .home__value-number2{
    font-size: 2rem;
  }
}
/* For medium devices */
@media screen and (min-width:576px) {
  .nav__menu {
    width: 342px;
  }

  .home__search {
    width: 412px;
  }

  .contact__card {
    grid-template-columns: repeat(2, 192px);
    justify-content: center;
  }

  .footer__content {
    grid-template-columns: repeat(3, max-content);
  }

}

@media screen and (min-width: 767px) {
  .home__container {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 2rem;
  }

  .home__orbe {
    align-self: flex-end;
  }

  .home__data {
    padding-bottom: 2rem;
  }

  .logos__container {
    padding-top: 1rem;
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
  }

  .value__container,
  .contact__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .contact__images {
    order: 1;
  }

  .contact__card {
    justify-content: initial;
  }

  .subscribe__container {
    padding: 3rem 13rem;
  }

  .footer__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }
}

/* For large devices */
@media screen and (min-width:1023px) {
  .section {
    padding: 7.5rem 0 1rem;
  }

  .section__title {
    font-size: 2.25rem;
  }

  .section__subtitle {
    font-size: var(--normal-font-size);
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__menu {
    width: initial;
    margin-left: auto;
  }

  .nav__list {
    display: flex;
    column-gap: 3rem;
  }

  .nav__link {
    color: var(--text-color-light);
  }

  .nav__link i {
    display: none;
  }

  .active-link {
    background: none;
    box-shadow: none;
    color: var(--first-color);
    font-weight: var(--font-medium);
  }

  .change-theme {
    margin: 0 3rem;
    color: var(--text-color-light);
  }

  .scroll-header .nav__link,
  .scroll-header .change-theme {
    color: var(--text-color);
  }

  .scroll-header .active-link {
    color: var(--first-color);
  }

  .home {
    padding-bottom: 0;
  }

  .home__container {
    padding-top: 5rem;
    column-gap: 2rem;
  }

  .home__data {
    padding-bottom: 4rem;
  }

  

  .home__description,
  .home__search {
    margin-bottom: 3rem;
  }

  .home__value {
    column-gap: 3.5rem;
  }

  .home__orbe {
    width: 504px;
    height: 611px;
    border-radius: 256px 256px 0 0;
  }

  .home__img {
    width: 472px;
    height: 634px;
    border-radius: 236px 236px 12px 12px;
    bottom: -2.5rem;
  }

  .logos__img {
    height: 100px;
  }

  .popular__card {
    width: 320px;
    padding: .75rem .75rem 2rem;
  }

  .popular__data {
    padding: 0 .25rem 0 .75rem;
  }

  .value__container,
  .contact__container {
    align-items: flex-start;
    column-gap: 5rem;
  }

  .value__orbe,
  .contact__orbe {
    width: 501px;
    height: 641px;
    border-radius: 258px 258px 16px 16px;
  }

  .value__img,
  .contact__img {
    width: 461px;
    height: 601px;
    border-radius: 238px 238px 12px 12px;
  }

  .value__img img,
  .contact__img img {
    max-width: initial;
    width: 490px;
  }

  .value__description,
  .contact__description {
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }

  .value__accordion-title {
    font-size: var(--normal-font-size);
  }

  .value__accordion-item {
    padding: 1.25rem 1.25rem 1.25rem 1rem;
  }

  .value__accordion-description {
    padding-bottom: 1rem;
    font-size: var(--small-font-size);
  }

  .contact__card {
    grid-template-columns: repeat(2, 200px);
  }

  .contact__card-box {
    padding: 28px 1.5rem 1.5rem ;
  }

  .subscribe__container {
    padding: 4rem 10rem 4.5rem;
    border-radius: 2rem;
    border: 12px solid var(--first-color-light);
  }

  .subscribe__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .subscribe__description {
    font-size: var(--normal-font-size);
     padding: 0 8rem;
  }

  .subscribe__button {
    font-size: var(--normal-font-size);
  }

  .footer__content {
    grid-template-columns: repeat(4, max-content);
  }

  .footer__title {
    margin-bottom: 1.5rem;
  }

  .footer__links {
    row-gap: 1rem;
  }

  .footer__info{
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 2rem;
  }

  .show-scroll {
    bottom: 3rem;
    right: 3rem;
  }

}

@media screen and (min-width: 1040px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__container {
    column-gap: 4rem;
  }

}

/* For 2K & 4K resolutions */
@media screen and (min-width: 2040px) {
  body {
    zoom: 1.5;
  }
}
@media screen and (min-width: 3840px) {
  body {
    zoom: 2;
  }
}

/* popup  */
/*=============== POPUP MODAL ===============*/
.popup__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup__container {
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 24px hsla(228, 66%, 25%, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.popup__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
  margin-bottom: 1rem;
}

.popup__text {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
}

.popup__button {
  width: 100%;
  padding: 0.9rem;
  border-radius: 0.5rem;
  background: var(--first-color-lighten);
  color: var(--first-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

.popup__button:hover {
  background-color: var(--first-color);
  color: #fff;
}

/* Show Popup */
.popup__overlay.show {
  visibility: visible;
  opacity: 1;
}

.popup__overlay.show .popup__container {
  transform: scale(1);
}


/* Responsive */
@media (max-width: 768px) {
  .popup__container {
    max-width: 90%;
    padding: 1.5rem;
  }
}

/*  about  */
/*=============== ABOUT PAGE ===============*/
/*=============== ABOUT PAGE ===============*/
.about__container {
  margin-top: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  row-gap: 3.5rem;
}

.about__title {
  line-height: 120%;
  text-align: center;
  font-size:4rem;
  margin-bottom: 1rem;
  font-size: var(--biggest-font-size);


}

.about__description {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  text-align: justify; /* Justified description */
  margin-bottom: 2rem;
}

.about__section {
  margin-bottom: 2rem;
  margin-left: 3rem;
  margin-right: 3rem;
}

.about__section h3 {
  font-size: var(--h2-font-size);
  font-weight: 600;
  color: black; /* Black color for headings in light mode */
  margin-bottom: 1rem;
  margin-left: 10rem;
  margin-right: 10rem;
}



.about__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start; /* Left align list items */
}

.about__list-item {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  list-style: disc;
  list-style-position: inside;
  margin-left: 1.5rem;
}

@media (min-width: 768px) {
  .about__section {
    margin-left: 10rem;
    margin-right: 10rem;
  }
  .about__title {
    font-size: var(--biggest-font-size);

  }

}

.about__title span {
  color: var(--second-color);
}


/*=============== TABLE SECTION ===============*/
.table-section {
  padding: 4.5rem 0 2rem;
  background-color: var(--body-color);
  margin: 0 auto;
  max-width: 1200px; /* Adjust the max-width as necessary */
}

.table-section .section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
  color: var(--title-color);
  margin-left: 2rem;
}

.table-section .section__subtitle {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: 2rem;
  margin-left: 2rem;
}

/* .table-container {
  overflow-x: auto;
} */

.responsive-table {
  width: 90%;
  border-collapse: collapse;
  margin-left: 3.5rem;
  margin-right: 1rem;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  
}

.responsive-table th, .responsive-table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border-color);
}

.responsive-table th {
  background-color: var(--first-color);
  color: #fff;

}

.responsive-table td {
  background-color: var(--body-color);
  color: var(--text-color);
}
.responsive-table th:first-child,
.responsive-table td:first-child {
  width: 75%;
}

.responsive-table th:last-child,
.responsive-table td:last-child {
  width: 25%;
}

/* Mobile View */
@media screen and (max-width: 768px) {
  .responsive-table{
    margin-left: 1rem;
  }
  .responsive-table th, .responsive-table td {
    display: inline-block;
    width: 48%;
    box-sizing: border-box;
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--border-color);
    font-size: 12px;



  }
  .responsive-table th:first-child,
  .responsive-table td:first-child {
    width: 50%;
  }

  .responsive-table th:last-child,
  .responsive-table td:last-child {
    width: 50%;
  }
}

/* Dark theme compatibility */
body.dark-theme .responsive-table th {
  background-color: var(--first-color-light);
}

body.dark-theme .responsive-table td {
  background-color: var(--container-color);
  color: var(--text-color-light);
}

body.dark-theme .responsive-table th, body.dark-theme .responsive-table td {
  border-color: var(--border-color);
}

/* Google Maps Container */
.map-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}

.map-container {
  width: 100%; /* Adjust width as needed */
  max-width: 800px;
  margin:0px ;
}

.google-map {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
}
