/*
-----------------------------
WHO WE ARE PAGE STYLES
-----------------------------
*/

/*
-----------------------------
NAVIGARE
-----------------------------
*/

.image-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 10; /* Higher than hex-canvas z-index: 2 */
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/other_pages/guys-at-office-shaking-hands.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -10;
    /* filter: sepia(20%); */
}

.over-image-section {
    position: relative;
    z-index: 10;
    height: 100%;
    text-align: center;
}

.on-certifications a{
    color: var(--first-color);
    font-weight: 900;
}



.hero-section-wrap {
    margin-top: 12vh;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-section-content {
    text-align: center;
    width: 60%;
    max-width: 600px;
    min-width: 280px;
    padding: 4vw 4vw 4vw 4vw; /* Add left padding to align with logo */
    background: none;
    float: none;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid linear-gradient(
        transparent,
        var(--first-color),
        transparent
    );
    box-shadow: 0 0 10px var(--first-color) inset;
    border-radius: 30px;
}

.hero-section-text {
    width: 100%;
    max-width: 600px;
}

.hero-section-text h1{
    color: var(--first-color);
    margin-bottom: 18px;
    /* font-size: 2.8rem; */
    line-height: 1.1;
}

.hero-section-text p{
    color: #ffffff;
    /* margin-bottom: 18px; */
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.5;
}

.hero-section-buttons .btn-black {
    margin-right: 16px;
}

@media (max-width: 1023px) {
  .hero-section-wrap {
    margin-top: 7vh;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    /* justify-content: center; */
    padding-top: 4vh;
  }
  .hero-section-content {
    width: 90%;
    max-width: 95vw;
    padding: 4vw 0;
  }
  .hero-section-text {
    max-width: 100vw;
  }
  .hero-section-text h1 {
    font-size: 2.1rem;
  }
  .hero-section-text p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .image-hero {
    height: 70vh;
  }
  
  .hero-section-wrap {
    margin-top: 2vh;
    min-height: 60vh;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-section-content {
    width: 100%;
    max-width: 100vw;
    padding: 6vw 0 2vw 0;
  }
  .hero-section-text h1 {
    font-size: 3rem;
  }
  .hero-section-text p {
    font-size: var(--font-size-s);
  }
  
  /* Mobile nav visibility */
  
}

/*
-----------------------------
CERTIFICATIONS SECTION
-----------------------------
*/

.certifications {
    text-align: center;
    padding: 8vh 0;
    min-height: 100vh;
    background-color: var(--second-color);
    position: relative;
    overflow: hidden;
}

.crtf-section-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.crtf-section-content {
    width: 100%;
    text-align: center;
    margin-bottom: 4vh;
}

.crtf-section-content-title {
    width: 100%;
    text-align: center;
    padding: 8vh 0;
}

.certifications h2{
    color: var(--first-color);
    /* font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px; */
}

.crtf-section-badges {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
}

.crtf-section-badges-category {
    width: 300px;
    text-align: center;
    margin-bottom: 30px;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    transition: none;
}

.crtf-section-badges-category:hover {
    transform: none;
    box-shadow: none;
}

.crtf-section-badges-category-logo {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.crtf-section-badges-category-logo img{
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    z-index: 10;
}

.crtf-section-badges-category-text {
    text-align: left;
}

.crtf-section-badges-category-text h4 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-align: center;
}

.crtf-section-badges-category-text p {
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

/* .animated-image img {
  transform: scale(0);
  opacity: 0;
  transition: all 0.7s ease-out;
}

.animated-image.in-view img {
  transform: scale(1);
  opacity: 1;
}

.delay-animation-crtf-1 img{
    transition-delay: 0.2s;
}

.delay-animation-crtf-2 img{
    transition-delay: 0.7s;
}

.delay-animation-crtf-3 img{
    transition-delay: 0.4s;
<<<<<<< HEAD
}

/*-----------------------------
DOWNLOAD PROOF 
-----------------------------
*/

.download-proof {
  background-color: black;
  text-align: center;
  /* padding: 60px 20px; */
}

.proof-container {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}

.proof-container h2 {
  color: var(--first-color);
  padding: 20px 0;
}

.proof-container h4 {
  color: var(--third-color);
  padding-bottom: 20px;
}

.proof-container .btn-yellow {
  margin: 15px 30px;
}

/* Responsive typography and spacing */
@media (max-width: 600px) {
  .proof-container h2 {
    font-size: 1.5rem;
  }

  .proof-container h4 {
    font-size: 1rem;
  }

  .download-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/*-----------------------------
CHOOSE PROGER
-----------------------------
*/

.choose-proger {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  position: relative;
  background: 
  linear-gradient(
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.7)
    ),
    url('../img/other_pages/forest.jpg') center center / cover no-repeat;
  z-index: 10;
}

.choose-proger-content {
  max-width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  gap: 10vh;
}

.choose-proger-content h2 {
  color: var(--first-color);
  /* padding-bottom: 20px; */
}

.choose-proger-content h3 {
  color: var(--third-color);
} 

/*
-----------------------------
RESPONSIVE DESIGN
-----------------------------
*/

@media (max-width: 1023px) {
  .crtf-section-wrap {
    flex-direction: column;
    gap: 40px;
  }
  
  .crtf-section-content {
    width: 100%;
    text-align: center;
  }
  
  .crtf-section-badges {
    width: 100%;
    justify-content: center;
    gap: 25px;
  }
  
  .crtf-section-badges-category {
    width: calc(33.333% - 17px);
    min-width: 200px;
    padding: 15px;
    /* background: rgba(255, 255, 255, 0.03); */
    border-radius: 10px;
  }
  
  .crtf-section-badges-category-text h4 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .crtf-section-badges-category-text p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  
  /* Tablet adjustments for other sections */
  .download-proof {
    padding: 50px 0;
  }
  
  .proof-container {
    height: 55vh;
    padding: 0 30px;
  }
  
  .proof-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
  }
  
  .choose-proger {
    height: 70vh;
  }
  
  .choose-proger-content h3 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

@media (max-width: 767px) {
  .certifications {
    padding: 60px 0 40px;
  }
  
  .crtf-section-content-title {
    padding: 4vh 0 0 0;
  }
  
  .crtf-section-content-title h2 {
    font-size: 3rem;
    font-weight: 900;
    /* margin-bottom: 15px; */
  }
  
  .crtf-section-badges {
    gap: 20px;
    padding: 0 15px;
  }
  
  .crtf-section-badges-category {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 15px;
    /* background: rgba(255, 255, 255, 0.05); */
    border-radius: 12px;
  }
  
  .crtf-section-badges-category-logo {
    min-height: 100px;
    margin-bottom: 15px;
  }
  
  .crtf-section-badges-category-logo img {
    max-height: 100px;
  }
  
  .crtf-section-badges-category-text h4 {
    font-size: var(--font-size-s);
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
  }
  
  .crtf-section-badges-category-text p {
    font-size: var(--font-size-xs);
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
  }
  
  /* Download Proof Section Mobile */
  
  .proof-container {
    height: 30vh;
    padding: 0 20px;
  }
  
  .proof-container h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
  }
  
  .proof-container .btn-yellow {
    margin: 20px 0;
    padding: 15px 30px;
    font-size: var(--font-size-s);
    font-weight: 300;
  }
  
  /* Choose Proger Section Mobile */
  .choose-proger {
    height: 60vh;
    padding: 40px 0;
  }
  
  .choose-proger-content {
    gap: 6vh;
    padding: 0 20px;
  }
  
  .choose-proger-content h3 {
    font-size: var(--font-size-xs);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
  }
  
  .choose-proger-content .btn-yellow {
    padding: 15px 30px;
    font-size: var(--font-size-xs);
    font-weight: 300;
  }
}





/* ------------------------------
MAIN AND HONEYCOMB POSITIONING
-----------------------------
*/

@media (max-width: 1023px) {
  .hero-section-content {
    padding-left: 16px;
  }
}
main {
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  .hero-section-content {
    padding-left: 16px;
  }
}
@media (max-width: 767px) {
  .hero-section-content {
    padding-left: 8px;
  }
}
