* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: gilroy;
    color: #fff;
}

html,
body {
    height: 100%;
    width: 100%;
}

.hidden {
  display: none;
}


nav {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 12vh;
  width: 100%;
  padding: 0 6vw;
  background-color: transparent;         /* Fully transparent */
  backdrop-filter: blur(4px);            /* Keeps the blur effect */
  -webkit-backdrop-filter: blur(4px);    /* Safari support */
  z-index: 10;
}
nav h1, .nav-right ul li a {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}


nav h1 {
    font-size: 1.6vw;
    color: white;
    white-space: nowrap;
}

.nav-right{
    display: flex;
    align-items: center;
    gap: 2vw;
    
}

.nav-right ul{
    list-style: none;
    display: flex;
}

.nav-right ul li a{
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 550;
    font-size: 18.6px;
    padding: 20px 25px;
    overflow: hidden;
}

.nav-right ul li a:before{
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background-color: #fff;
    transform: all ease 0.5s;
    transform: scaleX(0);
}

.nav-right ul li a:hover:before{
    transform: scaleX(1);
}

.nav-right ul li a span{
    display:block;
    transition: all ease 0.5s;
}

.nav-right ul li a span:nth-child(2){
       left:0;
       top: 0; right: 0;
       text-align: center;
       position: absolute;
       transform: translateY(-30px);
}


.nav-right ul li a.btn {
  display: inline-block;
  padding: 20px 20px;              
  background-color: grey;        /* Light grey background */
  color: black !important;           /* Dark text inside */
  border-radius: 50px;             /* Fully rounded */
  font-weight: 550;
  font-size: 17.6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav-right ul li a.btn:hover {
  background-color: #3b3b3b; /* Slightly darker grey on hover */
}
.nav-right ul li a:hover span:nth-child(1){
    transform: translateY(50px);

}

.nav-right ul li a:hover span:nth-child(2){
    transform: translateY(20px);
}



#page1 {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

#page1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Adjust darkness here (0.5 = 50%) */
  z-index: 2;
}

#page1 > * {
  position: relative;
  z-index: 3;
}

#page1 h1{
    font-size: 8.5vw;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 8.5vw;
}
#page1 h1 svg{
    height: 6vw;
    border-radius: 50%;
    width: 6vw;
    background-color: #0BA34E;
}
#page1 p{
    text-align: center;
    font-weight: 400;
    margin-top: 3vh;
}
#page1-something{
    display: flex;
    align-items: center;
    justify-content: center;
}
#page1-something h4{
    font-weight: 400;
    font-size: 1vw;
    text-transform: lowercase;
    margin: 0.4vw;
    padding: 5px 12px;
    border: 1px solid #0BA34E;
    border-radius: 50px;
}
#page1-something h4:nth-child(3){
     border: 1px solid #221f1f;
     padding: 2px;
}



#moving-div{
    margin-top: 10vh;
    position: absolute;
    bottom: 3%;
    white-space: nowrap;
    width: 44%;
    padding: 1.2vw;
    overflow: hidden;
}
#moving-div .move{
    display: inline-block;
    animation-name: mobe;
    animation-duration: 9s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
#moving-div .move img{
    height: 1vw;
    margin: 0 1vw;
}
@keyframes mobe {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}
#blur-left{
    height: 100%;
    width: 20%;
    background: linear-gradient(to left,transparent,#111);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
#blur-right{
    height: 100%;
    width: 20%;
    background: linear-gradient(to right,transparent,#111);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.about.section {
min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #C0C0C0;
  padding-top: 8vh;
  padding-bottom: 2vh;
  overflow: hidden;
  position: relative;
}

.about__container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  justify-content: space-between;  
  gap: 4rem;
  padding: 10vh 5vw;              
  width: 100%;                     
  max-width: 100%; 
}

.about__data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  color: #111;
  padding: 1rem 1rem;
  max-width: 100%;
  font-size: 1.25rem; 
}

.section__subtitle {
  color: #3b3b3b;
  font-weight: 700;
  font-size: 2.2rem;  
  text-transform: uppercase;
  margin-bottom: 1rem;
 text-decoration: underline;
}
.section__title {
  font-size: 3.2rem;  /* Increased */
  margin: 1.2rem 0;
  color: #111;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  
}

.about__description {
  margin-bottom: 3rem;
  font-size: 1.3rem; /* Increased */
  line-height: 1.8;
  color: #333;
}

.about__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 0;
  list-style: none;
}

.about__list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
  color: #333 !important;
  margin-bottom: 0.5rem;
}

.about__list-item i {
  color: #333 !important; /* Match icon color */
  font-size: 2rem;
}

.button {
  display: inline-block;
  width: auto; 
  max-width: fit-content; /* allow shrink-to-fit */
  background-color: #3b3b3b;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.about__data .button {
  align-self: start; /* or center if you want to center it */
  justify-self: start;
  margin-bottom: 0;
}

.button:hover {
  background-color: white;
  color:black;
}

/* Image Layout Fixes */
.about__images {
    display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  height: auto;
}

.about__img-1 {
  width: 300px; /* Increased */
  border-radius: 12px;
  top: -2rem;
  left: 2rem;
  z-index: 2;
  position: relative;
}

.about__img-2 {
  width: 300px; /* Increased */
  position: absolute;
  top: 55%;
  left: -60px;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 12px;
  opacity: 0.85;
}
.about__img-1,
.about__img-2 {
  width: 100%;
  max-width: 460px;
  border-radius: 14px;
  height: auto;
}
@media (max-width: 768px) {
  .about.section {
    padding-top: 16vh;
  }

  .section__subtitle {
    font-size: 1.1rem;
  }
}
.about-cursor-follow {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  opacity: 0;
 
}

.about-cursor-follow img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.fade-to-visit {
  height: 40px;
  background: linear-gradient(
    to bottom,
    hsl(0, 0%, 75%),    /* #C0C0C0 - top (from About) */
    hsl(0, 0%, 30%)    
  );
}

.visit{
    height: 50vh;
    position: relative;
    overflow: hidden;
}
.visit__container{
     position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.visit__bg,
.visit__shadow{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
}
.visit__bg{
     object-fit: cover;
  object-position: center;
  filter: brightness(0.5); /* Makes the image darker / more transparent */
  opacity: 0.9;
}

.visit__shadow {
      position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: linear-gradient(
    180deg,
    hsl(0, 0%, 20%) 0%,        
    hsla(0, 0%, 20%, 0.1) 50%,   
    hsl(0, 0%, 20%) 100%         
  );
}
.visit__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ddd; /* Light grey */
}

.visit__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #e5e5e5; 
}

.visit__data .button {
  background-color: #3b3b3b;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.visit__data .button:hover {
  background-color: white;
  color: #111;
}
.visit__data h2 {
  color: #f9f9f9; 
  font-size: 2.8rem; /* optional: increase size */
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* subtle glow for contrast */
  margin-bottom: 2rem;
}


.fade-to-work {
  height: 40px;
  background: linear-gradient(
    to bottom,
    hsl(0, 0%, 30%),  
    #C0C0C0            
  );
}
.wrapp{
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 20px;
    z-index: 1;
    background: #C0C0C0;
}
.content{
    width: 100%;
    height: auto;
}

.spacer{
    width: 100%;
    height: 50vh;
    background: #ddd;
}

.work{
    display: flex;
}

.work__left{
    position: relative;
    width: 54%;
    z-index: 2;
    
}

.work__text{
    margin: auto;
    width: 80%;
}

.work__info{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
   
}

.work__num{
    display: block;
    line-height: .9;
    text-align: right;
    font-size: 48px;
     padding-bottom: 50px;
     color: #222222;
    }

.title{
    text-align: right;
    font-size: 30px;
    color: #222222;
   
}


.work__link{
    display: block;
    width: 365px;
    margin-top: 50px;
    margin-left: auto;
    padding: 18px 0;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    letter-spacing: 4px;
    border: 2px solid ;
    border-radius: 30px;
    transition: .4s;
}

 .work__link:hover{
        background: #3b3b3b;
        color: white;
        letter-spacing: 6px;
    }

.work__right{
    width: 46%;
    height: auto;
 
}

.work__right-bl{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    width: 100%;
    height: 100vh;
    top: 0;
}

.work__photo{
    width: 40vw;
    height: 30vw;
    position: relative;
}

.work__photo-item{
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 80px;
    overflow: hidden;
}

.work__photo-item img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fade-to-work2 {
  height: 40px;
  background: linear-gradient(
    to bottom,
    #C0C0C0 0%,
    #808080 50%,
    #333333 100%
  );
}
.about.section2 {
min-height: 100vh;
  display: flex;
  align-items: stretch;
  background-color: #C0C0C0;
  padding-top: 2vh;
  padding-bottom: 2vh;
  overflow: hidden;
  position: relative;
}

.about__container2 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  justify-content: space-between;  
  gap: 4rem;
  padding: 10vh 5vw;                /* <- reduced horizontal padding */
  width: 100%;                      
  max-width: 100%; 
}

.about__data2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  color: #111;
  padding: 2rem 2rem;
  max-width: 100%;
  font-size: 1.25rem; /* Increased base text size */
}

.section__subtitle2 {
  color: #3b3b3b;
  font-weight: 700;
  font-size: 2.2rem;  
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section__title2 {
  font-size: 3.2rem;  /* Increased */
  margin: 1.2rem 0;
  color: #111;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about__description2 {
  margin-bottom: 3rem;
  font-size: 1.3rem; /* Increased */
  line-height: 1.8;
  color: #333;
}

.about__list2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr)); /* More width per item */
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 0;
  list-style: none;
}

.about__list-item2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem; /* Increased */
  color: #333 !important;
  margin-bottom: 0.5rem;
}

.about__list-item2 i {
  color: #333 !important; /* Match icon color */
  font-size: 2rem;
}

.button2 {
  display: inline-block;
  width: auto; /* explicitly prevent full width */
  max-width: fit-content; /* allow shrink-to-fit */
  background-color: #3b3b3b;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.about__data2 .button2 {
  align-self: start; /* or center if you want to center it */
  justify-self: start;
  margin-bottom: 0;
}

.button2:hover {
  background-color: #e28b10;
}

/* Image Layout Fixes */
.about__images2 {
    display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  height: auto;
}

.about__img-1-2 {
  width: 300px; /* Increased */
  border-radius: 12px;
  top: -2rem;
  left: 2rem;
  z-index: 2;
  position: relative;
}

.about__img-2-2{
  width: 300px; /* Increased */
  position: absolute;
  top: 55%;
  left: -60px;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 12px;
  opacity: 0.85;
}
.about__img-1-2,
.about__img-2-2 {
  width: 100%;
  max-width: 460px;
  border-radius: 14px;
  height: auto;
}
@media (max-width: 768px) {
  .about.section2 {
    padding-top: 16vh;
  }

  .section__subtitle2{
    font-size: 1.1rem;
  }
}
.about-cursor-follow2 {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  opacity: 0;
 
}

.about-cursor-follow2 img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.choose__content * {
  color: black !important;
}
#choose {
  background-color: #C0C0C0;
  height:100%
}

.choose__section{
  height: 100vh;
  
}
.choose__container{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.choose__blob {
   width: 330px;
  height: 550px;
  border-radius: 20rem 20rem 0 0;
  background: linear-gradient(180deg, #555555, #222222);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 14.1vh;
  margin-right: 40vh;
}

.choose__image{

  justify-self: center;
}
.section__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-top: 8rem;
}
.choose__shadow{
 position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 30px;

  filter: blur(12px);
  z-index: -1;
  border-radius: 50%;
}

.choose__img{
width: 150px;
  height: auto;
  position: absolute;
  bottom: 20px;
}

.choose__blob-title{
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.3);
  font-size: 2rem;
}


.choose__data{
  text-align: center;
  
}

.choose__content,
.choose__faq{
  display: grid;
  row-gap: 2rem;
  color: black;
}
.choose__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.choose__faq-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.choose__faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.choose__faq-header{
  display:flex;
  align-items: center;
  column-gap: 0.95rem;
  cursor: pointer;

}
.choose__faq-title{
  font-weight: 500;
  font-size: 1.3rem;
  color: #333;
}

.choose__faq-icon{
   background-color:white;
  color: white;
  border-radius: 0.5rem;
  padding: 0.3rem 0.6rem;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px black;
  transition: transform 0.3s ease;
}

.choose__faq-icon i{
  transition: transform .3s;
}

.choose__faq-description{
   padding-left: 2rem;
  color: #333;
  font-size: .85rem;

}

.choose__faq-content{
   overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1rem;
  

}

.choose__faq-item.active .choose__faq-content {

  padding: 0.5rem 1rem;
}
.choose__faq-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.choose__faq-item.active .choose__faq-icon {
  transform: rotate(45deg);
}

.footer,
.footer * {
  color: white;
  
}

.footer a {
  color: white;
  text-decoration: none; 
}

section.footer{
  position: relative;
  width: 100%;
  padding: 100px 8% 100px;
  background-color: #3b3b3b;
 
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 2fr;
  grid-gap: 20px;
}

.footer .footer-col{
  position: relative;
  z-index: 2;
}

.footer .footer-col .col-header{
  position: relative;
  margin-bottom: 20px;
}

.footer-col .col-header h2{
  font-size: calc(16px + 0.6vw);
  color: white;
  font-weight: 500;
}
.footer-col-1 .col-desc  .col-header h1{
  padding-top: 35%;
}

.footer-col-1 .col-desc p{
  font-size: 15px;
  color: white;
  line-height: 1.3;
  margin-top: 35px ;
  margin-bottom: 35px;
}

.footer-col-1 .col-desc p:nth-child(2){
  margin-top: 5px;
}

.footer-col-1 .col-desc .footer-social-media{
  margin-top: 50px;
}

.col-desc .footer-social-media a{
  color: white;
  text-decoration: none;
  font-size: calc(12px + 0.4vw);
  margin-right: 15px;
  transition: color 0.3s;
}

.c.col-desc .footer-social-media a:hover{
  color: white;
}

.footer-col-ol-desc{
  display: flex;
  flex-direction: column;
}

.footer-col-2 .col-desc .contact-row{
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.footer-col-2 .col-desc .contact-row span{
  color: white;
}

.footer-col-2 .col-desc .contact-row span:nth-child(1){
  color: white;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 2px;
}

.footer-col-3 .col-desc{
  display: flex;
  flex-direction: column;
}

.footer-col-3 .col-desc a{
  position: relative;
  text-decoration: none;
  color: white;
  margin-bottom: 25px;
  align-self: flex-start;
  transition: all 0.3s;
  left: 15px;
}

.footer-col-3 .col-desc a::before{
  content: '';
  position: absolute;
  width: 7px; height: 7px;
  background-color: white;
  border-radius: 50%;
  left: -15px; top: 50%;
  transform: translateY(-50%);
}

.footer-col-3 .col-desc a:hover{
  letter-spacing: 2px;
}

.footer-col-4 .col-desc{
  display: flex;
  flex-direction: column;
}

.footer-col-4 .col-desc p{
  font-size: 15px;
  color: white;
  line-height: 1.3;
}

.footer-col-4 .col-desc form{
  display: flex;
  flex-direction: column;
  margin-top: 38px;
}

.footer-col-4 .col-desc form input{
  width: 100%;
  padding: 12px;
  border: 1px solid black;
  outline: none;
  border-radius: 5px;
  margin-bottom: 9px;
}

.footer-col-4 .col-desc form .email-submit-btn{

  background-color: transparent;  
  border: 1px solid white;        
  padding: 0.5rem 1rem;             
  cursor: pointer;                 
  margin-top: 2rem; }

  .fade-to-work4 {
 height: 40px;
  background: linear-gradient(
    to bottom,
    #C0C0C0 0%,
    #A9A9A9 40%,
    #808080 70%,
    #333333 100%
  );
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  width: 95%;
  max-width: 500px;
  min-height: 350px; /* instead of fixed height */
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
 
  
}

@keyframes fadeIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: crimson;
}

.form-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.form-toggle button {
  flex: 1;
  padding: 0.5rem;
  border: none;
  background: #A9A9A9;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  transition: background 0.3s;
}

.form-toggle button.active {
  background: #1f1f1f;
  color: #fff;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: fadeIn 0.3s ease;
}

.auth-form.hidden {
  display: none;
}

.auth-form input {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.auth-form button {
  padding: 0.7rem;
  background: #1f1f1f;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.auth-form button:hover {
  background: #1f1f1f;
}
