:root{
    --black-100 : #000;
    --orange : #FF7A01;
    --offwhite : #aaaaaa;
}

.about-header-section{
    width: 100%;
    height: auto;
}
.about-header-area{
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('/assets/about-banner.webp');
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.about-header-img, .about-header-content{
    margin: auto;
}
.about-header-img img{
    max-height: 100vh;
    position: relative;
    left: -50px;
}
.about-header-content{
    width: 60%;
    margin: 0 auto;
    color: #fff
}

/* About AK Mishra Journey Section */
.ak-mishra-section{
    background-color: #fff;
    h2{
        color: var(--orange);
        text-align: center;
    }
    p{
        color: #000;
        font-size: 16px;
    }
}
.ak-mishra-content{
    width: 90%;
    height: auto;
    text-align: justify;
    margin: auto;
    padding: 50px 0;
    color: var(--offwhite);
    h3{
      color: var(--gray);
      text-align: left;
    }
    h5{
      color: var(--orange);
    }
    ul li, ol li{
      color: var(--gray);
    }
}

/* Art of Success Section */
.art-of-success{
    background-color: var(--lightgray);
    h2{
        color: var(--orange);
        text-align: center;
    }
    p{
      color: #000;
      font-size: 16px;
    }
}

/* Art of Success - Notes */
.art-0f-success-note{
  display: grid;
  grid-template-columns: repeat(1, auto);
  gap: 10px;
}
.notes{
  width: 100%;
  height: auto;
  background-color: #f1f0f0;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.158);
  cursor: pointer;
  transition: .4s ease;
  h3{
    font-size: 18px;
    color: var(--gray);
    span{
      color: var(--orange);
    }
  }
}
.notes:hover{
    background-color: var(--orange);
    color: #fff;
    span{
      color: #fff;
    }
    h3{
      color: #fff;
    }
    transition: .4s ease;
    transform: scale(.95);
  }


/* Features Art of Success Section */

.features-art-section{
    background-color: #fff;
    padding: 50px 0;
}
.features-art-area{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
    text-align: center;
    padding: 20px;
}

/* UI verse Effect */
.wallet {
    --bg-color: #ceb2fc;
    --bg-color-light: #f0e7ff;
    --text-color-hover: #fff;
    --box-shadow-color: var(--lightgray);
  }

  .features-art {
    width: 240px;
    height: 450px;
    background: #f1f0f0;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-out;
    text-decoration: none;
    padding: 20px;
    
  }
  
  .features-art:hover {
    transform: translateY(-5px) scale(1.005) translateZ(0);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11),
      0 24px 46px var(--box-shadow-color);
  }
  
  .features-art:hover .overlay {
    transform: scale(4) translateZ(0);
    background: var(--orange);
  }
  
  .features-art:hover .circle {
    background: #fff;
  }
  
  .features-art:hover .circle:after {
    background: var(--lightgray);
  }
  
  .features-art:hover h3{
    color: var(--text-color-hover);
  }
  .features-art:hover p {
    color: var(--text-color-hover);
  }
  
  .features-art h3 {
    font-size: 20px;
    color: #4c5656;
    font-weight: 700;
    z-index: 1000;
    margin-top: 20px;
    transition: color 0.3s ease-out;
  }
  
  .features-art p {
    color: var(--gray);
    font-size: 13px;
    font-weight: 400;
    z-index: 1000;
    transition: color 0.3s ease-out;
  }
  
  .circle {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--orange);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
  }
  
  .circle:after {
    content: "";
    width: 131;
    height: 131;
    display: block;
    position: absolute;
    background: var(--lightgray);
    border-radius: 50%;
    top: 7px;
    left: 7px;
    transition: opacity 0.3s ease-out;
  }
  
  .circle i {
    z-index: 10000;
    transform: translateZ(0);
    font-size: 35px;
    color: var(--orange);
  }
  
  .overlay {
    width: 200px;
    height: 200px;
    position: absolute;
    border-radius: 50%;
    top: 10px;
    left: 0;
    z-index: 0;
    transition: transform 0.3s ease-out;
  }

/* Trust Art of Success SEction */
.trust-section{
  width: 100%;
  height: auto;
  background-color: var(--gray);
}
.trust-area{
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 50px;
  column-gap: 50px;
}
.trust{
  width: 100%;
  color: var(--offwhite);
  h2{
    color: var(--orange);
  }
  p{
    text-align: justify;
    font-size: 16px;
    color: var(--lightgray)
  }
}

/* Chanakya IAS Academy Establishment Section */
.academy-area{
    width: 100%;
    height: auto;
    background-color: #fff;
    h2{
        color: var(--orange);
        text-align: center;
    }
    p{
      font-size: 16px;
      color: #000;
    }
}
.seminar-img img{
    max-width: 100%;
}
.academy-content{
    padding: 50px 80px;
    text-align: justify;
}



@media screen and (max-width: 768px) {
    .about-header-area{
        flex-direction: column-reverse;
    }
    .about-header-img img{
        max-width: 100%;
    }
    .about-header-content{
        width: 90%;
        margin: 0 auto;
        color: #fff
    }
    .about-header-content h1{
        font-size: 40px;
        margin-top: 20px;
    }

    /*  */
    .academy-content{
        padding: 20px;
    }

    .features-art-area, .trust-area{
      flex-direction: column;
    }

    .art-0f-success-note{
      grid-template-columns: repeat(1, auto);
    }
}

