/* General page styling */
/* Full-screen overlay */
#password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(231, 231, 231, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-in-out;
    z-index: 9999;
}

/* Password container */
.password-container {
    background: transparent;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.password-container p{
    font-size: 18px;
}

.password-container i{font-size: 28px;}


/* Input and button styling */
.password-container input {
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
}

.password-container button {
    padding: 0px 15px;
    border: none;
    background: #333;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-evenly;
    max-width: 130px;
    margin: auto;
    align-items: center;
    border-radius: 100px;
    margin-top: 20px;
    height: 45px;
    text-transform: uppercase;
    text-align: center !important;
    width: 100%;
    font-weight: 300;
    font-size: 16px;
}

.datapart.pill p {
    font-size: 14px !important;
    background: rgb(234 240 243);
    border-radius: 100px;
    padding: 5px 15px;
    width: fit-content;
}

.datapart.pill{
    flex-grow: inherit;
    margin-right: 5px;
}

.password-container button:hover {
    background: #555;
}

/* Error message */
.password-container #error-message {
    color: red;
    font-size: 14px;
}

/* Smooth fade-out */
.password-container .hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

/* Initially hide protected content */
#protected-content {
    display: none;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

/*tab*/
.tabs {
    display: flex;
    margin-bottom: 10px;
    background: white;
    border-radius: 13px;
    border: solid 1px #cacaca;
    width: fit-content;
    padding: 4px 0;
}

    .tab {
      padding: 10px 20px;
      cursor: pointer;
      margin: 0 5px;
      border-bottom: none;
    }

    .tab.active {
    background: #e7e7e7;
    font-weight: bold;
    border-radius: 10px;
    font-weight: 100;
}


    .tab-content {
      display: none;
    }

    .tab-content.active {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    border-radius: 15px;
}

  .tab-content .block{
    display: flex;
    border: 1px solid #cacaca;
      padding: 20px;
      background: white;
      border-radius: 13px;
  }



    .tab-content .block .left,   .tab-content .block .right {
      box-sizing: border-box;
    }

    .tab-content .block .left {
    flex: 1 1 45%;
    padding: 20px;
    padding-top: 0;
}

      .tab-content .block .right {
      flex: 1 1 65%;
    }

    @media (max-width: 992px) {
      .tab-content .block {
        flex-direction: column;
      }
        .tab-content .block .left,   .tab-content .block .right {
        flex: 1 1 100%;
      }
    }



/*jumbotron*/
.body{
    padding-bottom: 200px;
}
.sidebyside{
    display: flex;
    gap: 155px;
}
.quarter {
    max-width: 750px;
}
.image-round{
    max-width: 100%;
    border-radius: 20px;
}
.vert-hr{ 
    border:         none;
    border-left:    1px solid rgb(182, 182, 182);
    height:         175px;
    width:          1px;    
    margin: auto;   
    margin-top: 50px;
}
  .jumbo{
    height: 74vh; 
    border-radius: 20px; 
    background-color: #60C977;
    background-repeat: no-repeat; 
    background-position: top; 
    background-size:600px; 
    background-position-y: 70px;
  }
  .big-square{
    height: 85vh; 
    border-radius: 20px; 
    background-color: #60C977;
    background-repeat: no-repeat; 
    background-position: top; 
    background-size:600px; 
    background-position-y: 70px;
  }
  .icon-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 100px;
}
.icon-grid .icon {
    min-width: 105px;
    margin-bottom: 50px;
}
.process{
    background-color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    gap: 40px;
}
.process-block i{
    font-size: 27px;
    vertical-align: top;
    margin-right: 11px;
}
.process-block{
    display: flex;
    gap: 55px;
    /* margin-bottom: 110px; */
}

.tab i {
    font-size: 20px;
    margin-right: 5px;
}

.block img {
    background: #f6f6f6;
    border-radius: 10px;
    border: #dedede 1px solid;
    padding: 30px;
    padding-bottom: 0;
}

.process-block .image{
    background-size: cover !important; 
    flex: 1; 
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    min-height: 650px; background: url(../img/projects/zero/process.png);
    filter: brightness(1.06);
}

.process-block .content{
    flex: 1;
    background: #eee;
    padding: 20px;
    text-align: center; 
    min-height: 650px; 
    background: white; 
    border-radius: 20px; 
    text-align: left;
}

.short-p{
    max-width: 500px;
}

@media (max-width: 992px) {
    .sidebyside {
        gap: 30px;
        flex-direction: column;
    }
    .process-block {
        flex-direction: column;
      }
    .big-square {
    height: 85vh;
    background-size: contain;
    background-position-y: 100%;
}
    .jumbo {
    background-size: contain;
}
.icon-grid {
    gap: 15px;
}
.process-block .image {
    min-height: 300px;
}
.process-block .content {
    min-height: fit-content;
    padding: 0;
}
.process-block {
    margin-bottom: 10px;
}
}

.footer-top{
    margin-top: 0;
}

.fullscreens{
    background-color: #60C977; border-radius: 20px; padding: 45px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.fullscreens img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Stack images on smaller screens */
@media (max-width: 992px) {
  .fullscreens {
    grid-template-columns: 1fr;
  }
  .reverse{
    flex-direction: column-reverse !important;
  }
}

.branded{
    margin: auto;
    text-align: center;
}
.branded-img{
    max-width: 900px;
    border-radius: 30px;
    margin: auto;
    margin-bottom: 170px;
    width: 100%;
}
.impact .datapart {
    max-width: 400px;
}
.impact .stat-box{
    margin-bottom: 50px;
        gap: 50px;
}
.impact .datapart .mono {
    color: white;
}
.impact .container {
    color: white !important;
}
.impact{
    background: rgb(21, 21, 21);
}
.impact .datapart h1 {
    font-size: 70px !important;
}
@media (max-width: 992px) {
  .impact .datapart h1 {
    font-size: 50px !important;
}
.datapart.pill p {
    margin: 0;
}
.quarter .padded-space {
    padding-left: 0;
}
}