/* === FOR DESKTOP === */

/* ================ */
/* ==== HEADER ==== */
/* ================ */

.main-header {
  padding: 0px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 5px -3px rgb(215, 215, 215);
  z-index: 999999;
}

.header-wrapper {
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.callbtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 25px;
  background-color: var(--primary-color);
  border-radius: 33px;
  width: 248px;
  height: 60px;
  border: none;
  cursor: pointer;
  animation: pulse-glow 2s infinite;
  text-decoration: none;
}


.callbtn>p {
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.callbtn {
  display: flex;
  white-space: nowrap;
}

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

/* ================ */
/* ==== FOOTER ==== */
/* ================ */

.main-footer {
  display: flex;
  flex-direction: column;
  width: 100%;
}


.footer-top {
  width: 100%;
  background: rgba(24, 161, 157, 0.06);
  display: flex;
  justify-content: center;
  padding: 40px 40px;
}

.footer-top-wrapper {
  width: 100%;
  max-width: 1480px;
  display: flex;
}

.footer-top-wrapper>.right {
  flex-basis: 30%;
}

.footer-top-wrapper>.middle {
  flex-basis: 28%;
}

.footer-top-wrapper>.left {
  flex-basis: 35%;
}

.footer-top-wrapper>.middle>h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: var(--secondary-color);
  margin-bottom: 35px;
}

.footer-top-wrapper>.middle>ul {
  list-style-type: none;
  margin-bottom: 35px;
}

.footer-top-wrapper>.middle>ul>li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-top-wrapper>.middle>ul>li>p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #7b7b7b;
  width: 100%;
  max-width: 433px;
}

.footer-top-wrapper>.left>h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: var(--secondary-color);
  margin-bottom: 35px;
}

.footer-top-wrapper>.left>ul {
  list-style-type: none;
}

.footer-top-wrapper>.left>ul>li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-top-wrapper>.left>ul>li>p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #7b7b7b;
  width: 100%;
  max-width: 433px;
}

.footer-top-wrapper>.left>ul>li>p>a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.footer-bottom>p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: var(--secondary-color);
}

/* ================ */
/* ===== MAIN ===== */
/* ================ */

main {
  margin-top: 120px;
}

/* ================ */
/* ===== HERO ===== */
/* ================ */

.hero {
  height: 621px;
  width: 100%;
  background-image: url("../assets/hero-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-wrapper {
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-wrapper>.text {
  background-color: #ffffffea;
  /* More opaque for cleaner look */
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  ;
  width: 45%;
  /* Slightly wider */
  min-width: 535px;
  padding: 40px;
  /* More padding */
  text-shadow: none;
  /* Remove text shadow for cleaner modern look */
  border-radius: 20px 0 0 20px;
  /* Rounded corners on left */
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.hero-wrapper>.text>h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
  display: flex;
  align-items: center;
  text-align: right;
  color: #ff9900;
  margin-bottom: 20px;
}

.hero-wrapper>.text>.p-1 {
  width: 100%;
  max-width: 480px;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  text-align: right;
  color: #246aac;
  margin-bottom: 20px;
}

.hero-wrapper>.text>.p-2 {
  width: 100%;
  max-width: 529px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: right;
  color: #ff9900;
}

/* =============================== */
/* ===== HERO CONTENT MOBILE ===== */
/* =============================== */
.hero-content-mobile {
  display: none;
}

/* ============================= */
/* ===== WHAT WILL YOU GET ===== */
/* ============================= */

.what-you-get {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(24, 161, 157, 0.06);
  padding: 40px 40px;
}

.what-you-get-wrapper {
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.what-you-get-wrapper>.right {
  flex-grow: 1;
}

.what-you-get-wrapper>.right>form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.what-you-get-wrapper>.right>form>.row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 620px;
}

.what-you-get-wrapper>.right>form>.row>input,
.what-you-get-wrapper>.right>form>.row>select {
  padding: 14px 24px;
  border: 1px solid var(--secondary-color);
  border-radius: 32px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(24, 161, 157, 0.6);
  width: 100%;
  background-color: transparent;
}

.what-you-get-wrapper>.right>form>.row>select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("../assets/dropdown.svg");
  background-repeat: no-repeat;
  background-position-x: 5%;
  background-position-y: 20px;
  padding-left: 2rem;
}

.what-you-get-wrapper>.right>form>.row>input::placeholder,
.what-you-get-wrapper>.right>form>.row>select::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(24, 161, 157, 0.6);
}

.what-you-get-wrapper>.right>form>button {
  width: 100%;
  max-width: 620px;
  padding: 14px 32px;
  background: var(--secondary-color);
  border: none;
  border-radius: 93px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
  cursor: pointer;
}

.what-you-get-wrapper>.left {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 400px;
}

.what-you-get-wrapper>.left>h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 39px;
  text-align: right;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.what-you-get-wrapper>.left>ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.what-you-get-wrapper>.left>ul>li {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  display: flex;
  align-items: center;
  color: #717171;
  gap: 10px;
}

/* ================= */
/* ===== ABOUT ===== */
/* ================= */

.about {
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-wrapper {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-wrapper>.top {
  width: 100%;
}

.about-wrapper>.top>p {
  width: 100%;
  max-width: 1204px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: right;
  color: #7b7b7b;
}

.about-wrapper>.bottom {
  display: flex;
  align-items: center;
  gap: 65px;
}

.about-wrapper>.bottom>img {
  width: 100%;
  max-width: 561px;
  max-height: 374px;
}

.about-wrapper>.bottom>.text>h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 39px;
  text-align: right;
  color: #246aac;
  width: 100%;
  max-width: 633.84px;
  margin-bottom: 30px;
}

.about-wrapper>.bottom>.text>p {
  width: 100%;
  max-width: 633.84px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: right;
  color: #7b7b7b;
}

/* ====================== */
/* ===== HIGHLIGHTS ===== */
/* ====================== */

.highlights {
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.highlights-wrapper {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
}

.highlights-wrapper>.top {
  width: 100%;
  margin-bottom: 30px;
}

.highlights-wrapper>.top>h2 {
  width: 100%;
  max-width: 1126px;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 39px;
  text-align: right;
  color: var(--primary-color);
}

.highlights-wrapper>.bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.highlights-wrapper>.bottom>.right {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.highlights-wrapper>.bottom>.right>h3 {
  width: 100%;
  max-width: 1204px;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  text-align: right;
  color: #498ebd;
  margin-bottom: 30px;
}

.highlights-wrapper>.bottom>.right>ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.highlights-wrapper>.bottom>.right>ul>li {
  width: 100%;
  max-width: 750px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: right;
  color: #7b7b7b;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.highlights-wrapper>.bottom>.right>ul>li>img {
  margin-top: 3px;
}

.highlights-wrapper>.bottom>.left {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.highlights-wrapper>.bottom>.left>.img {
  z-index: 4;
}

.highlights-wrapper>.bottom>.left>.objects-1 {
  position: absolute;
  opacity: 0.35;
  z-index: 2;
}

.highlights-wrapper>.bottom>.left>.objects-2 {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.highlights-wrapper>.bottom>.left>.ellipse {
  position: absolute;
  top: 65%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  z-index: 3;
}

/* ================ */
/* ===== TEAM ===== */
/* ================ */
.team {
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-wrapper {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
}

.team-wrapper>h2 {
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 54px;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.team-wrapper>.cards-desktop {
  display: flex;
  justify-content: space-evenly;
  gap: 30px;
}

.team-wrapper>.cards-mobile {
  display: none;
}

.card {
  width: 262px;
  height: 350px;
  background: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 0px 4px 25px 4px rgba(196, 196, 196, 0.35);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.card>.imgContainer {
  margin-bottom: 20px;
}

.card>.imgContainer>img {
  border-radius: 50%;
  width: 172px;
  height: 172px;
}

.card>h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 19px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.card>p {
  width: 100%;
  max-width: 210px;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #979797;
}

/* =================== */
/* ===== CONTACT ===== */
/* =================== */

.contact {
  padding: 40px 40px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-wrapper {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
}

.contact-wrapper>h2 {
  width: 100%;
  max-width: 1150px;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 54px;
  text-align: center;
  color: var(--primary-color);
  align-self: center;
  margin-bottom: 20px;
}

.contact-wrapper>.bottom {
  display: flex;
  justify-content: space-between;
}

.contact-wrapper>.bottom>.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}

.contact-wrapper>.bottom>.right>h4 {
  width: 100%;
  max-width: 616px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  text-align: right;
  color: #498ebd;
}

.contact-wrapper>.bottom>.right>form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 616px;
  position: relative;
}

.error {
  color: red;
  position: absolute;
  bottom: -30px;
}

.contact-wrapper>.bottom>.right>form>.row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.contact-wrapper>.bottom>.right>form>.row>input,
.contact-wrapper>.bottom>.right>form>.row>select {
  padding: 14px 24px;
  border: 1px solid var(--secondary-color);
  border-radius: 32px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(24, 161, 157, 0.6);
  width: 100%;
  background-color: transparent;
}

.contact-wrapper>.bottom>.right>form>.row>select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("../assets/dropdown.svg");
  background-repeat: no-repeat;
  background-position-x: 5%;
  background-position-y: 20px;
  padding-left: 2rem;
}

.contact-wrapper>.bottom>.right>form>.row>input::placeholder,
.contact-wrapper>.bottom>.right>form>.row>select::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(24, 161, 157, 0.6);
}

.contact-wrapper>.bottom>.right>form>button {
  width: 100%;
  /* max-width: 620px; */
  padding: 14px 32px;
  background: var(--secondary-color);
  border: none;
  border-radius: 93px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
  cursor: pointer;
}

.contact-wrapper>.bottom>.right>p {
  width: 100%;
  max-width: 616px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  text-align: right;
  color: #7b7b7b;
}

.contact-wrapper>.bottom>.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}

.contact-wrapper>.bottom>.left>h3 {
  width: 100%;
  max-width: 435px;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 39px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.contact-wrapper>.bottom>.left>.callbtn {
  background: var(--primary-color);
  border-radius: 33px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 218px;
  height: 50px;
  padding: 0px 20px;
  cursor: pointer;
}

.contact-wrapper>.bottom>.left>.callbtn>p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.02em;
  color: #ffffff;
}

/* ====================== */
/* ===== WHO ARE WE ===== */
/* ====================== */

.who-are-we {
  padding: 40px 40px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(24, 161, 157, 0.06);
}

.who-are-we-wrapper {
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: center;
}

.who-are-we-wrapper>.right {
  flex-grow: 1;
}

.who-are-we-wrapper>.right>p {
  width: 480px;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 50px;
  text-align: right;
  color: var(--secondary-color);
}

.who-are-we-wrapper>.left {
  flex-grow: 1;
}

.who-are-we-wrapper>.left .video-container {
  width: 626px;
  height: 357px;
  position: relative;
}

.who-are-we-wrapper>.left .video-container .play-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  height: 106.97013854980469px;
  width: 107px;
}

.who-are-we-wrapper>.left .video-container video {
  width: 626px;
  height: 357px;
  background-color: black;
  object-fit: contain;
}

.video-swiper {
  height: 600px;
  width: 800px;
}

.video-swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: scale(0.8) !important;
}

.video-swiper-slide.swiper-slide-active {
  transform: scale(1.1) !important;
  z-index: 9999;
}

.video-swiper-slide.swiper-slide-active video {
  box-shadow: 0px 4px 13px 5px rgba(129, 129, 129, 0.25);
}

.video-swiper-button-prev,
.video-swiper-button-next {
  width: 64px !important;
  height: 64px !important;
  border: 1px solid var(--secondary-color) !important;
  border-radius: 50% !important;
  bottom: 0px !important;
  top: unset !important;
}

.video-swiper-button-next {
  transform: rotate(180deg) !important;
  left: 0px !important;
  right: 95px !important;
  margin: auto !important;
}

.video-swiper-button-prev {
  left: 95px !important;
  right: 0px !important;
  margin: auto !important;
}

.video-swiper-button-next::after,
.video-swiper-button-prev::after {
  content: "" !important;
}

/* ====================== */
/* ==== SUCCESS PAGE ==== */
/* ====================== */
.email-sent {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100vh - 120px);
  padding-top: 180px;
  background: rgba(24, 161, 157, 0.06);
}

.email-sent>img {
  width: 200px;
  margin-bottom: 70px;
}

.email-sent>h2 {
  font-size: 34px;
  margin-bottom: 50px;
  text-align: center;
}

.email-sent>a {
  width: 100%;
  max-width: 350px;
  padding: 14px 32px;
  background: var(--secondary-color);
  border: none;
  border-radius: 93px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 400ms ease-in-out;
}

.email-sent>a:hover {
  opacity: 1;
  /* Reset opacity change, handle via transform/filter */
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* === SHORTS GALLERY === */
.shorts-gallery {
  padding: 40px 20px;
  background-color: #f8fcfc;
  /* Very light teal hint */
  text-align: center;
}

.shorts-gallery h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
  font-weight: 700;
}

.shorts-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.short-video {
  width: 315px;
  /* Match iframe width */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: white;
  line-height: 0;
  /* Remove bottom space */
}

.short-video iframe {
  width: 315px;
  /* Standard short width */
  height: 560px;
  max-width: 100%;
}

.short-video:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .shorts-container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .shorts-gallery {
    padding: 60px 0;
    /* Full width on mobile */
  }

  .shorts-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 20px 40px 20px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .short-video {
    scroll-snap-align: center;
    min-width: 280px;
    flex-shrink: 0;
  }

  .short-video iframe {
    width: 280px;
    height: 500px;
  }
}

/* ========================== */
/* ====== BELOW 1440px ====== */
/* ========================== */

@media screen and (max-width: 1440px) {
  /* ================ */
  /* ==== FOOTER ==== */
  /* ================ */

  .footer-top-wrapper>.right {
    flex-basis: 30%;
  }

  .footer-top-wrapper>.middle {
    flex-basis: 35%;
  }

  .footer-top-wrapper>.left {
    flex-basis: 35%;
  }

  /* ================= */
  /* ===== ABOUT ===== */
  /* ================= */

  .about-wrapper>.bottom {
    gap: 40px;
  }

  .about-wrapper>.bottom>img {
    width: 100%;
    max-width: 500px;
    max-height: 354px;
  }

  /* ====================== */
  /* ===== WHO ARE WE ===== */
  /* ====================== */

  .who-are-we-wrapper>.right>p {
    width: 390px;
    font-size: 26px;
    line-height: 50px;
  }

  .who-are-we-wrapper>.left .video-container {
    width: 526px;
  }

  .who-are-we-wrapper>.left .video-container video {
    width: 526px;
  }

  .video-swiper {
    height: 550px;
    width: 700px;
  }
}

/* ========================== */
/* ====== BELOW 1200px ====== */
/* ========================== */

@media screen and (max-width: 1200px) {
  /* ================= */
  /* ===== ABOUT ===== */
  /* ================= */

  .about-wrapper {
    gap: 60px;
  }

  .about-wrapper>.bottom {
    gap: 40px;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-wrapper>.bottom>img {
    width: 100%;
    max-width: 500px;
    max-height: 354px;
  }

  /* ====================== */
  /* ===== HIGHLIGHTS ===== */
  /* ====================== */

  .highlights-wrapper>.top>h2 {
    max-width: 926px;
  }

  .highlights-wrapper>.bottom {
    gap: 30px;
  }

  .highlights-wrapper>.bottom>.right>h3 {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .highlights-wrapper>.bottom>.right>ul {
    gap: 20px;
  }

  .highlights-wrapper>.bottom>.right>ul>li {
    font-size: 17px;
    line-height: 28px;
    gap: 15px;
  }

  /* =================== */
  /* ===== CONTACT ===== */
  /* =================== */

  .contact-wrapper>h2 {
    max-width: 900px;
  }

  .contact-wrapper>.bottom {
    gap: 40px;
  }

  .contact-wrapper>.bottom>.right>h4 {
    font-size: 18px;
  }

  .contact-wrapper>.bottom>.left {
    min-width: 350px;
  }

  /* ====================== */
  /* ===== WHO ARE WE ===== */
  /* ====================== */

  .who-are-we-wrapper {
    flex-direction: column;
  }

  .who-are-we-wrapper>.right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .who-are-we-wrapper>.right>p {
    text-align: center;
    width: 440px;
  }
}

/* ========================== */
/* ====== BELOW 992px ====== */
/* ========================== */

@media screen and (max-width: 992px) {
  /* ============================= */
  /* ===== WHAT WILL YOU GET ===== */
  /* ============================= */

  .what-you-get {
    padding: 65px 40px;
  }

  .what-you-get-wrapper {
    justify-content: flex-start;
    flex-direction: column;
  }

  .what-you-get-wrapper>.right {
    order: 2;
  }

  .what-you-get-wrapper>.left {
    order: 1;
  }


  /* ================ */
  /* ==== FOOTER ==== */
  /* ================ */

  .footer-top {
    padding: 40px 40px;
  }

  .footer-top-wrapper {
    flex-direction: column;
  }

  .footer-top-wrapper>.right {
    flex-basis: 100%;
    order: 3;
  }

  .footer-top-wrapper>.middle {
    flex-basis: 100%;
    order: 1;
    margin-bottom: 40px;
  }

  .footer-top-wrapper>.left {
    flex-basis: 100%;
    order: 2;
    margin-bottom: 50px;
  }

  .footer-top-wrapper>.middle>h3,
  .footer-top-wrapper>.left>h3 {
    margin-bottom: 25px;
  }

  .footer-top-wrapper>.middle>ul {
    margin-bottom: 25px;
  }

  /* ====================== */
  /* ===== HIGHLIGHTS ===== */
  /* ====================== */

  .highlights-wrapper>.bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
  }

  .highlights-wrapper>.bottom>.right {
    order: 2;
  }

  .highlights-wrapper>.bottom>.left {
    order: 1;
  }

  /* ================= */
  /* ===== TEAMS ===== */
  /* ================= */

  .team-wrapper>h2 {
    margin-bottom: -40px;
  }

  .team-wrapper>.cards-desktop {
    .callbtn>p {
      display: none;
    }

    .team-wrapper>.cards-mobile {
      display: block;
    }

    .cards-swiper {
      width: 600px;
      height: 620px;
    }

    .cards-swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .cards-swiper-button-prev,
    .cards-swiper-button-next {
      width: 64px !important;
      height: 64px !important;
      border: 1px solid var(--secondary-color) !important;
      border-radius: 50% !important;
      bottom: 0px !important;
      top: unset !important;
    }

    .cards-swiper-button-next {
      transform: rotate(180deg) !important;
      left: 0px !important;
      right: 95px !important;
      margin: auto !important;
    }

    .cards-swiper-button-prev {
      left: 95px !important;
      right: 0px !important;
      margin: auto !important;
    }

    .cards-swiper-button-next::after,
    .cards-swiper-button-prev::after {
      content: "" !important;
    }

    /* =================== */
    /* ===== CONTACT ===== */
    /* =================== */

    .contact-wrapper>h2 {
      max-width: 800px;
      font-size: 32px;
      line-height: 50px;
      margin-bottom: 70px;
    }

    .contact-wrapper>.bottom {
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 70px;
    }

    .contact-wrapper>.bottom>.right {
      order: 2;
    }

    .contact-wrapper>.bottom>.left {
      order: 1;
    }
  }

  /* =========================== */
  /* ======= BELOW 768px ======= */
  /* =========================== */

  @media screen and (max-width: 768px) {
    /* ================ */
    /* ==== HEADER ==== */
    /* ================ */

    .main-header {
      padding: 20px;
      height: 80px;
    }

    /* ================ */
    /* ===== MAIN ===== */
    /* ================ */

    main {
      margin-top: 80px;
    }

    .logo {
      width: 125px;
      height: 39px;
    }

    /* Header Button: Circle on mobile */
    .main-header .callbtn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      padding: 0;
      justify-content: center;
    }

    /* Header Button Text: Hidden on mobile */
    .main-header .callbtn>p {
      display: none;
    }

    .callbtn>img {
      width: 24px;
      height: 24px;
    }

    /* Override for bottom contact button to keep text visible */
    .contact-wrapper .callbtn {
      width: auto;
      height: 60px;
      border-radius: 33px;
      padding: 0 25px;
      justify-content: space-between;
    }

    .contact-wrapper .callbtn>p {
      display: block;
    }


    /* ============================= */
    /* ===== WHAT WILL YOU GET ===== */
    /* ============================= */

    .what-you-get {
      padding: 50px 20px;
    }

    /* ================ */
    /* ==== FOOTER ==== */
    /* ================ */

    .footer-top {
      padding: 30px 20px 60px 20px;
    }

    .footer-top-wrapper>.right {
      display: flex;
      justify-content: center;
    }

    .footer-top-wrapper>.right>img {
      width: 170px;
      height: 53px;
    }

    .footer-top-wrapper>.middle>h3,
    .footer-top-wrapper>.left>h3 {
      margin-bottom: 25px;
      font-size: 20px;
      line-height: 30px;
    }

    .footer-top-wrapper>.middle>ul>li {
      font-size: 14px;
      line-height: 40px;
    }

    .footer-top-wrapper>.left>ul>li>p {
      font-size: 14px;
      line-height: 21px;
      max-width: 300px;
    }

    .footer-top-wrapper>.left>ul>li>img {
      width: 24px;
      height: 24px;
    }

    .footer-top-wrapper>.middle>ul {
      margin-bottom: 25px;
    }

    .footer-bottom {
      padding: 20px 20px 40px 20px;
    }

    .footer-bottom>p {
      font-size: 12px;
      line-height: 18px;
    }

    /* ================ */
    /* ===== HERO ===== */
    /* ================ */

    .hero {
      height: 400px;
      background-position: center;
    }

    .hero-wrapper>.text {
      display: none;
    }

    /* =============================== */
    /* ===== HERO CONTENT MOBILE ===== */
    /* =============================== */
    .hero-content-mobile {
      display: flex;
      justify-content: center;
      align-items: center;
      background: rgba(24, 161, 157, 0.06);
    }

    .hero-content-mobile-wrapper {
      padding: 20px 20px;
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: 22px;
    }

    .hero-content-mobile-wrapper>h1 {
      width: 100%;
      max-width: 336px;
      font-style: normal;
      font-weight: 600;
      font-size: 32px;
      line-height: 48px;
      text-align: right;
      color: var(--primary-color);
    }

    .hero-content-mobile-wrapper>.p-1 {
      width: 100%;
      max-width: 338px;
      font-style: normal;
      font-weight: 500;
      font-size: 18px;
      line-height: 34px;
      text-align: right;
      color: #498ebd;
    }

    .hero-content-mobile-wrapper>.p-2 {
      width: 100%;
      max-width: 336px;
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      line-height: 28px;
      text-align: right;
      color: #7b7b7b;
    }

    /* ================= */
    /* ===== ABOUT ===== */
    /* ================= */

    .about {
      padding: 50px 20px;
    }

    .about-wrapper {
      gap: 40px;
    }

    .about-wrapper>.top>p {
      font-size: 14px;
      line-height: 28px;
    }

    .about-wrapper>.bottom {
      gap: 30px;
    }

    .about-wrapper>.bottom>img {
      width: 100%;
      max-width: 561px;
      max-height: 374px;
    }

    .about-wrapper>.bottom>.text>h4 {
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 20px;
    }

    .about-wrapper>.bottom>.text>p {
      font-size: 14px;
      line-height: 28px;
    }

    /* ====================== */
    /* ===== HIGHLIGHTS ===== */
    /* ====================== */

    .highlights {
      padding: 50px 20px;
    }

    .highlights-wrapper>.bottom>.left {
      width: 100%;
    }

    /* ================= */
    /* ===== TEAMS ===== */
    /* ================= */

    .team {
      padding: 50px 20px;
    }

    .team-wrapper>h2 {
      font-size: 26px;
      line-height: 39px;
      margin-bottom: -60px;
    }

    .cards-swiper {
      width: 100%;
    }

    /* =================== */
    /* ===== CONTACT ===== */
    /* =================== */
    .contact {
      padding: 30px 20px;
    }

    .contact-wrapper>h2 {
      font-size: 28px;
      line-height: 33px;
      width: 100%;
      max-width: 306px;
      margin-bottom: 40px;
    }

    .contact-wrapper>.bottom>.right {
      width: 100%;
    }

    .contact-wrapper>.bottom>.right>form {
      max-width: 100%;
    }

    .contact-wrapper>.bottom>.left {
      gap: 20px;
      min-width: unset;
      width: 100%;
    }

    .contact-wrapper>.bottom>.left>img {
      width: 186px;
      height: 177px;
    }

    .contact-wrapper>.bottom>.left>h3 {
      font-size: 24px;
      line-height: 36px;
      width: 100%;
      max-width: 335px;
    }

    .contact-wrapper>.bottom>.left>button {
      height: 50px;
      width: 218px;
    }

    .contact-wrapper>.bottom>.left>button>p {
      font-size: 20px;
      line-height: 30px;
      letter-spacing: 0.02em;
    }

    /* ====================== */
    /* ===== WHO ARE WE ===== */
    /* ====================== */

    .who-are-we {
      padding: 50px 0px;
    }

    .who-are-we-wrapper>.right>p {
      margin-bottom: -45px;
      font-size: 20px;
      line-height: 32px;
      width: 324px;
    }

    .who-are-we-wrapper>.left {
      width: 100%;
    }

    .who-are-we-wrapper>.left .video-container {
      width: 100%;
      height: 357px;
    }

    .who-are-we-wrapper>.left .video-container video {
      max-width: 100%;
      width: 100%;
      max-height: 100%;
      background-color: black;
      object-fit: contain;
    }

    .video-swiper {
      max-width: 100%;
      max-height: 100%;
      width: 100%;
    }

    .video-swiper-slide {
      transform: unset !important;
    }

    .video-swiper-slide.swiper-slide-active {
      transform: unset !important;
    }
  }

  /* ====================== */
  /* ==== SUCCESS PAGE ==== */
  /* ====================== */
  .email-sent {
    height: calc(100vh - 80px);
    padding-top: 120px;
  }

  .email-sent>img {
    width: 120px;
    margin-bottom: 50px;
  }

  .email-sent>h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .email-sent>a {
    max-width: 320px;
    padding: 14px 32px;
    font-size: 15px;
    line-height: 22px;
  }


  /* =========================== */
  /* ======= BELOW 480px ======= */
  /* =========================== */

  @media screen and (max-width: 480px) {


    /* ================ */
    /* ===== HERO ===== */
    /* ================ */

    .hero {
      height: 249px;
      background-image: url("../assets/hero-bg-mob.png");
    }

    /* ============================= */
    /* ===== WHAT WILL YOU GET ===== */
    /* ============================= */
    .what-you-get {
      padding: 20px 20px;
    }

    .what-you-get-wrapper {
      gap: 50px;
    }

    .what-you-get-wrapper>.right>form {
      gap: 20px;
    }

    .error {
      bottom: -25px;
    }

    .what-you-get-wrapper>.right>form>.row {
      display: flex;
      flex-direction: column-reverse;
      align-items: flex-start;
      gap: 20px;
      width: 100%;
      max-width: 100%;
    }

    .what-you-get-wrapper>.right>form>.row>input,
    .what-you-get-wrapper>.right>form>.row>select {
      font-size: 12px;
      line-height: 18px;
    }

    .what-you-get-wrapper>.right>form>.row>select {
      background-position-x: 8%;
      background-position-y: 20px;
      padding-left: 2rem;
    }

    .what-you-get-wrapper>.right>form>.row>input::placeholder,
    .what-you-get-wrapper>.right>form>.row>select::placeholder {
      font-size: 12px;
      line-height: 18px;
    }

    .what-you-get-wrapper>.right>form>button {
      font-size: 16px;
    }

    .what-you-get-wrapper>.left>h3 {
      font-size: 22px;
      line-height: 33px;
      margin-bottom: 28px;
    }

    .what-you-get-wrapper>.left>ul {
      gap: 18px;
    }

    .what-you-get-wrapper>.left>ul>li {
      font-size: 18px;
      line-height: 27px;
      gap: 10px;
    }

    /* ================= */
    /* ===== ABOUT ===== */
    /* ================= */

    .about {
      padding: 40px 0px;
    }

    .about-wrapper {
      gap: 30px;
    }

    .about-wrapper>.top {
      padding: 0px 20px;
    }

    .about-wrapper>.top>p {
      font-size: 14px;
      line-height: 28px;
    }

    .about-wrapper>.bottom {
      gap: 30px;
    }

    .about-wrapper>.bottom>img {
      width: 100%;
      max-height: auto;
    }

    .about-wrapper>.bottom>.text {
      padding: 0px 20px;
    }

    .about-wrapper>.bottom>.text>h4 {
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 15px;
      max-width: 332px;
    }

    .about-wrapper>.bottom>.text>p {
      font-size: 14px;
      line-height: 28px;
    }

    /* ====================== */
    /* ===== HIGHLIGHTS ===== */
    /* ====================== */

    .highlights-wrapper>.top {
      margin-bottom: 40px;
    }

    .highlights-wrapper>.top>h2 {
      font-size: 16px;
      line-height: 24px;
      max-width: 331px;
    }

    .highlights-wrapper>.bottom>.right>h3 {
      font-size: 14px;
      line-height: 21px;
      max-width: 335px;
      margin-bottom: 30px;
    }

    .highlights-wrapper>.bottom>.right>ul {
      gap: 15px;
    }

    .highlights-wrapper>.bottom>.right>ul>li {
      max-width: 299px;
      font-size: 14px;
      line-height: 21px;
      gap: 12px;
    }

    .highlights-wrapper>.bottom>.left>.img {
      width: 201px;
      height: 213px;
    }

    /* =================== */
    /* ===== CONTACT ===== */
    /* =================== */

    .contact-wrapper>.bottom {
      flex-direction: column;
      width: 100%;
      align-items: center;
    }

    .contact-wrapper>.bottom>.right {
      gap: 30px;
      width: 100%;
    }

    .contact-wrapper>.bottom>.right>form {
      gap: 20px;
      width: 100%;
      max-width: 100%;
    }

    .contact-wrapper>.bottom>.right>form>.row {
      display: flex;
      flex-direction: column-reverse;
      align-items: flex-start;
      gap: 20px;
      width: 100%;
      max-width: 100%;
    }

    .contact-wrapper>.bottom>.right>form>.row>input,
    .contact-wrapper>.bottom>.right>form>.row>select {
      font-size: 12px;
      line-height: 18px;
    }

    .contact-wrapper>.bottom>.right>form>.row>select {
      background-position-x: 8%;
      background-position-y: 20px;
      padding-left: 2rem;
    }

    .contact-wrapper>.bottom>.right>form>.row>input::placeholder,
    .contact-wrapper>.bottom>.right>form>.row>select::placeholder {
      font-size: 12px;
      line-height: 18px;
    }

    .contact-wrapper>.bottom>.right>form>button {
      font-size: 16px;
    }

    .contact-wrapper>.bottom>.right>p {
      width: 100%;
      max-width: 334px;
      font-size: 12px;
      line-height: 26px;
    }

    /* ====================== */
    /* ===== WHO ARE WE ===== */
    /* ====================== */

    .who-are-we-wrapper>.right>p {
      margin-bottom: -55px;
    }

    .who-are-we-wrapper>.left .video-container {
      height: 222px;
    }

    .video-swiper {
      height: 410px;
    }

    .who-are-we-wrapper>.left .video-container .play-button {
      height: 50px;
      width: 50px;
    }

    /* ====================== */
    /* ==== SUCCESS PAGE ==== */
    /* ====================== */
    .email-sent>h2 {
      font-size: 22px;
      margin-bottom: 40px;
    }
  }

  @media screen and (max-width: 400px) {

    .calltext {
      font-size: 4.5vw;
    }

    .calltext2 {
      font-size: 20px;
    }
  }

  /* === SHORTS GALLERY === */

  .shorts-gallery h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
  }

  .shorts-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
  }

  .short-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: white;
    line-height: 0;
    /* Remove bottom space */
  }

  .short-video iframe {
    width: 315px;
    /* Standard short width */
    height: 560px;
    max-width: 100%;
  }

  .short-video:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  @media (max-width: 1024px) {
    .shorts-container {
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .shorts-gallery {
      padding: 60px 0;
      /* Full width on mobile */
    }

    .shorts-container {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      padding: 0 20px 40px 20px;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
    }

    .short-video {
      scroll-snap-align: center;
      min-width: 280px;
      flex-shrink: 0;
    }

    .short-video iframe {
      width: 280px;
      height: 500px;
    }
  }


  .short-video h3 {
    font-size: 20px;
    color: var(--secondary-color);
    background-color: #fff;
    padding: 10px 10px;
    margin: 0;
    text-align: center;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    direction: rtl;
    line-height: 1.3;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .contact-circle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
  }

  .contact-circle-btn:hover {
    transform: scale(1.05);
  }

  .contact-circle-btn img {
    width: 24px;
    height: 24px;
  }

  .what-you-get {
    scroll-margin-top: 130px;
  }