/* @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap'); */

@font-face {
  font-family: "Lato";
  src: url('../fonts/Lato/Lato-Black.ttf');
  font-weight: 900;
  font-display: swap
}

@font-face {
  font-family: "Lato";
  src: url('../fonts/Lato/Lato-Bold.ttf');
  font-weight: 700;
  font-display: swap
}

@font-face {
  font-family: "Lato";
  src: url('../fonts/Lato/Lato-Regular.ttf');
  font-weight: 400;
  font-display: swap
}

@font-face {
  font-family: "Lato";
  src: url('../fonts/Lato/Lato-Light.ttf');
  font-weight: 300;
  font-display: swap
}

@font-face {
  font-family: "Lato";
  src: url('../fonts/Lato/Lato-Thin.ttf');
  font-weight: 100;
  font-display: swap
}

:root{
  --bg: #1b1b1b;
  --gold: #febe47;
  --beige: #fef9c6;

  --fs--300: 19px;
  --fs--400: 22px;
  --fs--900: 45px;


  --fw-300: 300;
  --fw-400: 400;
  --fw-700: 700;
  --fw-900: 900;
}
/* General selectors  */

*, *::before, *::after{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h2{
  font-weight: var(--fw-900);
  color: var(--beige);
  font-size: var(--fs--900);
}

h2 span{
  color: var(--gold);
}

p{
  color: var(--beige);
  font-weight: var(--fw-400);
  font-size: var(--fs--400);
}

@media (max-width: 767px){
  p{
    font-size: 17px;
  }
}

body{
  font-family: "Lato", sans-serif;
  background-color: #1b1b1b;
  background-image: url(../images/transparent-dirt-texture-png-29.webp);
  scroll-behavior: smooth;
  cursor: url(../images/76cb3ac5d40dba91a8f11345729a52fce\ \(1\).png), auto;
  overflow-x: hidden;
}

.container{
  margin-right: auto;
  margin-left: auto;
  padding: 60px 15px;
}

/* small */

@media (min-width: 768px){
  .container{
    width: 750px;
  }
}

/* medium */

@media (min-width: 992px){
  .container{
    width: 970px;
  }

}

/* large */

@media (min-width: 1200px){
  .container{
    width: 1170px;
  }

}

/* header  */

header{
  position: absolute;
  z-index: 9999;
  padding: 0.3rem 0;
  top: 0;
  left: 0;
  width: 100%;
}

header nav{
  margin: 0 auto;
  /* padding: 0 2rem; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 83%;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

header ul{
  display: flex;
  list-style: none;
  align-items: baseline;
}

header ul a{
  /* text-decoration: none;
  color: white;
  padding: 0 1.5rem;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.83rem; */
}

.logo{
  width: 50px;
}

.hamburger{
  padding-left: 1.5rem;
}

.hamburger button{
  padding: 0;
  width: 37px;
  height: 37px;
  display: flex;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 0;
  backdrop-filter: blur(10px);

}

.hamburger .bar{
  position: relative;
  width: 52%;
  height: 1.3px;
  background-color: #fff;
  border-radius: 2px;
}

.hamburger .bar::before, .hamburger .bar::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: 60%;
  height: 100%;
  background-color: inherit;
  border-radius: 2px;
}

.hamburger .bar::before{
  top: -4.5px
}

.hamburger .bar::after{
  top: 4.5px
}

header .container{
  padding-top: 5px;
  padding-bottom: 0;
}

/* hero section  */

.hero{
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.shade{
  position: absolute;
  top: 100vh;
  transform: translatey(-50%);
  width: 100%;
  height: 200px;
  z-index: 1000;
  background: linear-gradient(transparent, #28251c, transparent);
}

.parallax{
  pointer-events: none;
  transition: 0.45s cubic-bezier(0.2, 0.49, 0.32, 0.99);
}

.bg-img{
  position: absolute;
  width: 2700px;
  top: 50%;
  left: 50%;
  z-index: 1;
}

.layer1{
  position: absolute;
  width: 2300px;
  top: 50%;
  left: 50%;
  z-index: 4;

}

.layer2{
  position: absolute;
  width: 2300px;
  top: 50%;
  left: 50%;
  z-index: 3;
  
}

.text{
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  z-index: 2;

}


@media (max-width: 767px){
  .bg-img{
    width: 100%;
    top: 47%;
    left: 50%;
  }

  .layer1{
    width: 191%;
    top: 90%;
    left: 84%;

  }

  .layer2{
    width: 202%;
    top: 83%;
    left: 78%;
    
  }

  .text{
    width: 100%;
    top: 50%;
    left: 50%;

  }
}

.vignette{
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: radial-gradient(ellipse at center, rgba(0,0,0,0) 100%, rgba(0,0,0,1));
  pointer-events: none;
}


/* about section  */
.about{
  margin-top: 50px;
  text-align: center;
  margin-bottom: 0 !important;
}

.about .container{
  padding: 60px 15px 0 15px;
}

.paragraphs{
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 50%));
  margin-top: 40px;
  justify-content: center; */
  display: flex;
  justify-content: center;
  margin: auto;
  gap: 70px;
  margin-top: 40px;
  width: 82%;
}

@media (max-width: 768px){
  .paragraphs{
    flex-direction: column;
    gap: 30px;
  }
}


/* video section  */
.egypt-video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-btn{
  color: var(--gold);
  background-color: transparent;
  border: 0;
  position: absolute;
  font-size: 600%;
  z-index: 1000;
}

.play-btn:hover{
  cursor: pointer;
}

.video-wrapper{
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.border{
  aspect-ratio: calc(16/9);
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-60%, -65%);
  position: absolute;
  background-color: transparent;
  border: var(--gold) 10px solid;
  z-index: -1;
  border-radius: 15px;
}

.home-video{
  width: 100%;
  border-radius: 15px;
}

.video{
  margin-top: 0 !important;
}

@media (max-width: 768px){
  .home-video{
    width: 90%;
  }
  .play-btn{
    color: var(--gold);
    font-size: 400%;
  }
  .border{
    width: 90%;

  }
  .video-wrapper{
    width: 90%;
    transform: translate(4%);

  }
}


/* text-lines section  */
.scrolling-txt{
  padding: 0 0 30px 0;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  text-overflow: clip;
}
.line{
  font-size: var(--fs--900);
  padding: 3px;
  transition: 0.45s cubic-bezier(0.2, 0.49, 0.32, 0.99);
  
}

@keyframes marquee {
    0% {
        transform: translateX(-100%)
    }
    100% {
        transform: translateX(0%)
    }
}

@keyframes marquee-inv {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-100%)
    }
}

.line2{
  transform: translateX(-50%);
  animation: 70s linear infinite marquee
}
.line1{
  animation: 70s linear infinite marquee-inv
}
.line3{
  animation: 70s linear infinite marquee-inv
}
.W300{
  font-weight: var(--fw-300);
}
.W400{
  font-weight: var(--fw-400);
}
.W700{
  font-weight: var(--fw-700);
}
.W900{
  font-weight: var(--fw-900);
  color: var(--gold)
}

/* products  */
.sec-header{
  margin-bottom: 40px;
}
.products{
  text-align: center;
}
.products-list{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  width: 100%;
}
.products-list img{
  width: 300px
}
.gv{
  border: solid 5px #f85a40
}
.gta{
  border: solid 5px #0cb9c1
}
.gte{
  border: solid 5px #f48924
}

/* faq  */
.far{
  margin: auto
}
.faq .sec-header{
  text-align: center;
}
.d-display {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 2rem;
}
.d-details,
.d-imgs {
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--gold);
}
footer {
  height: 10vh;
}
details[open],
details summary,
.d-imgs {
  display: block;
  width: 100% !important;
}
details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  width: 100%;
  cursor: pointer;
  font-weight: 400;
  font-size: 1.5rem;
}
details summary:after {
  content: "›";
  font-size: 2rem;
  transition: 0.3s;
  transform: rotate(90deg);
}

/* transitions */
details {
  margin-bottom: 1rem;
  height: 4rem;
  transition: 0.45s cubic-bezier(0.2, 0.49, 0.32, 0.99);
}
details[open] {
  height: 10rem;
}
details p {
  height: fit-content;
  padding: 1rem;
}
details[open] summary:after {
  transform: rotate(-90deg);
}

/* Imgs */
.imgs {
  display: block;
  height: 100%;
  width: 100%;
  background-size: contain;
  border-radius: 2rem;
}

/* responsive */
@media (max-width: 1190px) {
  body,
  .d-display {
    height: fit-content;
    width: 100%;
  }
  .d-display {
    justify-content: center;
    padding: 2rem 0;
  }
}


/* footer  */
a{
  text-decoration: none;
  color: var(--gold)
}
footer{
  border-top: solid 1px #fef9c62b;
  text-align: center;
  padding-top: 25px !important;
  padding-bottom: 0px !important;

}

footer p{
  font-size: 15px;
}

main{
  position: relative;
  overflow: hidden;
}
/* pattern  */
.pattern{
  position: absolute;
  opacity: 0.4;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.pattern-top{
  position: absolute;
  opacity: 0.4;
  top: 100vh;
  right: 0px;
  z-index: -1;
}

.bg-img-egypt{
  position: absolute;
  width: 120%;
  height: 120%;
  top: 50%;
  left: 50%;
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  min-width: 100%;
  min-height: 100%;
}

/* Mobile adjustments for hero background */
@media (max-width: 767px){
  .bg-img-egypt{
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    object-fit: cover;
    object-position: center center;
    min-width: 100%;
    min-height: 100%;
  }
  
  .hero{
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }
}

.balloon{
  position: absolute;
  top: 50%;
  left: 50%;
}
#one{
  z-index: 10;
}
#two{
  z-index: 9;
  
}
#three{
  z-index: 8;
  
}
#four{
  z-index: 7;
  
}
#five{
  z-index: 6;
  
}
#six{
  z-index: 5;
  
}
#seven{
  z-index: 4;
  
}
#eight{
  z-index: 3;
}

/* culture  */
.culture .container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.culture-text{
  width: 50%;
  text-align: left;
}
.culture-image{
  position: relative;
  width: 300px;
}
.culture-image img{
  width: 100%;
  border-radius: 15px;
}
.culture-text p{
  font-size: var(--fs--300);
}
.culture-text h2{
  margin-bottom: 19px;
}

.img-border{
  width: 100%;
  height: 100%;
  right: -30px;
  top: -30px;
  position: absolute;
  background-color: transparent;
  border: var(--gold) 10px solid;
  z-index: -1;
  border-radius: 15px;
}
.culture{
  margin-top: 50px;
  margin-bottom: 0;
}

@media(max-width: 767px){
  .culture .container{
    flex-direction: column;
    justify-content: center;
    gap: 90px;
  }
  .culture-image{
    transform: translateX(-5%);
  }
  .culture-text{
    width: 100%;
    text-align: center;
  }
  .right1{
    order: 2;
  }
  .right2{
    order: 1;
  }
}

@media(min-width: 768px){
  .right1 .img-border{
    right: 0;
    left: -30px;
  }
}

/* slider  */
.sldr{
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 40px 0;
}

.sldr h2{
  text-align: center;
  margin-bottom: 46px;
}
.sldr .container{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}
.swiper {
  width: 100%;
  max-width: 80% !important;
  overflow: visible !important;
  position: relative;
  margin: 0 auto;
}
@media(max-width: 980px){
  .swiper{
    max-width: 75% !important;
  }
  
  .swiper-slide {
    width: 250px !important;
    height: 250px !important;
  }
  
  .info p{
    font-size: 20px;
  }
  
  .info button{
    font-size: 16px;
    height: 35px;
    width: 30%;
  }
}

@media(max-width: 768px){
  .swiper{
    max-width: 90% !important;
  }
  
  .swiper-slide {
    width: 200px !important;
    height: 200px !important;
  }
  
  .info p{
    font-size: 18px;
  }
  
  .info button{
    font-size: 14px;
    height: 30px;
    width: 35%;
  }
  
  .card-shade{
    height: 100px;
  }
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px !important;
  height: 300px !important;
  position: relative;
  overflow: hidden;
  border-radius: 15px !important;
}
.swiper-slide::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  border-radius: 15px;
  background: linear-gradient(to bottom right, #0101018f, #0000005e);
}
.swiper-slide-active::after {
  background: none;
}
.swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 3px 17px rgb(0 0 0 / 25%);
  border-radius: 15px;
  aspect-ratio: calc(285/363);
}

@media (min-width: 768px) {
  .swiper-slide h2 {
    font-size: 2rem;
  }
  .text{
    width: 80%;
  }
}

.info{
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-around;
  bottom: 10px;
  z-index: 3;
  font-size: 30px !important;
}

.info p{
  font-size: 25px;
  color: var(--beige);
  margin-top: auto;
  margin-bottom: auto;
}

.info button{
  border-radius: 15px;
  width: 33%;
  border: 0;
  background: #febe47;
  color: var(--beige);
  font-size: 20px;
  height: 40px;
}

.card-shade{
  position: absolute;
  width: 101%;
  height: 130px;
  border-radius: 15px;
  bottom: 0px;
  left: -1px;
  background: linear-gradient(transparent, #28251c);
}

.hide-video{
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.blocker{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: ' ';
  background: rgb(0 0 0 / 62%);
  z-index: 2500;
}

.openCard{
  width: 100%;
  border-radius: 15px;

}

@media (max-width: 768px) {
  .vid-container{
    width: 80% !important;
  }
}

.vid-container{
  left: 50%;
  top: 50%;
  z-index: 3000;
  transform: translate(-50%, -50%);
  position: fixed;
  width: 50%;
}

.vid-container button{
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* igv  */
.text-igv{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}

@media (max-width: 767px){
  .text-igv{
    width: 65% !important; 
  }
}

.images_section{
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

.igv-photo{
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
}

.border-igv{
  aspect-ratio: calc(15/9);
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-59%, -60%);
  position: absolute;
  background-color: transparent;
  border: #f85a40 10px solid;
  z-index: -1;
  border-radius: 15px;
}



.projects-header{
  display: flex;
  justify-content: space-around;
  position: relative;
  margin-bottom: 45px;
}

.projects-header h2{
  font-size: 25px;
}
.projects-header::after{
  content: '';
  position: absolute;
  width: 68%;
  border-bottom: #f85a40 2px solid;
  bottom: -17px;
}

.projects-header button{
  border: 0;
  background: #f85a40;
  color: var(--beige);
  width: 90px;
  height: 32px;
  border-radius: 15px;
  transition: 0.45s cubic-bezier(0.2, 0.49, 0.32, 0.99);

}

@media (max-width: 767px){
  .border-igv{
    aspect-ratio: calc(15/9);
    width: 92%;
    left: 50%;
    top: 50%;
    transform: translate(-60%, -62%);
    position: absolute;
    background-color: transparent;
    border: #f85a40 10px solid;
    z-index: -1;
    border-radius: 15px;
  }
  .projects-header{
    gap: 30px;
  }
  .projects-header::after{
    width: 100%;
  }
}

.opp-cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-content: center;
  row-gap: 40px;
  width: 65%;
  margin: auto;
}

.opp-card{
  width: 213px;
  border-radius: 15px;
  background: #f85a40;
  height: 265px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  margin: auto;
  display: none;
  position: relative;
}


.opp-card p{
  font-size: 14px;
}

.opp-card h3{
  font-size: 32px;
  font-weight: 900;
  color: var(--beige);
  margin-bottom: 14px;
  line-height: 0.8;
  word-wrap: break-word;
}

.opp-card:nth-child(1),
.opp-card:nth-child(2),
.opp-card:nth-child(3),
.opp-card:nth-child(4),
.opp-card:nth-child(5),
.opp-card:nth-child(6){
  display: inline-block;
}

.card-info-wrapper{
  position: absolute;
  bottom: 22px;
}

#load-more{
  width: 130px;
  height: 32px;
  background-color: #f85a40;
  text-align: center;
  border-radius: 15px;
  margin: auto;
  margin-top: 60px;
  border: 0;
  color: var(--beige);
  transition: 0.45s cubic-bezier(0.2, 0.49, 0.32, 0.99);

}

#load-more:hover{
  cursor: pointer;
  background-color: var(--beige);
  color: #f85a40;
}

.filter:hover{
  cursor: pointer;
  background-color: var(--beige);
  color: #f85a40;
}


.filters{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 10px;
}


.projects{
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}


.filter-blocker{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: ' ';
  background: rgb(0 0 0 / 62%);
  z-index: 2500;
}

.filter-options{
  width: 880px;
  height: 500px;
  position: fixed;
  background: #1b1b1b;
  z-index: 2500;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 15px;
  padding: 40px;
}

.input-wrapper{
  font-size: 15px;
}

@media (max-width: 940px){
  .filter-options{
    width: 80%;
    padding: 22px;
  }
}

.filter-popup{
  display: none;
  position: absolute;
}

.lcs-filter label{
  color: var(--beige)
}

.filters-content{
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: 100%;
  gap: 35px;
}

.filters-content ul{
  color: var(--beige);
  list-style: none;
}

.filters-content ul li{
  padding: 10px;
}

.filters-content ul li:hover{
  cursor: pointer;
}

.lcs-filter{
  display: grid;
  grid-template-columns: repeat(auto-fit, 190px);
  gap: 20px;
  overflow-y: auto;
  overflow-x: hidden;
}

.input-wrapper input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.input-wrapper label {
  position: relative;
  cursor: pointer;
}

.input-wrapper label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #f85a40;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.input-wrapper input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid var(--beige);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-list{
  border-right: solid 1px #f85a40;
}

.active-filter{
  background-color: #fffefe1a;
  width: 92%;
  border-right: solid 5px #f85a40;
  border-radius: 3px;
}

@media (max-width: 767px){
  .filters-content {
    gap: 15px;
  }
}

.hide-filter{
  display: none;
}

.start-date input{
  background: #f85a40;
  color: var(--beige);
  border: 0;
  border-radius: 15px;
  height: 32px;
  padding-left: 10px;
  padding-right: 10px;
}

.start-date label{
  color: var(--beige);
}

.start-date{
  display: flex;
  align-items: center;
  gap: 7px;
}

.pre-loader{
  position: fixed;
  background-color: #1b1b1b;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
}
.pre-loader img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
}

.dropdown ul{
  color: #1b1b1b;
  background: var(--beige);
  padding: 14px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  position: absolute;
  top: 27px;
  width: 100%;
  display: none;
}

.dropdown-head:hover .dropdown-list{
  display: block;  
}

.dropdown-head{
  text-decoration: none;
  color: white;
  padding: 0 1.5rem;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.83rem;
}

.programs-list{
  position: relative;
  height: 29px;
  margin-top: 19px;
}

.programs-list:hover .dropdown-list{
  display: block;
}

.dropdown-list:hover{
  display: block;
}

.dropdown-list li{
  padding: 5px;
  margin-bottom: 6px;
  border-radius: 15px;
  font-size: 0.83rem;
  padding-left: 11px;

}

.dropdown-list li a{
  color: #1b1b1b;
}

.dropdown-list li:hover{
  background: #f1edbc;
  cursor: pointer;
}

@media (max-width: 767px){
  nav ul{
    display: none;
  }
}

@media (min-width: 767px){
  .hamburger{
    display: none;
  }
}

.mobile-nav{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 9999;
  /* background: #1b1b1b;
  width: 70%;
  padding: 20px; */
}

.mobile-nav img{
  margin-bottom: 38px;
  width: 70%;
}

ul{
  list-style: none;
}

.dropdown-list-mob a{
  color: var(--beige);
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.83rem;
}

.dropdown-list-mob li {
  margin-bottom: 15px;
}

.nav-blocker{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: ' ';
  background: rgb(0 0 0 / 62%);
  z-index: -1;
}

.nav-content{
  position: fixed;
  top: 0;
  right: 100%;
  height: 100%;
  z-index: 9999;
  background: #1b1b1b;
  width: 70%;
  padding: 20px;
  transition: 0.8s cubic-bezier(0.2, 0.49, 0.32, 0.99);
}

.list-cover{
  position: absolute;
  background: #1b1b1b;
  width: 100%;
  height: 110px;
  transition: 0.25s cubic-bezier(0.2, 0.49, 0.32, 0.99);
}

/* EP Journey Login Page Styles */
.login-container{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.login-form{
  background: rgba(27, 27, 27, 0.9);
  padding: 60px 40px;
  border-radius: 20px;
  border: 3px solid var(--gold);
  backdrop-filter: blur(10px);
  text-align: center;
  min-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: 0.45s cubic-bezier(0.2, 0.49, 0.32, 0.99);
}

.login-form h2{
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.ep-input{
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 30px;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 15px;
  color: var(--beige);
  font-size: var(--fs--400);
  font-family: "Lato", sans-serif;
  transition: 0.45s cubic-bezier(0.2, 0.49, 0.32, 0.99);
}

.ep-input:focus{
  outline: none;
  border-color: var(--beige);
  box-shadow: 0 0 20px rgba(254, 190, 71, 0.3);
}

.ep-input::placeholder{
  color: rgba(254, 249, 198, 0.6);
}

.login-btn{
  width: 100%;
  padding: 15px 30px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 15px;
  font-size: var(--fs--400);
  font-weight: var(--fw-700);
  font-family: "Lato", sans-serif;
  cursor: pointer;
  transition: 0.45s cubic-bezier(0.2, 0.49, 0.32, 0.99);
}

.login-btn:hover{
  background: var(--beige);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(254, 190, 71, 0.4);
}

.error-message{
  color: #f85a40;
  font-size: 16px;
  margin-top: 15px;
  display: none;
}

.loading{
  display: none;
  color: var(--gold);
  font-size: 16px;
  margin-top: 15px;
}


/* EP Journey Content Styles - Using Existing Website Styles */
.ep-journey-info{
  margin-top: 40px;
  text-align: center;
}

.ep-journey-info .ep-name{
  font-weight: var(--fw-900);
  color: var(--gold);
  font-size: var(--fs--900);
  margin-bottom: 20px;
}

/* Welcome Quote Styles */
.ep-welcome-quote {
  margin-top: 30px;
  padding: 25px;
  background: rgba(27, 27, 27, 0.4);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ep-welcome-quote::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 80px;
  color: var(--gold);
  font-family: serif;
  opacity: 0.4;
  font-weight: bold;
}

.welcome-text {
  font-size: 20px;
  line-height: 1.7;
  color: #ffffff;
  font-style: italic;
  margin: 0;
  padding-left: 25px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.welcome-text .highlight {
  color: var(--gold);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(254, 190, 71, 0.3);
}

.ep-subtitle{
  color: var(--beige);
  font-weight: var(--fw-400);
  font-size: var(--fs--400);
  margin-bottom: 20px;
}

.ep-status-info{
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ensure left alignment */
  gap: 20px;
  margin-bottom: 30px;
}

.ep-duration{
  color: var(--beige);
  font-weight: var(--fw-300);
  font-size: var(--fs--300);
}

.ep-brief{
  margin-top: 10px;
}
.ep-brief p{
  color: var(--beige);
  font-size: 16px;
  margin: 2px 0;
}
.ep-brief strong{
  color: var(--gold);
}

.ep-complete-info{
  /* Styles now handled by .collapsible-section class */
}
.ep-complete-info h3{
  /* Styles now handled by .collapsible-header h3 */
}

.project-overview{
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.project-header{
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gold);
}

.project-header h4{
  color: var(--gold);
  font-size: 18px;
  margin: 0 0 10px 0;
  font-weight: var(--fw-700);
}

.project-meta{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.project-id, .project-product{
  background: rgba(254, 190, 71, 0.1);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: var(--fw-600);
  border: 1px solid var(--gold);
}

.project-details{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.detail-row{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-label{
  color: var(--gold);
  font-size: 12px;
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value{
  color: var(--beige);
  font-size: 14px;
  font-weight: var(--fw-400);
}

.sdg-section{
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 15px;
  border-left: 3px solid var(--gold);
}

.sdg-section h5{
  color: var(--gold);
  font-size: 14px;
  margin: 0 0 10px 0;
  font-weight: var(--fw-600);
}

.sdg-goal-header{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.sdg-icon{
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.sdg-goal{
  color: var(--gold);
  font-size: 14px;
  font-weight: var(--fw-600);
  margin: 0;
}

.sdg-target{
  color: var(--beige);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.project-description, .role-description, .weekly-activities{
  margin-top: 15px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-left: 2px solid var(--beige);
}
.project-description h4, .role-description h4, .weekly-activities h4{
  color: var(--gold);
  font-size: 16px;
  margin: 0 0 10px 0;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}
.project-description p, .role-description p, .weekly-activities p{
  color: var(--beige);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.weekly-list{
  margin-top: 10px;
  text-align: left;
}

.week-group{
  margin-bottom: 20px;
}

.week-title{
  color: var(--gold);
  font-size: 16px;
  font-weight: var(--fw-700);
  margin: 0 0 8px 0;
  padding: 5px 10px;
  background: rgba(254, 190, 71, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  text-align: center;
}

.week-activities{
  margin: 0;
  padding-left: 20px;
}

.activity-item{
  color: var(--beige);
  font-size: 14px;
  line-height: 1.6;
  margin: 5px 0;
  padding-left: 5px;
}

@media (max-width: 767px) {
  .info-grid{
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .info-section{
    padding: 10px;
  }
}
.address-details{
  margin-top: 8px;
  padding-left: 10px;
}

.ep-opportunity-details{
  margin-top: 20px;
  padding: 15px;
  background: rgba(27, 27, 27, 0.5);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}
.ep-opportunity-details h3{
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 10px;
}
.ep-opportunity-details h4{
  color: var(--gold);
  font-size: 16px;
  margin: 15px 0 8px 0;
}
.ep-opportunity-details p{
  color: var(--beige);
  font-size: 14px;
  margin: 3px 0;
}
.ep-opportunity-details strong{
  color: var(--gold);
}

.sdg-info, .project-description, .role-description, .weekly-activities, .compensation-info, .logistics-info{
  margin-top: 10px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-left: 2px solid var(--beige);
}

.weekly-activities p{
  margin: 5px 0;
  padding-left: 10px;
}

/* Product-specific duration colors */
.duration-gv{ /* GV red */
  background: #f85a40;
  color: #ffffff;
}
.duration-gta{ /* GTa blue */
  background: #0cb9c1;
  color: #ffffff !important;
}
.duration-gte{ /* GTe orange */
  background: #f48924;
  color: #ffffff !important;
}

/* Countdown Timer - Flex Layout Styling */
.countdown-timer{
  margin: 0;
  text-align: center;
  background: url('../images/CountDownFrame.png') center/contain no-repeat;
  width: 300px;
  height: 450px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.countdown-display{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.countdown-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.countdown-number{
  font-weight: var(--fw-900);
  color: var(--gold);
  font-size: var(--fs--900);
  display: block;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.countdown-label{
  color: var(--beige);
  font-weight: var(--fw-400);
  font-size: var(--fs--400);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
  display: block;
}

/* Mobile responsive styles for countdown timer */
@media (max-width: 767px) {
  .journey-content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .countdown-timer {
    margin: 0 auto;
    width: 240px;
    height: 360px;
    padding: 15px;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .countdown-label {
    font-size: 12px;
    margin-top: 8px;
  }
}

/* Exchange Story Section Styles - Matching Culture Section */
.exchange-story-section {
  display: none !important;
  padding: 20px 0;
  background: transparent;
}

.exchange-story-section .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.exchange-story-text {
  width: 50%;
  padding: 0 20px;
}

.exchange-story-text h2 {
  font-size: 2.5rem;
  font-weight: var(--fw-700);
  color: var(--beige);
  margin-bottom: 20px;
  line-height: 1.2;
}

.exchange-story-text h2 span {
  color: var(--gold);
}

.exchange-story-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--beige);
  margin: 0;
}

.exchange-story-image {
  position: relative;
  width: 300px;
}

.exchange-story-image img {
  width: 100%;
  border-radius: 15px;
}

.exchange-story-image .img-border {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid var(--gold);
  border-radius: 15px;
  z-index: -1;
}

/* Mobile specific styles for Exchange Story - Matching Culture Section */
@media (max-width: 767px) {
  .exchange-story-section {
    padding: 15px 0;
  }
  
  .exchange-story-section .container {
    flex-direction: column !important;
    gap: 30px;
    justify-content: center;
    padding: 0 15px;
    align-items: center;
  }
  
  .exchange-story-text {
    width: 100% !important;
    text-align: center;
    order: 1;
    padding: 0;
  }
  
  .exchange-story-text h2 {
    font-size: 35px;
    margin-bottom: 20px;
  }
  
  .exchange-story-text p {
    font-size: 19px;
    line-height: 1.6;
  }
  
  .exchange-story-image {
    width: 100% !important;
    max-width: 100% !important;
    order: 2;
    transform: translateX(-5%);
    margin-top: 20px;
  }
}

/* Scrolling Text Animation Styles */
.scrolling-txt{
  padding: 0 0 30px 0;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  text-overflow: clip;
}

.line{
  font-size: var(--fs--900);
  padding: 3px;
  transition: 0.45s cubic-bezier(0.2, 0.49, 0.32, 0.99);
}

.line2{
  transform: translateX(-50%);
  animation: 70s linear infinite marquee;
}

.line1{
  animation: 70s linear infinite marquee-inv;
}

.line3{
  animation: 70s linear infinite marquee-inv;
}

.W300{
  font-weight: var(--fw-300);
}

.W400{
  font-weight: var(--fw-400);
}

.W700{
  font-weight: var(--fw-700);
}

.W900{
  font-weight: var(--fw-900);
  color: var(--gold);
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

@keyframes marquee-inv {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Culture Section Styles */
.culture{
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 20px 0;
  padding: 0 20px;
}

.culture-text{
  flex: 1;
  text-align: left;
}

.culture-text h2{
  font-size: var(--fs--900);
  color: var(--beige);
  margin-bottom: 30px;
}

.culture-text h2 span{
  color: var(--gold);
}

.culture-text p{
  font-size: var(--fs--400);
  color: var(--beige);
  line-height: 1.6;
  opacity: 0.9;
}

.culture-image{
  flex: 1;
  position: relative;
  text-align: center;
}

.culture-image img{
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.img-border{
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 3px solid var(--gold);
  border-radius: 20px;
  opacity: 0.7;
}

.right1{
  order: 1;
}

.right2{
  order: 2;
}


/* EP Profile Grid - Using Existing Website Styles */
.ep-profile-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-card{
  background: rgba(27, 27, 27, 0.8);
  border: 2px solid var(--gold);
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.info-card h3{
  color: var(--gold);
  font-size: var(--fs--400);
  font-weight: var(--fw-700);
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
}

.info-card p{
  color: var(--beige);
  font-size: var(--fs--300);
  margin-bottom: 15px;
  line-height: 1.6;
}

.status-badge{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: var(--fw-700);
  margin: 5px;
}

.status-active{
  background: #0cb9c1;
  color: var(--beige);
}

.status-completed{
  background: var(--gold);
  color: var(--bg);
}

.status-pending{
  background: #f48924;
  color: var(--beige);
}

.timeline{
  grid-column: 1 / -1;
  background: rgba(27, 27, 27, 0.9);
  border: 3px solid var(--gold);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.timeline-item{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  border-left: 3px solid var(--gold);
  margin-left: 20px;
  position: relative;
}

.timeline-item::before{
  content: '';
  position: absolute;
  left: -8px;
  top: 20px;
  width: 13px;
  height: 13px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline-date{
  color: var(--gold);
  font-weight: var(--fw-700);
  min-width: 120px;
  margin-right: 20px;
}

.timeline-content{
  color: var(--beige);
}

.document-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin-bottom: 10px;
  background: rgba(254, 190, 71, 0.1);
  border-radius: 10px;
  border-left: 4px solid var(--gold);
}

.document-name{
  color: var(--beige);
  font-weight: var(--fw-400);
}

    .hero-section{
      text-align: center;
      margin-top: 100px;
      margin-bottom: 50px;
    }

    .journey-content-wrapper {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      margin-top: 30px;
    }

    .ep-journey-info {
      text-align: left;
      flex: 1;
    }

    .ep-journey-info h2 {
      text-align: left;
    }

    .ep-status-info {
      text-align: left;
      margin-top: 15px;
    }

    .ep-status-info p {
      text-align: left;
      margin-top: 10px;
    }

    .ep-status-info .status-badge {
      display: inline-block;
      margin-left: 0;
      margin-right: auto;
    }

    .ep-status-info .ep-duration {
      text-align: left !important;
      margin-left: 0;
      margin-top: 10px;
      display: inline-block;
      padding: 8px 16px;
      border-radius: 20px;
      font-weight: var(--fw-700);
    }

    .status-approved {
      background: #4CAF50;
      color: white;
    }

.hero-section h1{
  font-size: 3rem;
  color: var(--beige);
  margin-bottom: 20px;
}

.hero-section .ep-name{
  color: var(--gold);
  font-size: 2rem;
  font-weight: var(--fw-700);
}

.ep-photo{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid var(--gold);
  margin: 20px auto;
  display: block;
  object-fit: cover;
}

.no-data{
  text-align: center;
  padding: 50px;
  color: var(--beige);
}

.no-data h2{
  margin-bottom: 20px;
}

.back-btn{
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 15px 30px;
  border-radius: 15px;
  font-size: var(--fs--400);
  font-weight: var(--fw-700);
  cursor: pointer;
  transition: 0.45s cubic-bezier(0.2, 0.49, 0.32, 0.99);
  margin-top: 20px;
}

.back-btn:hover{
  background: var(--beige);
  transform: translateY(-2px);
}

/* Responsive styles for EP pages */
@media (max-width: 767px){
  .login-form{
    min-width: 90%;
    padding: 40px 30px;
  }
  
  .login-form h2{
    font-size: 2rem;
  }
  
  .ep-journey-info .ep-name{
    font-size: 35px;
    margin-bottom: 20px;
  }
  
  .ep-subtitle{
    font-size: 19px;
    margin-bottom: 20px;
  }
  
  .ep-duration{
    font-size: 17px;
  }
  
  .countdown-number{
    font-size: 28px;
  }
  
  .countdown-label{
    font-size: 16px;
    margin-top: 8px;
  }
  
  .ep-profile-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-section h1{
    font-size: 2rem;
  }
  
  .hero-section .ep-name{
    font-size: 1.5rem;
  }
  
  .ep-photo{
    width: 120px;
    height: 120px;
  }
  
  .culture{
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
    padding: 0 15px;
  }
  
  .culture-text{
    text-align: center;
  }
  
  .culture-text h2{
    font-size: 35px;
    margin-bottom: 20px;
  }
  
  .culture-text p{
    font-size: 19px;
  }
  
  .culture-image img{
    max-width: 100%;
  }
  
  .right1{
    order: 2;
  }
  
  .right2{
    order: 1;
  }
  
  .scrolling-txt{
    padding: 0 0 20px 0;
  }
  
  .line{
    font-size: 35px;
  }
}

/* Mobile alignment overrides for EP summary */
@media (max-width: 767px){
  .ep-journey-info{ text-align: center; }
  .ep-journey-info .ep-name{ text-align: center; }
  .ep-status-info{ align-items: center; text-align: center; }
  .ep-status-info .status-badge{ margin-left: auto; margin-right: auto; }
  .ep-status-info .ep-duration{ margin-left: auto; margin-right: auto; }
  .ep-brief{ text-align: center; }
  
  .ep-welcome-quote {
    margin-top: 25px;
    padding: 20px;
    text-align: center;
  }
  
  .welcome-text {
    font-size: 18px;
    padding-left: 20px;
    line-height: 1.6;
  }
  
  .ep-welcome-quote::before {
    font-size: 60px;
    top: -10px;
    left: 15px;
  }
  
  /* Mobile collapsible sections alignment */
  .collapsible-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    justify-content: center;
    position: relative;
    padding-bottom: 50px;
  }
  
  .project-header-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    width: 100%;
  }
  
  .visa-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    width: 100%;
  }
  
  .project-header-section h3,
  .visa-header h3 {
    text-align: center;
    margin: 0;
    width: 100%;
  }
  
  .project-type-badge,
  .visa-category-badge {
    margin: 0 auto;
    display: block;
  }
  
  /* Center the arrow icons on mobile */
  .collapsible-icon {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
}

/* Additional Mobile Content Visibility */
@media (max-width: 767px) {
  /* Ensure content is fully visible on mobile */
  .collapsible-content {
    overflow: visible;
  }
  
  .project-details,
  .visa-docs-section,
  .visa-notes {
    text-align: left;
    padding: 10px 0;
  }
  
  .detail-row {
    margin-bottom: 8px;
    display: block;
  }
  
  .detail-label {
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
  }
  
  /* Ensure project content is visible */
  .project-overview {
    padding: 10px 0;
  }
  
  .project-details {
    margin-top: 15px;
  }
}

/* Mobile Role Description Visibility Fix */
@media (max-width: 767px) {
  /* Ensure role description is fully visible */
  .role-description {
    padding: 15px;
    margin: 10px 0;
    min-height: auto;
  }
  
  .role-description p {
    line-height: 1.6;
    margin: 0;
    padding: 5px 0;
  }
  
  /* Ensure all collapsible sections expand fully on mobile */
  .collapsible-content.expanded {
    max-height: none !important;
    padding: 20px;
  }
  
  /* Fix collapsible content overflow */
  .collapsible-content {
    overflow: visible !important;
  }
}

/* Collapsible Sections Styles */
.collapsible-section {
  margin: 40px auto;
  background: rgba(27, 27, 27, 0.5);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  max-width: 90%;
  width: 100%;
  overflow: hidden;
}

.collapsible-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(254, 190, 71, 0.2);
}

.collapsible-header:hover {
  background: rgba(0, 0, 0, 0.3);
}

.collapsible-header h3 {
  color: var(--gold);
  font-size: 20px;
  margin: 0;
  font-weight: var(--fw-700);
}

.collapsible-icon {
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease;
  padding: 0 30px;
}

.collapsible-content.expanded {
  padding: 30px;
  max-height: none;
  overflow: visible;
}

/* Desktop: All collapsible sections collapsed by default, but collapsible */
@media (min-width: 768px) {
  #project-info-content,
  #visa-requirements-content {
    max-height: 0;
    padding: 0 30px;
    overflow: hidden;
  }
  
  #project-info-icon,
  #visa-requirements-icon {
    transform: rotate(0deg);
  }
  
  /* Allow manual expand on desktop */
  #project-info-content.expanded,
  #visa-requirements-content.expanded {
    max-height: none;
    padding: 30px;
    overflow: visible;
  }
  
  #project-info-icon.expanded,
  #visa-requirements-icon.expanded {
    transform: rotate(180deg);
  }
}

/* Visa Disclaimer Styles */
.visa-disclaimer {
  background: rgba(254, 190, 71, 0.1);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 25px;
  position: relative;
}

.visa-disclaimer p {
  color: var(--beige);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.visa-disclaimer i {
  color: #f48924;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.visa-disclaimer strong {
  color: var(--gold);
  font-weight: var(--fw-700);
}

/* Mobile styling for visa disclaimer */
@media (max-width: 767px) {
  .visa-disclaimer {
    padding: 12px 15px;
    margin-bottom: 20px;
  }
  
  .visa-disclaimer p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .visa-disclaimer i {
    font-size: 14px;
  }
}

/* Visa Requirements Section Styles */
.visa-requirements-section {
  text-align: left;
}

/* Visa Options Buttons */
.visa-options-buttons {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-left: 2px solid var(--beige);
}

.visa-options-buttons h4 {
  color: var(--gold);
  font-size: 16px;
  margin: 0 0 15px 0;
  font-weight: var(--fw-700);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
  text-align: center;
}

.visa-buttons-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.visa-option-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(254, 190, 71, 0.1);
  border: 2px solid var(--gold);
  border-radius: 25px;
  color: var(--beige);
  font-size: 14px;
  font-weight: var(--fw-600);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.visa-option-btn:hover {
  background: rgba(254, 190, 71, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(254, 190, 71, 0.3);
}

.visa-option-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 5px 15px rgba(254, 190, 71, 0.4);
}

.visa-option-btn i {
  font-size: 16px;
}

.visa-option-content {
  margin-top: 20px;
}

.visa-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  flex: 1;
}

.project-header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  flex: 1;
}

.visa-header h3 {
  color: var(--gold);
  font-size: 20px;
  margin: 0;
  font-weight: var(--fw-700);
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.project-header-section h3 {
  color: var(--gold);
  font-size: 20px;
  margin: 0;
  font-weight: var(--fw-700);
  flex: 1;
  min-width: 200px;
}

.visa-category-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.visa-evisa {
  background: #4CAF50;
  color: white;
}

/* Project Type Badges */
.project-type-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-gta {
  background: #0cb9c1;
  color: white;
}

.project-gte {
  background: #f48924;
  color: white;
}

.project-gv {
  background: #F85A40;
  color: white;
}

.visa-tourist {
  background: #f48924;
  color: white;
}

.visa-arrival {
  background: #ff9800;
  color: white;
}

.visa-free {
  background: #0cb9c1;
  color: white;
}

.visa-multiple {
  background: linear-gradient(135deg, #f48924 0%, #0cb9c1 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.visa-multiple::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.visa-content {
  text-align: left;
}

.visa-docs-section,
.visa-extra-docs,
.visa-notes,
.visa-extension-info {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-left: 2px solid var(--beige);
}

.visa-docs-section h4,
.visa-extra-docs h4,
.visa-notes h4,
.visa-extension-info h4 {
  color: var(--gold);
  font-size: 16px;
  margin: 0 0 15px 0;
  font-weight: var(--fw-700);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}

.visa-docs-list,
.visa-notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.visa-docs-list li,
.visa-notes-list li {
  color: var(--beige);
  font-size: 14px;
  line-height: 1.6;
  margin: 8px 0;
  padding-left: 25px;
  position: relative;
}

.visa-docs-list li i,
.visa-notes-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-size: 12px;
}

.visa-docs-list li i.fa-check-circle {
  color: #4CAF50;
}

.visa-docs-list li i.fa-exclamation-triangle {
  color: #f48924;
}

.visa-docs-list li i.fa-info-circle {
  color: #0cb9c1;
}

.visa-docs-list li i.fa-plane {
  color: #2196F3;
}

.extension-details p {
  color: var(--gold);
  font-weight: var(--fw-700);
  margin: 15px 0 10px 0;
  font-size: 14px;
}

.extension-details p:first-child {
  margin-top: 0;
}

/* Mobile responsive styles for collapsible sections */
@media (max-width: 767px) {
  .collapsible-section {
    margin: 20px auto;
    max-width: 95%;
  }
  
  .collapsible-header {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .collapsible-header h3 {
    font-size: 18px;
  }
  
  .collapsible-icon {
    font-size: 16px;
    margin-left: 0;
    align-self: flex-end;
  }
  
  .collapsible-content.expanded {
    padding: 20px;
  }
  
  .visa-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .visa-header h3 {
    font-size: 18px;
    min-width: auto;
  }
  
  .visa-category-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .project-type-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .project-header-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .project-header-section h3 {
    font-size: 18px;
    min-width: auto;
  }
  
  .visa-multiple {
    font-size: 11px;
    padding: 6px 10px;
    white-space: nowrap;
  }
  
  .visa-options-buttons {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .visa-buttons-container {
    flex-direction: column;
    gap: 10px;
  }
  
  .visa-option-btn {
    padding: 10px 16px;
    font-size: 13px;
    justify-content: center;
  }
  
  .visa-option-btn i {
    font-size: 14px;
  }
  
  .visa-docs-section,
  .visa-extra-docs,
  .visa-notes,
  .visa-extension-info {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .visa-docs-section h4,
  .visa-extra-docs h4,
  .visa-notes h4,
  .visa-extension-info h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .visa-docs-list li,
  .visa-notes-list li {
    font-size: 13px;
    margin: 6px 0;
    padding-left: 20px;
  }
  
  .visa-docs-list li i,
  .visa-notes-list li i {
    font-size: 10px;
  }
}

/* Food Modal Styles */
.food-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.food-modal-blocker {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
}

.food-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(27, 27, 27, 0.95);
  border: 3px solid var(--gold);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10002;
  backdrop-filter: blur(10px);
}

.food-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.food-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 40px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  line-height: 1;
}

.food-modal-close:hover {
  color: var(--beige);
  transform: rotate(90deg);
}

.food-modal-body img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .food-modal-content {
    padding: 30px 20px;
    max-width: 95%;
  }
  
  .food-modal-body img {
    max-width: 100%;
  }
}