/* Global / shared styles
 *
 * Paste your main stylesheet here (e.g. contents of styles.css).
 */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* @import url("./components/footer.css");
 @import url("./components/header.css"); */

:root {
  --primary-color: #203557;
  --secondary-color: #719976;
  --black-color: #000000;
  --white-color: #ffffff;
  --gray-color: #808080;
  --dark-gray-color: #424242;
  --light-black-color: #212121;
  --light-white-color: #f5f5f5;
  --darker-white-color: #f9f9f9;
  --text-color: #212121;

  margin: 0;
  padding: 0;
}

p,
span,
a,
li,
ol,
ul {
  font-weight: 400;
}

h1 span {
  font-weight: 700 !important;
}

h1 {
  font-weight: 700 !important;
}

/* Screen reader only class - visually hidden but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sticky-move-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;

  z-index: 1000;
  cursor: pointer;
  display: none;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-radius: 50%;
  padding: 0rem;

  display: flex;
  justify-content: center;
  align-items: center;
}

.sticky-move-to-top i {
  font-size: 1rem;
  padding: 0rem;
  margin: 0rem;
  font-weight: 300;
}

/* --------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;

  font-family: "Roboto", sans-serif;

  position: relative;
  overflow-x: hidden;
}

/* Safari-specific body fixes */
@supports (-webkit-touch-callout: none) {
  body {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    min-height: 100vh;
    height: auto;
  }

  html {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    height: 100%;
  }
}

.main {
  width: 100%;
  height: 100%;
  min-height: 100vh;

  background-color: #f5f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
section,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
summary,
time,
mark {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif !important;
}

.primary-btn {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease;
  width: auto !important;
  max-width: fit-content !important;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500 !important;
}

.primary-btn:hover {
  background-color: var(--white-color);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.secondary-btn {
  background-color: var(--white-color);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 1rem 2rem;
  border-radius: 5px;
  transition: 0.3s ease;
  text-decoration: none;
  width: auto !important;
  max-width: fit-content !important;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.secondary-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
}

.container {
  width: 95% !important;
  max-width: 2000px !important;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* Mobile-first responsive container */
@media only screen and (max-width: 480px) {
  .container {
    width: 98% !important;
    padding: 0rem;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

/* Global Mobile Improvements */
@media only screen and (max-width: 768px) {
  /* Improve touch targets */
  .primary-btn,
  .secondary-btn {
    min-height: 44px;
    padding: 0.8rem 1.5rem;
  }

  /* Better text readability */
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Improve spacing */
  section {
    padding: 2rem 0;
  }
}

@media only screen and (max-width: 480px) {
  /* Even smaller screens */
  .primary-btn,
  .secondary-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  section {
    padding: 1.5rem 0;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.header {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 1rem;
  background-color: transparent !important;
}

.header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-color);
  text-align: center;
  padding: 0%;
  margin: 0%;
  font-weight: 500;
}

.header p {
  font-size: 1.2rem;
  color: var(--primary-color);
  text-align: left;
  padding: 0%;
  margin: 0%;
}

.separator {
  width: 100%;
  max-width: 150px;
  height: 2px;
  background-color: var(--secondary-color);
}

@media only screen and (max-width: 480px) {
  .separator {
    max-width: 100px;
  }

  .header h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
    text-align: center;
    padding: 0%;
    margin: 0%;
    font-weight: 500;
  }
}

/* -------------Play Button--------------- */
.play {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 80px;
  height: 80px;
  background-color: white;

  z-index: 100;
  margin: 1rem;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  text-decoration: none;

  cursor: pointer;
}

.home-about-play {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 80px;
  height: 80px;
  background-color: white;

  z-index: 100;
  margin: 1rem;

  border-radius: 100%;
  text-decoration: none;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .play {
    top: 75%;
    right: 5%;
    width: 50px;
    height: 50px;
  }

  .play .icon {
    font-size: 30px;
    padding: 0rem;
    padding-left: 0.2rem;
    padding-bottom: 0.2rem;
  }

  .home-about-play {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 60px;
    height: 60px;
    background-color: white;

    z-index: 100;
    margin: 1rem;

    border-radius: 100%;
    text-decoration: none;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
  }
}

.play::after {
  position: absolute;
  content: "";
  bottom: -7px;
  top: -7px;
  left: -7px;
  right: -7px;
  background-color: transparent;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0px;
  opacity: 1;
  transform-origin: center;
  animation: anim 1.9s linear infinite;
  z-index: 100;
}

.play:hover {
  background-color: #c0c0c0;
  transition: 0.2s ease;
  z-index: 100;
}

.play:hover .icon {
  color: #82ab87;
  transition: 0.5s ease;
}

.play .icon {
  padding-left: 0.4rem;
  padding-top: 0.3rem;
  color: var(--secondary-color);

  font-size: 35px;
}

@keyframes anim {
  0% {
    margin: 0px;
    opacity: 1;
  }
  50% {
    margin: -20px;
    opacity: 0;
  }
  100% {
    margin: 0px;
    opacity: 0;
  }
}

/* ---------------------Video Section------------------------ */
.video {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000000;
  background-color: #ffff;
}

.video-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  position: relative;
}

.video-container iframe {
  width: 800px;
  height: 450px;
}

.video-container i {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
}

.video-container i:hover {
  color: var(--secondary-color);
}

@media only screen and (max-width: 480px) {
  .video-container iframe {
    width: 90vw;
    height: 300px;
  }
}

/* ---------------------Hero Section------------------------ */
.hero {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
  background-color: #f5f5f5;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  width: 100%;
  height: 750px !important;
  max-height: 120vh !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  position: relative;
  z-index: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(to right, #051806ea, #82ab8700);
  z-index: 2;
}

.hero-slide .text-content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 85%;
  max-width: 2000px;

  z-index: 5;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  text-align: left;
  gap: 1rem;
  padding-top: 0rem;
  margin-top: -1rem;
}

.hero-slide .text-content-inner {
  width: 100%;
  max-width: 850px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 1rem;
  overflow: hidden;
}

.hero-slide h1 {
  font-size: 5rem;
  font-weight: 800;
  color: var(--white-color);
  text-transform: uppercase;
  line-height: 1;
}

/* Step-by-step hero animation: h2 -> h1 -> p -> button, each 0.5s after previous, next is hidden until previous finishes */

.hero-slide h2,
.hero-slide .h2-first-container,
.hero-slide h1,
.hero-slide h1 .highlight,
.hero-slide h1 .highlight-bright,
.hero-slide p,
.learn-more-btn {
  opacity: 0;
  pointer-events: none;
}

/* 1. H2 appears first */
.hero-slide .h2-first-container {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
}

.hero-slide .h2-first-container,
.hero-slide h2 {
  opacity: 0;
  pointer-events: auto;
}

/* 2. H1 appears after h2 (delay 1.0s) */
.hero-slide h1 {
  opacity: 0;
  pointer-events: auto;
}

/* 2a. H1 highlight animations (after h2, with h1) */
.hero-slide h1 .highlight {
  color: var(--white-color);
  display: inline-block;
  opacity: 0;
}

.hero-slide h1 .highlight-bright {
  color: var(--secondary-color);
  display: inline-block;
  opacity: 0;
}

/* 3. P appears after h1 (delay 2.0s) */
.hero-slide p {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white-color);
  line-height: 1.4;
  display: inline-block;
  width: auto;
  opacity: 0;
  pointer-events: auto;
}

/* 4. Button appears after p (delay 3.0s) */
.learn-more-btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 5px;
  width: fit-content;
  height: auto;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: uppercase;
  animation: hero-text-zoom-in 0.25s ease-in-out 2.5s forwards;
  opacity: 0;
  pointer-events: auto;
}

.learn-more-btn:hover {
  background-color: var(--white-color);
  color: var(--secondary-color);
}

/* Keyframes */
@keyframes hero-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hero-text-move-left {
  0% {
    opacity: 0;
    transform: translateX(-400px);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes hero-text-move-right {
  0% {
    opacity: 0;
    transform: translateX(1000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes hero-text-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* h2.first special animation (same as h2, but zoom) */
.hero-slide h2.h2-first {
  color: var(--secondary-color);
  display: block;
  width: auto;
  opacity: 0;
}

@keyframes hero-text-h2-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------------------Hero Section End------------------------
  */
.hero-swiper-pagination {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero-swiper-button-next {
  position: absolute;
  right: 2rem !important;
}
.hero-swiper-button-prev {
  position: absolute;
  left: 2rem !important;
}

.hero-swiper-button-next::after,
.hero-swiper-button-prev::after {
  color: var(--white-color);
  font-size: 2rem !important;
}

.hero-swiper-pagination {
  display: none;
}

/* ---------------------Hero Section Responsive------------------------ */
@media only screen and (max-width: 1200px) {
  .hero-slide .text-content {
    width: 90%;
  }

  .hero-slide h1 {
    font-size: 4rem;
  }

  .hero-slide h2 {
    font-size: 1.8rem;
  }

  .hero-slide p {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 768px) {
  .hero-slide {
    height: 600px !important;
  }

  .hero-slide .text-content {
    width: 95%;
    padding-top: 2rem;
  }

  .hero-slide h1 {
    font-size: 2.5rem;
  }

  .hero-slide h2 {
    font-size: 1.4rem;
  }

  .hero-slide p {
    font-size: 1.1rem;
  }

  .learn-more-btn {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-swiper-button-next {
    right: 1rem !important;

    display: none !important;
  }

  .hero-swiper-button-prev {
    left: 1rem !important;
    display: none !important;
  }

  .hero-swiper-button-next::after,
  .hero-swiper-button-prev::after {
    font-size: 1.5rem !important;
  }

  .hero-swiper-pagination {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }

  .hero-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    color: var(--white-color) !important;
    opacity: 0.5 !important;
    background-color: var(--white-color) !important;
  }

  .hero-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-color) !important;
    opacity: 1 !important;
  }
}

@media only screen and (max-width: 480px) {
  .hero {
    padding: 0 !important;
    margin: 0 !important;
  }
  .hero-slide {
    height: 500px !important;
  }

  .hero-slide .text-content {
    width: 90%;
  }

  .hero-slide .text-content-inner {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-slide .h2-first-container {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
  }

  .h2-first-container h2 {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .hero-slide h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero-slide h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .hero-slide p {
    font-size: 1rem;
    text-align: center;
  }

  .learn-more-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* ---------------------Offers Section------------------------ */
.offers {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;
  z-index: 5;
  background-color: #e6e6e600;
  padding: 2rem 0;
}

.offers .container {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  margin-top: -5rem;
}

.offers .card {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;

  gap: 0.5rem;

  padding: 1rem;

  position: relative;
  z-index: 1;

  transition: 0.3s ease;
}

/* .offers .card.card1 {
   background: url("https://newvashaepz.com/wp-content/uploads/2025/03/70b18-dji_20240614043650_0122iuui_d.webp");
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   position: relative;
 } */

.offers .card.card2.first {
  background: url("https://newvashaepz.com/wp-content/uploads/2025/03/70b18-dji_20240614043650_0122iuui_d.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.offers .card.card2 {
  background: url("https://newvashaepz.com/wp-content/uploads/2025/03/4f205-0a0a3421.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.offers .card.card3 {
  background: url("https://newvashaepz.com/wp-content/uploads/2025/03/90d39-dji_202411200545267_90115_d.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.offers .card.card1::before {
  content: "";
  background-color: var(--secondary-color);
  opacity: 0.7;
  z-index: 2;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.offers .card.card2::before {
  content: "";
  background-color: #000;
  opacity: 0.7;
  z-index: 2;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.offers .card.card3::before {
  content: "";
  background-color: #000;
  opacity: 0.7;
  z-index: 2;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.offers .card:hover {
  transform: translateY(-10px);
  transition: 0.3s ease;
}

.offers .card .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  gap: 1rem;
}

.offers .card .content .icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background-color: transparent;
}

.offers .card .content i {
  font-size: 3rem;
  color: var(--white-color);
}

.offers .card i {
  font-size: 3rem;
  color: var(--secondary-color);
}

.offers .card.card2 i,
.offers .card.card3 i {
  color: var(--secondary-color);
}

.offers .card h3 {
  font-size: 1.5rem;
  color: var(--white-color);
}

.offers .card.card2 h3,
.offers .card.card3 h3 {
  color: var(--secondary-color);
}

.offers .card p {
  font-size: 1rem;
  color: var(--white-color);
  text-align: center;
}

/* ---------------------Offers Section Responsive------------------------ */
@media only screen and (max-width: 1200px) {
  .offers .container {
    width: 95%;
    gap: 0.5rem;
  }

  .offers .card {
    height: 280px;
  }
}

@media only screen and (max-width: 768px) {
  .offers {
    padding: 1rem 0;

    display: none;
  }

  .offers .container {
    flex-direction: column;
    gap: 1rem;
    margin-top: -2rem;
  }

  .offers .card {
    height: 250px;
    width: 100%;
    max-width: 400px;
  }

  .offers .card h3 {
    font-size: 1.3rem;
  }

  .offers .card p {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 480px) {
  .offers .container {
    width: 95%;
    margin-top: -1rem;
  }

  .offers .card {
    height: 200px;
    padding: 0.8rem;
  }

  .offers .card h3 {
    font-size: 1.2rem;
  }

  .offers .card p {
    font-size: 0.85rem;
  }
}

/* ---------------------About Section------------------------ */
.home .about {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 4rem 0;

  gap: 1rem;

  position: relative;
  background-color: #ffffff;
}

.home .about .about-image {
  width: 100%;
  height: calc(100% + 18rem);
  object-fit: contain;
  object-fit: cover;

  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.home .about .container {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;

  gap: 1rem;

  position: relative;
  z-index: 2;
}

.home .about .about-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.home .about .about-title-container {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
}

@media only screen and (min-width: 1400px) {
  .home .about .about-title-container {
    width: 50%;
  }
}

.home .about .about-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0rem;
  line-height: 1.2;
}

.home .about .about-title .separator {
  width: 100%;
  max-width: 200px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 0;
  padding: 0;
}

.home .about .about-icon {
  width: 60%;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
}

@media only screen and (min-width: 1400px) {
  .home .about .about-icon {
    width: 50%;
  }
}

.home .about .about-icon img {
  width: auto;
  height: 60px;
  object-fit: cover;
}

.home .about .column {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home .about .column.home-about-column {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  width: 40%;
  overflow: hidden;
}

.home .about .column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.home .about .column.home-about-column img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

@media (min-width: 1400px) {
  .home .about .column img {
    max-height: 400px;
  }
}

.home .about .right-column {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.8rem;
  padding-top: 0.25rem;
}

@media only screen and (min-width: 1400px) {
  .home .about .column.home-about-column {
    width: 50%;
  }

  .home .about .right-column {
    width: 50%;
  }
}

.home .about .right-column h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-color);
  text-align: left;
  padding: 0%;
  margin: 0%;
}

.home .about .right-column p {
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--text-color);
}

.home .about .right-column .about-buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

/* ---------------------About Section Responsive------------------------ */
@media only screen and (max-width: 1200px) {
  .home .about .container {
    width: 95%;
  }

  .home .about .right-column h2 {
    font-size: 2.2rem;
  }

  .home .about .right-column p {
    font-size: 1.1rem;
  }
}

.latest-projects-swiper-pagination {
  display: none;
}

@media only screen and (max-width: 768px) {
  .home .about {
    padding: 3rem 0;
    margin: 0 !important;
  }

  .home .about .container {
    flex-direction: column;
    gap: 2rem;
  }

  .home .about .about-title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home .about .about-title-container h2 {
    font-size: 2rem;
    text-align: center;
  }

  .home .about .about-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home .about .column {
    width: 100%;
  }

  .home .about .right-column {
    width: 100%;
    order: 2;
    box-sizing: border-box;
  }

  .home .about .column.home-about-column {
    order: 1;
    width: 100%;
    box-sizing: border-box;
  }

  .home .about .about-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-fit: cover;
  }

  .home .about .right-column p {
    font-size: 1rem;
    text-align: center;
  }

  .home .about .right-column .separator {
    margin: 0 auto;
  }

  .home .about .right-column .primary-btn {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 480px) {
  .home .about .about-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-fit: cover;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
  }

  .home .about {
    padding: 2rem 0 3rem 0;
    overflow: hidden;
  }

  .home .about .container {
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .home .about .column.home-about-column {
    padding-top: 1rem;
  }

  .home .about .right-column {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .home .about .right-column h2 {
    font-size: 1.8rem;
  }

  .home .about .right-column p {
    font-size: 1rem;
  }

  .home .about .column img {
    max-height: 300px;
    width: 100%;
  }

  .home .about .right-column .about-buttons {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    box-sizing: border-box;
    padding-top: 1rem;
  }

  .home .about .right-column .about-buttons .primary-btn {
    width: auto;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
  }

  .home .about .right-column .about-buttons .secondary-btn {
    width: auto;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
  }
}

/* ---------------------Award CTA Section------------------------ */
.home .award-cta {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;

  background: url("https://newvashaepz.com/wp-content/uploads/2025/09/DJI_20241210080938_0433_D-scaled.jpg")
    no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;

  padding: 3rem 0;
}

.home .award-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #212121;
  opacity: 0.7;
  z-index: 1;
}

.home .award-cta .container {
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.home .award-cta .container h2 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--darker-white-color);
  text-align: center;
  padding: 0%;
  margin: 0%;
  width: auto;
  max-width: 70vw;
}

.home .award-cta .container .primary-btn {
  width: fit-content;
  text-align: center;
  font-size: 1.2rem;

  background-color: #ffffff;
  color: var(--secondary-color);
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
}

.home .award-cta .container .secondary-btn {
  width: fit-content;
  text-align: center;
  font-weight: 500;
}

.home .award-cta .container .primary-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

@media only screen and (max-width: 480px) {
  .home .award-cta {
    padding: 4rem 0;
  }

  .home .award-cta .container {
    flex-direction: column;
    max-width: 90%;
    width: 90%;
    box-sizing: border-box;
  }

  .home .award-cta .container h2 {
    font-size: 2rem;
    max-width: 100%;
  }

  .home .award-cta .container .primary-btn {
    font-size: 1rem;
  }
}

/* --------------------------Award Sectors----------------------- */
.award-sectors {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 3rem 0;
}

.award-sectors .container {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.award-sectors .container .header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.award-sectors .container .header h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-color);
  display: inline-block;
  width: auto;
  white-space: nowrap;
  text-align: left;
}

.award-sectors .container .header .separator {
  width: 100%;
  max-width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
}

.award-sectors .container .awards-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
}

.award-sectors .container .awards-grid .award-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;

  position: relative;
  z-index: 1;
}

.award-sectors .container .awards-grid .award-card .image-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 2/2;
  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
  position: relative;

  cursor: pointer;
}

.award-sectors .container .awards-grid .award-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2/2;
  object-fit: cover;

  position: relative;
}

.award-sectors .container .awards-grid .award-card .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: #000;
  opacity: 0.7;
  z-index: 1;

  display: none;

  transition: all 0.3s ease;
}

/* Removed search-plus icon styles as we're using Read More links instead */

.award-sectors
  .container
  .awards-grid
  .award-card:hover
  .image-wrapper::before {
  display: block;
}

.award-sectors .container .awards-grid .award-card .award-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: start;
  gap: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000080;
  padding: 1.5rem 1rem;
  border-radius: 0rem;
  box-sizing: border-box;
  z-index: 10;
}

.award-sectors .container .awards-grid .award-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white-color);
  text-align: left;
  width: 100%;
}

.award-sectors .container .awards-grid .award-card a {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white-color);
  text-decoration: none;
  text-align: left;
  width: 100%;
}

.award-sectors .container .awards-grid .award-card:hover a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ---------------------Award Sectors Responsive------------------------ */
@media only screen and (max-width: 1200px) {
  .award-sectors .container {
    width: 95%;
  }

  .award-sectors .container .awards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 768px) {
  .award-sectors {
    padding: 2rem 0;
  }

  .award-sectors .container {
    width: 95%;
  }

  .award-sectors .container .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .award-sectors .container .header h2 {
    font-size: 1.8rem;
    white-space: normal;
  }

  .award-sectors .container .awards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .award-sectors .container .awards-grid .award-card h3 {
    font-size: 1.1rem;
  }

  .award-sectors .container .awards-grid .award-card p {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 480px) {
  .award-sectors {
    padding: 1.5rem 0;
  }

  .award-sectors .container .header h2 {
    font-size: 1.6rem;
  }

  .award-sectors .container .header .separator {
    width: 90%;
    max-width: 90%;
    height: 3px;
    background-color: var(--secondary-color);
  }

  .award-sectors .container .awards-grid {
    gap: 1rem;
    box-sizing: border-box;
  }

  .award-sectors .container .awards-grid .award-card {
    padding: 0.5rem;
    box-sizing: border-box;
  }

  .award-sectors .container .awards-grid .award-card h3 {
    font-size: 1rem;
  }

  .award-sectors .container .awards-grid .award-card p {
    font-size: 0.85rem;
  }
}

/* ---------------------Why Choose Us Section------------------------ */
.home .why-us {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;

  padding: 6rem 0 4rem 0;

  background-color: var(--darker-white-color);
}

.home .why-us .container {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;

  gap: 2rem;
}

.home .why-us .header {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}

.home .why-us .header .col {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1rem;
}

.home .why-us .header .col.left {
  width: 400px;
}

.home .why-us .header .col.right {
  width: calc(100% - 400px);
}

.home .why-us .header .col.right p {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--light-black-color);
}

.home .why-us .grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.home .why-us .grid .card {
  width: 100%;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;

  padding: 1rem;

  gap: 1rem;
}

.home .why-us .grid .card i {
  font-size: 2.5rem;
  width: 50px;
  color: var(--secondary-color);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home .why-us .grid .card .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.home .why-us .grid .card .content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  text-align: left;
  width: 100%;
}

.home .why-us .grid .card .content p {
  font-size: 1rem;
  color: var(--text-color);
  text-align: left;
}

/* ---------------------Why Choose Us Section Responsive------------------------ */
@media only screen and (max-width: 1200px) {
  .home .why-us .container {
    width: 95%;
  }

  .home .why-us .header .col.left {
    width: 350px;
  }

  .home .why-us .header .col.right {
    width: calc(100% - 350px);
  }
}

@media only screen and (max-width: 768px) {
  .home .why-us {
    padding: 4rem 0 3rem 0;
  }

  .home .why-us .container {
    width: 95%;
  }

  .home .why-us .header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .home .why-us .header .col {
    width: 100%;
  }

  .home .why-us .header .col.left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .home .why-us .header .col.right {
    width: 100%;
  }

  .home .why-us .header .col.right p {
    text-align: center;
  }

  .home .why-us .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .home .why-us .grid .card {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .home .why-us .grid .card .content {
    align-items: center;
  }

  .home .why-us .grid .card .content h3 {
    text-align: center;
  }

  .home .why-us .grid .card .content p {
    text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  .home .why-us {
    padding: 3rem 0 2rem 0;
  }

  .home .why-us .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home .why-us .grid .card {
    padding: 0.8rem;
  }

  .home .why-us .grid .card i {
    font-size: 3rem;
  }

  .home .why-us .grid .card .content h3 {
    font-size: 1.1rem;
  }

  .home .why-us .grid .card .content p {
    font-size: 0.9rem;
  }
}

/* ---------------------Featured Projects Section------------------------ */
.home .featured {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  padding: 4rem 0;
}

.home .featured .container {
  width: 100% !important;
  min-width: 100% !important;
  padding: 0;
  margin: 0;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}

.home .featured .container .card-left {
  width: 25%;
  max-width: 25%;
  min-width: 25%;
  height: auto;
  display: flex;
  flex-direction: column;

  background: url("https://newvashaepz.com/wp-content/uploads/2025/03/fe649-dji_20240524023351_0398_d.webp")
    no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
}

.home .featured .container .card-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: #000000;
  opacity: 0.7;
  z-index: 1;
}

.home .featured .container .card-left .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 10;
  gap: 1rem;

  padding: 2rem;
  box-sizing: border-box;
}

.home .featured .container .card-left h2 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--secondary-color);
}

.home .featured .container .card-left .separator {
  width: 100%;
  max-width: 100px;
  height: 2px;
  background-color: var(--secondary-color);
}

.home .featured .container .card-left p {
  font-size: 1rem;
  color: var(--white-color);
  text-align: left;
  line-height: 1.8;
}

.home .featured .container .card-left a {
  width: auto;
  text-align: left;
  font-size: 1rem;
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 400;
  transition: 0.3s ease;
}

.home .featured .container .card-left a:hover {
  opacity: 0.8;
}

.home .featured .container .card-left a i {
  font-size: 1rem;
  color: var(--secondary-color);
  transition: 0.3s ease;
  padding-left: 0.5rem;
}

.home .featured .container .cards-right {
  width: 75%;
  max-width: 75%;
  min-width: 75%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: url("https://newvashaepz.com/wp-content/uploads/2025/03/fe649-dji_20240524023351_0398_d.webp")
    no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.home .featured .container .cards-right .card {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home .featured .container .cards-right .card .image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home .featured .container .cards-right .card .image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.home .featured .container .cards-right .card .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #719976e3;

  padding: 1rem;
  box-sizing: border-box;

  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 10;
}

.home .featured .container .cards-right .card:hover .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #719976e3;

  padding: 1rem;
  box-sizing: border-box;

  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 10;
}

.home .featured .container .cards-right .card .content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--darker-white-color);
}

.home .featured .container .cards-right .card .content p {
  font-size: 1rem;
  color: var(--darker-white-color);
}

.home .featured .container .cards-right .card .content .company-category {
  font-size: 0.9rem;
  color: var(--darker-white-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: initial;
  letter-spacing: 0.5px;
  padding-top: 0.5rem;

  display: block;
}

.home
  .featured
  .container
  .cards-right
  .card::after
  .content
  .company-category {
  font-size: 0.9rem;
  color: var(--darker-white-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  display: none;
}

.home .featured .container .cards-right .card .content .company-description {
  font-size: 0.85rem;
  color: var(--darker-white-color);
  line-height: 1.5;
  margin-top: 0rem;

  display: none;
}

.home .featured .container .cards-right .card .content .primary-btn {
  width: auto;
  text-align: left;
  font-size: 1.2rem;

  display: none;
}

.home .featured .container .cards-right .card .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.7;
  z-index: 1;

  display: none;

  transition: all 0.3s ease;
}

.home .featured .container .cards-right .card:hover .image-wrapper::before {
  display: block;
}

/* Make image wrapper more interactive */
.home .featured .container .cards-right .card .image-wrapper:hover {
  transform: scale(1.02);
}

.home .featured .container .cards-right .card .image-wrapper:hover img {
  transform: scale(1.05);
}

/* Add visual click indicator */
.home .featured .container .cards-right .card .image-wrapper::after {
  content: "Click to view details";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 15;

  display: none !important;
}

.home .featured .container .cards-right .card .image-wrapper:hover::after {
  opacity: 1;
}

.home .featured .container .cards-right .card .overlay {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;

  display: none;

  transition: all 0.3s ease;
}

.home .featured .container .cards-right .card:hover .overlay {
  display: flex;
}

.home .featured .container .cards-right .card .image-wrapper i {
  font-size: 1.2rem;
  color: var(--secondary-color);
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s ease;

  position: absolute;
  bottom: 60%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.home .featured .container .cards-right .card .overlay i:hover {
  cursor: pointer;
  opacity: 0.8;
}

.home .featured .container .cards-right .card .overlay:hover {
  cursor: pointer;
}

.home .featured .container .cards-right .swiper-button-next,
.home .featured .container .cards-right .swiper-button-prev {
  color: var(--secondary-color);
  background-color: #00000094;
  padding: 0.5rem 0.8rem;
  font-size: 1.2rem !important;
}

.home .featured .container .cards-right .swiper-button-next:hover,
.home .featured .container .cards-right .swiper-button-prev:hover {
  background-color: #000000;
}

.home .featured .container .cards-right .swiper-button-next::after,
.home .featured .container .cards-right .swiper-button-prev::after {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #ffffff;
}

.home .featured .container .cards-right .swiper-button-prev {
  left: 0 !important;
  right: auto !important;
}

.home .featured .container .cards-right .swiper-button-next {
  right: 0 !important;
  left: auto !important;
}

.featured-content-overlay {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.featured-content-overlay-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-color: #ffffff;
  padding: 4rem 2rem;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
  max-width: 600px;
  max-height: 70svh;
  margin: 0 auto;
  margin-top: 2rem;
  gap: 0.5rem;

  position: relative;
}

.featured-content-overlay-content i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

.home .featured .container .cards-right .card .content-overlay h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black-color);
  position: relative;
  z-index: 10;
}

.featured-content-overlay-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black-color);
  position: relative;
  z-index: 10;
}

.featured-content-overlay-content .company-category {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black-color);
  position: relative;
  z-index: 10;
}

.featured-content-overlay-content .company-description {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--black-color);
  position: relative;
  z-index: 10;
}

/* Company Website Link Styles */
.company-website {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.website-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.website-link:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.website-link i.fa-globe {
  display: none !important;
}

/* Popup responsive design */
@media (max-width: 768px) {
  .featured-content-overlay-content {
    max-width: 95%;
    max-height: 80vh;
    margin: 1rem;
    padding: 1.5rem;
  }

  .featured-content-overlay-content h3 {
    font-size: 1.5rem;
  }

  .featured-content-overlay-content .company-category {
    font-size: 0.8rem;
  }

  .featured-content-overlay-content .company-description {
    font-size: 0.9rem;
  }

  .website-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .featured-content-overlay-content {
    max-width: 98%;
    max-height: 85vh;
    margin: 0.5rem;
    padding: 3rem 1rem;
  }

  .featured-content-overlay-content h3 {
    font-size: 1.3rem;
  }

  .featured-content-overlay-content .company-description {
    font-size: 0.85rem;
  }

  .website-link {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* ---------------------Featured Projects Section Responsive------------------------ */
@media only screen and (max-width: 1200px) {
  .home .featured .container {
    flex-direction: row;
    gap: 0rem;
  }

  .home .featured .container .card-left {
    width: 100%;
    min-height: 300px;
  }

  .home .featured .container .cards-right {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .home .featured {
    padding: 3rem 0;
  }

  .home .featured .container {
    flex-direction: column;
  }

  .home .featured .container .card-left {
    min-height: 250px;
    max-width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .home .featured .container .cards-right {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .home .featured .container .card-left .content {
    padding: 1.5rem;
  }

  .home .featured .container .card-left h2 {
    font-size: 1.8rem;
  }

  .home .featured .container .card-left p {
    font-size: 0.9rem;
  }

  .home .featured .container .cards-right .card .image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 3/3;
  }

  .home .featured .container .cards-right .card .image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover;
  }
}

@media only screen and (max-width: 480px) {
  .home .featured {
    padding: 2rem 0 0 0;
  }

  .home .featured .container {
    width: 100% !important;
    min-width: 100% !important;
    padding: 0;
    margin: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

  .home .featured .container .card-left {
    min-height: 300px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .home .featured .container .card-left .content {
    padding: 1rem;
  }

  .home .featured .container .card-left h2 {
    font-size: 1.6rem;
  }

  .home .featured .container .card-left p {
    font-size: 0.85rem;
  }

  .home .featured .container .cards-right {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
  }
}

/* ---------------------Testimonials Section------------------------ */
.home .testimonials {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;

  padding: 4rem 0;

  background-color: var(--darker-white-color);

  background: url("https://newvashaepz.com/wp-content/uploads/2025/03/43723-dji_20240614043521_0jhyj118_d.webp")
    no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  position: relative;
}

.home .testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.7;
  z-index: 2;
}

/* --- Safari fallback --- */
/* Safari doesn't support background-attachment: fixed properly,
    so we detect that and override it. */
@supports (-webkit-touch-callout: none) {
  .home .testimonials {
    background-attachment: scroll !important; /* disables parallax only for Safari */
    background-position: center center !important;
    background-size: cover !important;
  }
}

.home .testimonials .container {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;

  gap: 2rem;

  position: relative;
  z-index: 10;
}

.home .testimonials .header {
  background-color: transparent !important;
}

.home .testimonials .header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.home .testimonials .grid {
  width: 100%;
  max-width: 600px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.home .testimonials .grid.swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  margin-bottom: 2rem;
}

.home .testimonials .grid .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #20355702;
  padding: 1rem;
  border-radius: 2px;
  box-sizing: border-box;
  gap: 1rem;
}

.home .testimonials .grid .card .info {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.home .testimonials .grid .card .info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;

  background-color: white;
}

.home .testimonials .grid .card .info .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0.5rem;
}

.home .testimonials .grid .card .info .content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white-color);
}

.home .testimonials .grid .card .info .content p {
  font-size: 1rem;
  color: var(--secondary-color);
  line-height: 1.2;
}

.home .testimonials .grid .card p {
  font-size: 1.2rem;
  color: var(--white-color);
  line-height: 1.5;
  font-weight: 400;
  max-width: 100%;
  text-align: center;
}

.testimonials .testimonialSwiper-pagination .swiper-pagination-bullet {
  background-color: var(--white-color);
  height: 10px;
  width: 10px;
}

/* ---------------------Testimonials Section Responsive------------------------ */
@media only screen and (max-width: 1200px) {
  .home .testimonials .container {
    width: 95%;
  }

  .home .testimonials .header h2 {
    font-size: 2.2rem;
  }
}

@media only screen and (max-width: 768px) {
  .home .testimonials {
    padding: 3rem 0;
  }

  .home .testimonials .container {
    width: 95%;
  }

  .home .testimonials .header h2 {
    font-size: 2rem;
  }

  .home .testimonials .grid {
    max-width: 100%;
  }

  .home .testimonials .grid .card {
    padding: 1.5rem;
  }

  .home .testimonials .grid .card p {
    font-size: 1.1rem;
  }

  .home .testimonials .grid .card .info {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .home .testimonials .grid .card .info .content {
    align-items: center;
  }
}

@media only screen and (max-width: 480px) {
  .home .testimonials {
    padding: 2rem 0;
  }

  .home .testimonials .header h2 {
    font-size: 1.8rem;
  }

  .home .testimonials .grid .card {
    padding: 1rem;
  }

  .home .testimonials .grid .card p {
    font-size: 1rem;
  }

  .home .testimonials .grid .card .info img {
    width: 60px;
    height: 60px;
  }

  .home .testimonials .grid .card .info .content h3 {
    font-size: 1.1rem;
  }

  .home .testimonials .grid .card .info .content p {
    font-size: 0.9rem;
  }
}

/* ---------------------Partners Section------------------------ */
.home .partners {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--white-color);

  padding: 1rem 0;
}

.home .partners .container {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.home .partners .grid {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.home .partners .grid .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home .partners .grid .card img {
  width: 100%;
  max-width: 200px;
  height: 100%;
  object-fit: cover;
}

.partners-swiper-pagination {
  display: none;
}

/* ---------------------Partners Section Responsive------------------------ */
@media only screen and (max-width: 1200px) {
  .home .partners .container {
    width: 95%;
  }
}

@media only screen and (max-width: 768px) {
  .home .partners {
    padding: 3rem 0;
  }

  .home .partners .container {
    width: 95%;
  }

  .home .partners .grid {
    flex-direction: column;
    gap: 2rem;
  }

  .home .partners .grid .card img {
    max-width: 50vw;
    width: 50vw;
    height: auto;
  }

  .partners-swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .partners-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    opacity: 0.5;
    margin: 0 0.5rem;
    cursor: pointer;
  }

  .partners-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
    opacity: 1;
  }
}

@media only screen and (max-width: 480px) {
  .home .partners {
    padding: 2rem 0;
  }

  .home .partners .grid .card img {
    width: 100%;
    max-width: 70vw;
  }
}

/* ---------------------Blog Section------------------------ */
.blog-section {
  width: 100%;
  padding: 4rem 0;
  background-color: #f8f8f8;
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-layout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  min-height: 100%;
}

/* Left Column */
.left-column {
  width: 60%;
  height: auto;
  background-color: #f0f0f0;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
  height: 100%;
}

/* Group's News Section */
.group-news {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.all-news-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.all-news-link:hover {
  opacity: 0.8;
}

.all-news-link i {
  font-size: 0.8rem;
}

.news-items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0rem;
  height: 100%;
  width: 100%;
}

.news-item {
  background-color: white;
  padding: 0rem 1.5rem;
  border-radius: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
}

.news-date {
  color: #666;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0rem;
}

.news-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.news-item h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-item h3 a:hover {
  color: var(--secondary-color);
}

/* Financial Results Section */
.financial-results {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0rem;
}

.financial-content {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.financial-image {
  width: 100%;
  height: 225px;
  overflow: hidden;
  border-radius: 0px;
}

.financial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.financial-documents {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.document-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  align-self: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
}
.document-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.document-item p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-color);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  padding-left: 0;
}

.document-item a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 500;
}

.document-item a:hover {
  color: var(--primary-color);
}

/* Right Column */
.right-column {
  width: 40%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.career-jobs {
  position: relative;
  height: 100%;
  min-height: 100%;
}

.career-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.career-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.career-content {
  position: relative;
  z-index: 3;
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  box-sizing: border-box;
}

.career-content h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #719976;
  margin: 0 0 1.5rem 0;
}

.career-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  color: white;
}

.career-btn {
  background-color: transparent;
  border: 2px solid #719976;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.career-btn:hover {
  background-color: #719976;
  color: #ffffff;
}

/* ---------------------Blog Section Responsive------------------------ */
@media only screen and (max-width: 1200px) {
  .blog-section .container {
    padding: 0 1.5rem;
  }

  .left-column {
    padding: 2rem;
  }

  .career-content {
    padding: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .blog-section {
    padding: 3rem 0;
  }

  .blog-layout {
    flex-direction: column;
    gap: 0;
  }

  .left-column {
    width: 100%;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }

  .group-news {
    width: 100%;
  }

  .financial-results {
    width: 100%;
  }

  .right-column {
    width: 100%;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .career-content {
    padding: 2rem;
    min-height: 400px;
  }

  .career-content h2 {
    font-size: 2rem;
  }

  .career-content p {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  .blog-section {
    padding: 0;
  }

  .blog-section .container {
    padding: 0rem;
    max-width: 90%;

    box-sizing: border-box;
  }

  .blog-layout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    min-height: 100%;
  }

  .left-column {
    width: 95% !important;
    padding: 3rem 0;
    gap: 1rem;
    box-sizing: border-box;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .news-item {
    padding: 1rem;
  }

  .news-item h3 {
    font-size: 1rem;
  }

  .financial-image {
    height: 150px;
  }

  .career-content {
    padding: 1rem;
    min-height: 350px;
    box-sizing: border-box;
  }

  .career-content h2 {
    font-size: 1.8rem;
  }

  .career-content p {
    font-size: 0.95rem;
  }

  .career-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Call to Action Section */
.cta-section {
  width: 100%;
  padding: 6rem 0;

  text-align: center;
  background: url("https://newvashaepz.com/wp-content/uploads/2025/08/DJI_20250502152826_0052_D-scaled.webp")
    no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

/* --- Safari fallback --- */
/* Safari doesn't support background-attachment: fixed properly,
    so we detect that and override it. */
@supports (-webkit-touch-callout: none) {
  .cta-section {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
  }
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;

  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section .cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 1rem;
}

.cta-section .cta-content h2 .highlight {
  color: var(--secondary-color);
}

.cta-section .cta-content p {
  font-size: 1.3rem;
  color: var(--white-color);
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .primary-btn {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

.cta-section .primary-btn:hover {
  background-color: transparent !important;
  border: 1px solid var(--white-color) !important;
  color: var(--white-color) !important;
}

.cta-section .secondary-btn {
  background-color: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}

.cta-section .secondary-btn:hover {
  background-color: var(--white-color);
  color: var(--secondary-color) !important;
}

/* ---------------------Call to Action Section Responsive------------------------ */
@media (max-width: 1200px) {
  .cta-section .cta-content h2 {
    font-size: 2.5rem;
  }

  .cta-section .cta-content p {
    font-size: 1.2rem;
  }

  .cta-section .cta-buttons {
    gap: 0.8rem;
  }

  .cta-section .primary-btn,
  .cta-section .secondary-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 0;
  }

  .cta-section .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-section .cta-content p {
    font-size: 1.1rem;
  }

  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-section .cta-buttons a {
    width: 100%;
    max-width: auto;
    text-align: center;
  }

  .cta-section .primary-btn,
  .cta-section .secondary-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: auto;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 3rem 0;
  }

  .cta-section .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-section .cta-content p {
    font-size: 1rem;
  }

  .cta-section .cta-buttons a {
    max-width: auto;
  }

  .cta-section .primary-btn,
  .cta-section .secondary-btn {
    padding: 0.7rem 1.2rem !important;
    height: auto !important;
    max-height: auto !important;
    min-height: auto !important;
    font-size: 0.85rem;
    width: 200px !important;
    max-width: auto !important;
    min-width: 200px !important;
  }
}

/* Featured Gallery Overlay Styles */
.featured-gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999999999999;
  animation: fadeIn 0.3s ease;
}

.featured-gallery-modal {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  background: #000000;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideIn 0.3s ease;
}

.featured-gallery-header {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #000000;
  border-bottom: 0px solid #e9ecef;
  min-height: 20px;
}

.featured-gallery-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  display: none;
}

.featured-gallery-counter {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.featured-gallery-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-left: auto;
}

.featured-gallery-close:hover {
  background: #e9ecef;
  color: #333;
}

.featured-gallery-content {
  height: 85vh;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #000;
}

.featured-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000000;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
}

.featured-gallery-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.featured-gallery-prev {
  left: 2rem;
}

.featured-gallery-next {
  right: 2rem;
}

.featured-gallery-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0px;
}

.featured-gallery-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

.featured-gallery-thumbnails {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #000000;
  overflow-x: auto;

  display: none !important;
}

.featured-gallery-thumbnail {
  width: 80px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.featured-gallery-thumbnail.active {
  border-color: #ffffff;
}

.featured-gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-gallery-thumbnail:hover {
  transform: scale(1.05);
}

/* Responsive adjustments for featured gallery */
@media (max-width: 768px) {
  .featured-gallery-header {
    padding: 0.5rem 1rem;
  }

  .featured-gallery-image-container {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0px;
  }

  .featured-gallery-content {
    height: 80vh;
    width: 100%;
  }

  .featured-gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .featured-gallery-prev {
    left: 1rem;
  }

  .featured-gallery-next {
    right: 1rem;
  }

  .featured-gallery-thumbnails {
    padding: 0.5rem;
  }

  .featured-gallery-thumbnail {
    width: 60px;
    height: 45px;
  }
}

/* ===================================================================HEADER STYLES======================================================================== */
.header-main {
  height: 100%;
  width: 100%;

  position: relative;
  z-index: 2000;
}

.header-main .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;

  height: 3.5rem;

  background-color: #e6e6e6;

  width: 100%;
}

.header-main .socials .container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  height: 100%;

  width: 90%;
  max-width: 2000px;
}

.header-main .socials .container .col1 {
  height: 100%;
  width: auto;

  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.header-main .socials .container .col2 {
  height: 100%;
  width: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-main .socials .container .col .media {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;

  margin-left: auto;

  gap: 1rem;
}

.header-main .socials .container .col .media div a {
  color: var(--black-color);
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
}

.header-main .socials .container .col .media div a i {
  color: #212121;
  font-size: 1.2rem;
  transition: 0.3s ease;
}

.header-main .socials .container .col .media div a i:hover {
  color: var(--secondary-color);
}

.header-main .socials .sect {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black-color);
  font-weight: 400;
  font-size: 0.8rem;

  border-right: 0px solid var(--black-color) !important;
  padding-right: 1rem;

  gap: 0.5rem;
}

/* Fix for Safari color rendering */
.header-main .socials .sect,
.header-main .socials .sect a {
  color: var(--black-color) !important;
  -webkit-text-fill-color: var(--black-color) !important;
  text-decoration: none !important;
  transition: 0.3s ease !important;
}

.header-main .socials .sect i {
  color: var(--secondary-color) !important;
  font-size: 1rem;
  -webkit-text-fill-color: var(--secondary-color) !important;
}

/* ---------------------------------------------------- */
.header-main .header-center-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  margin: 0 auto;

  padding: 2rem 0;
}

.header-main .header-center-section .container {
  width: 100%;
  max-width: 2000px;
  width: 90%;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-main .header-center-section .logo {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  display: flex;
}

.header-main .header-center-section .logo img {
  height: 80%;
  max-height: 50px;
  width: auto;
}

.header-main .header-center-section .header-center-section-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
}

.header-main .header-center-section .header-center-section-right .card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;

  padding: 0 1rem;
}

.header-main .header-center-section .header-center-section-right .card img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.header-main .header-center-section .header-center-section-right .card.card2 {
  border-right: 1px solid var(--light-black-color);
  border-left: 1px solid var(--light-black-color);
}

.header-main .header-center-section .header-center-section-right .card i {
  font-size: 1.1rem;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
  font-weight: 300;
  color: #333333;
}

.header-main
  .header-center-section
  .header-center-section-right
  .card
  .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: auto;
  gap: 0.3rem;
}

.header-main
  .header-center-section
  .header-center-section-right
  .card
  .card-content
  .card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-gray-color);
}

.header-main
  .header-center-section
  .header-center-section-right
  .card
  .card-content
  .card-description {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-color);
}

.header-main .header-center-section .header-center-section-right .primary-btn {
  margin-left: 1rem;
  padding: 0.85rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 1000px) {
  .header-main
    .header-center-section
    .header-center-section-right
    .primary-btn {
    display: none;
  }

  .header-main .header-center-section .header-center-section-right .card.card2 {
    border-right: 0px solid var(--light-black-color);
    border-left: 1px solid var(--light-black-color);
  }
}

/* ---------------------------------------------------- */
.navbar {
  position: fixed;
  left: 0;
  right: 0;
  height: 4.8rem;
  max-height: 4.8rem;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: All 0.3s ease;
  z-index: 10000000;

  /* background-color: rgba(27, 20, 20, 0); */
  background-color: #000000c9;

  box-sizing: border-box;
}

.navbar .container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 2000px;
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .navbar .container {
    padding: 0rem !important;
    margin: 0 !important;
  }

  .header-main .container {
    padding: 0rem !important;
  }
}

.navbar.scrolled {
  background: #000000da;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

  transform: translateY(-10.8rem);

  transition: 0.2s ease;
  max-height: 4.8rem;
}

.navbar.show {
  display: flex;
  transform: translateY(-10.8rem);

  transition: 0.2s ease;
}

.logo {
  width: auto;
  height: 100%;

  display: flex;
  align-items: center;

  cursor: pointer;
}

.logo img {
  height: 80%;
  max-height: 50px;
  width: auto;
}

.scrolled .logo {
  color: var(--dark-gray-color);
}

.nav-links {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 0 !important;
  margin: 0 !important;
}

.scrolled .nav-links a {
  color: var(--white-color);
}

.scrolled .nav-links .dropdown-menu a {
  color: var(--dark-gray-color);
}

.scrolled .nav-links .dropdown-menu a:hover {
  color: var(--secondary-color);
}

.scrolled .nav-links .dropdown-menu a.active {
  color: var(--secondary-color);
  border-bottom: 0px solid var(--secondary-color);
}

.nav-links a.active {
  color: var(--secondary-color);
  border-bottom: 0px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.contact-btn {
  padding: 0.8rem 2rem;
  background: var(--secondary-color);
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: var(--white-color) !important;
  color: var(--secondary-color) !important;
}

/* ------------------- */

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: black;
}

.nav-links a:hover {
  color: var(--secondary-color);
  transform: 0.6s ease;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white-color);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 1rem 1rem;

  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0.5rem;
}

.navbar .dropdown-menu li {
  display: flex;
  align-items: start;
  justify-content: start;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--dark-gray-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  text-align: start !important;
}

.dropdown-menu a:hover {
  background-color: transparent;
  color: var(--secondary-color);
  border-left-color: transparent;
  padding-left: 1.75rem;
}

.realfactory-navigation-slide-bar {
  position: absolute;
  bottom: 0;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
  transition: all 250ms ease;
  z-index: 10;
  pointer-events: none;
  display: none;
}

.nav-links {
  position: relative;
}

/* Hide slidebar on mobile */
@media (max-width: 768px) {
  .realfactory-navigation-slide-bar {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .navbar .container .logo {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    height: 4rem;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: All 0.3s ease;
    z-index: 10000 !important;
    background: var(--white-color);
    border-bottom: 1px solid #ccc;
  }

  .navbar.show {
    display: flex;
    transform: translateY(-0rem);

    transition: 0.2s ease;
  }

  .navbar .logo {
    height: 80%;
    width: 100%;

    position: relative;
    z-index: 1000000000000000000 !important;
  }

  .navbar .container {
    height: 100%;
    max-width: 100vw;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000 !important;
  }

  .mobile-toggle {
    display: flex;

    width: 100%;
    margin-right: auto;
    justify-content: flex-end;
    transition: 0.5s ease;
    position: relative;
    z-index: 1000 !important;
  }

  .header-main .header-center-section {
    display: none;
  }

  .header-main .socials {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 4rem;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    padding: 2rem 0rem 4rem 0rem;
    padding-top: 2rem;
    padding-left: 0rem;
    box-sizing: border-box;
    padding-right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;

    /* Prevent scrolling */
    overflow: hidden;
    overscroll-behavior: none;
    -ms-overflow-style: none; /* IE 10+ */
    scrollbar-width: none; /* Firefox */
    box-sizing: border-box;

    transition: 1s ease;
    transform: translateX(-140%);
    z-index: 100 !important;
    height: calc(100vh);
    pointer-events: auto;
    z-index: 100 !important;
    background: #233d26e1 !important;
    border-top: 1px solid #e6e6e62c !important;
  }

  .nav-links::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 70vw;
    width: 100%;
    height: 100%;
    background: var(--white-color) !important;
    z-index: 99 !important;

    /* Prevent scrolling */
    overflow: hidden;
    overscroll-behavior: none;
    -ms-overflow-style: none; /* IE 10+ */
    scrollbar-width: none; /* Firefox */
    box-sizing: border-box;
  }

  .nav-links.active {
    display: flex;
    transform: translateX(0%);
    transition: 1s ease;

    z-index: 1000000000000000000 !important;
  }

  .nav-links li {
    display: none;
    align-items: flex-start;
    position: relative;
    z-index: 101 !important;
    width: calc(70vw - 2rem);
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 0.75rem;
    margin-bottom: 0rem;
  }

  .nav-links .dropdown-menu li {
    border-bottom: 0px solid #e6e6e6;
    padding-bottom: 0rem;
    margin-bottom: 0rem;
  }

  .nav-links.active li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
  }

  .navbar.scrolled .nav-links {
    background: var(--white-color);
  }

  .nav-links a {
    color: var(--dark-gray-color);
    font-size: 1.1rem;
    font-weight: 500;
    padding-left: 1rem !important;
  }

  .nav-links a i {
    font-size: 0.7rem;
    margin-left: 0.05rem;
  }

  .dropdown-toggle {
    gap: 0.25rem;
    justify-content: space-between !important;
    width: 90% !important;
  }

  .contact-btn {
    display: none;
  }

  .scrolled .logo {
    display: flex;
  }

  .navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    transition: 0.2s ease;
  }

  .scrolled .nav-links a {
    color: var(--dark-gray-color);
  }

  .scrolled .nav-links a.active {
    color: var(--secondary-color);
    border-bottom: 0px solid var(--secondary-color);
    padding-bottom: 0.5rem;
  }

  /* Mobile Dropdown Styles */
  .dropdown-menu {
    display: none !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0rem 0;
    margin: 0rem;
    border-left: 0px solid var(--secondary-color);
  }

  .dropdown-menu li {
    border-bottom: 1px solid #e6e6e6 !important;
    padding-bottom: 0.75rem !important;
    padding-top: 0.75rem !important;
    margin-bottom: 0rem !important;
  }

  .dropdown-menu li:first-child {
    border-top: 1px solid #e6e6e6 !important;
    padding-top: 0.75rem !important;
    margin-top: 0.5rem !important;
  }

  .dropdown-menu li:last-child {
    border-bottom: 0px solid #e6e6e6 !important;
    padding-bottom: 0rem !important;
    margin-bottom: 0rem !important;
  }

  .dropdown.open > .dropdown-menu {
    display: flex !important;
    visibility: visible;
  }

  .dropdown-menu a {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray-color) !important;
    border-left: none;
    margin-left: 0.85rem !important;
  }

  .dropdown-menu a:hover {
    background-color: transparent;
    color: var(--secondary-color);
    padding-left: 1rem;
  }

  .dropdown {
    border-bottom: 1px solid #e6e6e6 !important;
    padding-bottom: 0.5rem !important;
    padding-top: 0rem !important;
    margin-bottom: 0rem !important;
    width: calc(70vw - 2rem);
  }

  .dropdown-toggle i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none;
  }

  .dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown {
    gap: 0.5rem;
  }
}
