

.about-hero-section{
    background-color: #2e0701c7;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 100px 0px;
}

.about-hero-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 88.75vw;
    max-width: 1440px;
}

.about-hero-heading h1{
    color: #f7f7f7;
    font-size: 52px;
    font-family: 'Canela Text';
    text-align: center;
}
.about-hero-heading p{
    color: #f7f7f7;
    font-size: 20px;
    font-family: 'Canela Text';
    width: 50vw;
}

@font-face {
    font-family: 'Canela Text';
    src: url('/canela-text-trial-webfont/Canela-Light-Trial.woff') format('woff2'); /* Replace with your font path */
    font-weight: 300; /* Corresponds to Light */
    font-style: normal;
}

@media screen and (max-width: 485px) {
    .about-hero-heading h1{
        font-size: 1.8rem;
    }      
    .about-hero-heading p{
        font-size: 0.7rem;
    }
}








/* Core heading section */
.core-heading{
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}
.core-heading-container{
    display: flex;
    justify-content: center;
    width: 88.75vw;
    max-width: 1440px;
}
.core-heading-container h1{
    font-size: 52px;
    color: #f7f7f7;
    padding-top: 100px;
}

@media screen and (max-width: 485px) {
    .core-heading-container h1{
        font-size: 1.8rem;
    }
}



/* Core values section */
.core-values {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0 150px 0;
}

  .core-values-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    width: 88.75vw;
    align-items: flex-start;
  }
  
  .values-text {
    flex: 1;
  }
  
  .value-item {
    margin-bottom: 15px;
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 1px solid #f7f7f7;
  }
  
  .value-item h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #f7f7f7;
  }
  
  .value-item p {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    color: #d4ceceb6;
    font-size: 1rem;
    transition: max-height 0.5s ease-in-out, margin-top 0.3s ease;
  }
  
  .value-item.active p {
    max-height: 200px; /* adjust depending on text length */
    margin-top: 8px;
  }
  
  .values-images {
    flex: 1;
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .value-img {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.6s ease;
  }
  
  .value-img.active {
    top: 0;
    opacity: 1;
  }
  
@media screen and (max-width: 485px) {
    .core-values-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
      }
    .value-item h3 {
        font-size: 1rem;
    }
    .value-item p {
        font-size: 0.7rem;
    }
    .values-images {
        position: relative;
    }
    .value-img {
        object-fit: cover;
        position: absolute;
    }
}









  
  
  /* Guide Section */
.guide{
    background-color: #2e0701c7;
    padding: 140px 0;
}

.guide-title{
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}
.guide-heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 88.75vw;
    max-width: 1440px;
}
.guide-heading p{
    color: #f7f7f7;
    /* font-family: 'Canela Text'; */
    font-size: 20px;
    font-family: "Atlas Grotesk";
    /* word-spacing: 10px; */
    letter-spacing: 15px;
}
.guide-heading h1{
    color: #a99560;
    font-family: 'Canela Text';
    font-size: 44px;
    margin-top: -5px;
}

@media screen and (max-width: 768px) {
    .guide-heading p{
        font-size: 1rem;
        letter-spacing: 5px;
    }
    .guide-heading h1{
        font-size: 36px;
    }
}
@media screen and (max-width: 485px) {
    .guide-heading p{
        font-size: 0.7rem;
        letter-spacing: 10px;
    }
    .guide-heading h1{
        font-size: 1.8rem;
    }
}






/* guide grid section */
.guide-container{
    display: flex;
    justify-content: center;
    width: 100%;

}

.guide-para{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 88.75vw;
    max-width: 1440px;
}
.guide-detail{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.guide-info{
    width: 40vw;
}
.guide-info h1{
    color: #a99560;
    font-family: "Atlas Grotesk";
}
.guide-info h1 span{
    font-size: 60px;
}
.guide-info p{
    color: #f7f7f7;
}

@media screen and (max-width: 768px) {
    .guide-info p{
        font-size: 1rem;
    }
    .guide-info h1{
        font-size: 2rem;
    }
}
@media screen and (max-width: 600px) {
    .guide-detail{
        display: grid;
        grid-template-columns: repeat(1, 1fr);   
    }
    .guide-info{
        width: 80vw;
        text-align: center;
    }
}
@media screen and (max-width: 485px) {
    .guide-info p{
        font-size: 0.7rem;
    }
    .guide-info h1{
        font-size: 1rem !important;
    }
}













/* Team Section */
.team{
    /* background-color: #2e0701c7; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.team-container{
    display: flex;
    justify-content: center;
    width: 88.75vw;
    max-width: 1440px;
    padding: 0 0 100px 0;
}
.team-grid{
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.team-info{
    width: 25vw;
    cursor: pointer;
}
.team-info img{
    width: 100%;
    border-radius: 8px;
}
.team-info p{
    width: 24vw;
    font-size: 16px;
    color: #f7f7f7;
}
.team-name{
    color: #a99560 !important;
    font-weight: 1000;
    font-size: 20px !important;
}

@media (max-width: 600px) {
    
    .team-grid{
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .team-info{
        width: 60vw;
        text-align: center;
    }
    .team-info p{
        width: auto;
    }
    
}





/* Team prompt section */
/* Modal background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  /* Modal content */
  .modal-content {
    display: flex;
    gap: 20px;
    background: #a99560;
    padding: 30px;
    border-radius: 12px;
    max-width: 900px;
    width: 70vw;
    animation: fadeIn 0.4s ease-in-out;
    position: relative;
  }
  
  /* Left side */
  .modal-left {
    flex: 1;
    text-align: center;
  }
  
  .modal-left img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
  }
  
  .modal-left h2 {
    margin: 15px 0 5px;
    font-size: 20px;
  }
  
  .modal-left h4 {
    margin: 0;
    font-weight: normal;
    color: #000000c4;
  }
  
  /* Right side */
  .modal-right {
    flex: 2;
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    white-space: pre-line; /* allow \n to create new lines */
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #000;
    transition: 0.3s;
  }
  
  .close-btn:hover {
    transform: scale(1.2);
  }
  
  /* Animation */
  @keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
  }
  
  
  /* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        text-align: center;
        width: 80%;
        overflow-x: hidden;
    }
    .modal-left img {
        max-width: 180px;
    }
    .modal-right {
        text-align: left;
        margin-top: -25px;
        font-size: 15px;
    }
}












/* Client Section*/

.client-background{
    background-color: #2e0701c7;
    padding: 100px 0 200px 0;
}


/* Client slider Section */
.client-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.client-logo-container{
    padding-top: 100px;
    display: flex;
    justify-content: center;
    width: 88.75vw;
    max-width: 1440px;
}

.client-logo-slider{
    width: 80vw;
}

.client-logo-slider img{
    margin-left: 50px;
}

@media screen and (max-width: 485px) {
    .client-background{
        padding: 100px 0 100px 0;
    }
    .client-logo-slider{
        display: flex;
        gap: 70px;
    }
    .client-logo-slider img{
        margin: 10px;
    }
    .client-logo-container{
        padding-top: 40px;
    }
}









/* Project Complete Section */
.complete-background{
    padding: 150px 0;
}

.complete{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.complete-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 88.75vw;
    max-width: 1440px;
}
.complete-container-info{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}

.complete-detail{
    color: #f7f7f7;
    justify-content: space-between;
    width: 25rem;
}
.complete-detail hr{
    width: 100%;
    border: 1px solid #a99560;
}

.complete-info{
    color: #f7f7f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.complete-left h1, .complete-right h1{
    color: #a99560;
    text-align: left;
}


@media screen and (max-width: 890px){
    
    .complete-container-info{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width: 485px){
    .complete-detail{
        justify-content: space-between;
        width: 18rem !important;
    }
    .complete-left h1, .complete-right h1{
        font-size: 1rem;
    }
    .complete-left p, .complete-right p{
        font-size: 0.7rem;
    }
}









/* Moving text section */
.right-to-left {
    width: 100%;
    overflow: hidden; /* hides overflow outside container */
    white-space: nowrap;
    box-sizing: border-box;
  }
  
  .right-to-left h1 {
    display: inline-block;
    padding-left: 100%; /* start from outside the right */
    animation: moveLeft 12s linear infinite;
    color: #a9966039;
    font-size: 52px;
  }
  
  /* Keyframes */
  @keyframes moveLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  