/* ==================================================
   ABOUT PAGE
================================================== */

/* ================= MAIN ABOUT LAYOUT ================= */

.about-container{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  width:100%;
  max-width:1500px;
  margin:0 auto;
  padding:120px 80px;
  gap:80px;
  position:relative;
  z-index:0;
}

/* ================= PROFILE CARD ================= */

.about-profile{
  width:100%;
  min-width:320px;
  max-width:450px;
  height:auto;
  padding:30px 40px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  position:relative;
  z-index:2;
  background:#fff;
  box-shadow:0 3px 8px rgba(0,0,0,.24);
}

.about-profile h1{
  margin-top:20px;
  font-family:Poppins,sans-serif;
  font-size:22px;
  font-weight:700;
  text-align:center;
}

.about-profile h4{
  margin:0;
  color:gray;
  font-family:Poppins,sans-serif;
  font-size:15px;
  font-weight:300;
  text-align:center;
}

.about-profile h3{
  margin:0;
  font-family:Poppins,sans-serif;
  letter-spacing:1px;
  text-align:center;
}

/* ================= ONLINE STATUS ================= */

.online-container{
  width:100%;
  display:flex;
  justify-content:flex-end;
  margin-bottom:10px;
}

.online-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  border:1.5px solid #22c55e;
  border-radius:50px;
  color:#22c55e;
  font-family:Montserrat,sans-serif;
  font-size:14px;
  font-weight:500;
  letter-spacing:1px;
}

.online-status p{
  margin:0;
}

.online-status i{
  font-size:9px;
}

/* ================= PROFILE IMAGE ================= */

.profile-img{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:0;
}

.profile-img img{
  display:block;
  width:100%;
  max-width:300px;
  height:auto;
}

/* ================= SERVICES BUTTON ================= */

.services-button-about{
  width:100%;
  margin-top:20px;
  padding:12px 20px;
  display:block;
  position:relative;
  z-index:1;
  overflow:hidden;
  border:2px solid gray;
  color:gray;
  text-align:center;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  letter-spacing:1px;
  transition:.3s ease;
}

.services-button-about:hover{
  color:#fff;
  background:#8a2cff;
  border-color:#000;
}

/* ================= DECORATIVE LINE ================= */

.deco-line-about{
  width:100%;
  height:2px;
  margin-top:30px;
  background:#dcdcdc;
}

/* ================= CONTACT INFORMATION ================= */

.contact-details{
  width:100%;
  padding:20px 10px 0;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.info-row{
  width:100%;
  display:grid;
  grid-template-columns:22px 65px minmax(0,1fr);
  align-items:center;
  column-gap:10px;
}

.info-row i{
  width:22px;
  margin:0;
  color:#4a4a4a;
  text-align:center;
  font-size:16px;
}

.info-label,
.info-value{
  min-width:0;
  margin:0;
  color:#3d3d3d;
  font-family:Roboto,sans-serif;
  font-size:15px;
  line-height:1.5;
}

.info-label{
  white-space:nowrap;
}

.info-value{
  text-decoration:none;
  word-break:normal;
  overflow-wrap:normal;
}

.email-value{
  white-space:nowrap;
}

/* ================= SOCIAL ICONS ================= */

.profile-info{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px 0 0;
}

.social-icons{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  padding-top:15px;
}

.social-icons a{
  display:flex;
  align-items:center;
  justify-content:center;
}

.social-icons img{
  width:30px;
  height:30px;
  object-fit:contain;
  cursor:pointer;
  transition:.3s ease;
}

.social-icons img:hover{
  transform:translateY(-5px);
  opacity:.8;
}

/* ================= GET IN TOUCH BUTTON ================= */

.about-btn{
  width:100%;
  margin-top:30px;
  padding:14px 20px;
  border-radius:3px;
  background:#8a2cff;
  color:#fff;
  text-align:center;
  text-decoration:none;
  transition:.3s ease;
}

.about-btn:hover{
  background:#000;
  color:#fff;
}

/* ================= ABOUT TEXT ================= */

.about-text{
  flex:2;
  min-width:310px;
  display:flex;
  flex-direction:column;
  gap:30px;
  text-align:center;
}

.about-text > h1{
  font-size:38px;
  letter-spacing:2px;
}

.about-text > p{
  color:#000;
  font-family:Poppins,sans-serif;
  font-size:20px;
  font-weight:600;
}

.about-text > h2{
  color:gray;
  font-family:Poppins,sans-serif;
  font-size:18px;
  font-weight:300;
  line-height:1.7;
}

/* ================= ABOUT STATS ================= */

.stats{
  margin-top:20px;
  margin-bottom:80px;
  padding:50px 0;
  display:flex;
  flex-direction:column;
  border-radius:20px;
  color:#fff;
  background:linear-gradient(
    135deg,
    #12131b 0%,
    #1d1637 45%,
    #41205c 100%
  );
}

.about-stats{
  margin-top:40px;
  margin-bottom:40px;
  padding:35px 0;
  border-radius:15px;
}

.header-stats{
  margin:0 auto;
  text-align:center;
  font-size:22px;
}

.about-stats .header-stats h1{
  font-size:28px;
}

.stats-box-wrap{
  display:flex;
  justify-content:space-around;
  flex-wrap:wrap;
  padding:80px;
}

.about-stats .stats-box-wrap{
  padding:40px;
  gap:20px;
}

.counter-card{
  flex:1;
  min-width:180px;
  text-align:center;
}

.about-stats .counter-card{
  min-width:130px;
}

.counter-card h1{
  margin-bottom:10px;
  font-family:Poppins,sans-serif;
  font-size:45px;
}

.about-stats .counter-card h1{
  margin-bottom:5px;
  font-size:32px;
}

.counter-card p{
  margin-bottom:10px;
  color:#d1d1d1;
  font-family:Poppins,sans-serif;
  font-size:16px;
}

.about-stats .counter-card p{
  font-size:13px;
}

.circle-icon{
  width:85px;
  height:85px;
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(142,74,255,.18);
}

.about-stats .circle-icon{
  width:60px;
  height:60px;
  margin-bottom:15px;
}

.circle-icon svg{
  width:50px;
  height:50px;
  margin:0;
  color:#b36bff;
  stroke:currentColor;
  stroke-width:2;
  filter:
    drop-shadow(0 0 4px rgba(217,167,255,.6))
    drop-shadow(0 0 10px rgba(138,66,255,.35));
}

.about-stats .circle-icon svg{
  width:35px;
  height:35px;
}

.service-cta{
  width:fit-content;
  max-width:300px;
  margin:0 auto;
  padding:13px 50px;
  border-radius:10px;
  background:#8a2cff;
  color:#fff;
  text-align:center;
  text-decoration:none;
  letter-spacing:1px;
  transition:.3s ease;
}

.about-stats .service-cta{
  padding:10px 35px;
  font-size:14px;
}

.service-cta:hover{
  background:#000;
}

/* ================= ABOUT FOUNDER ================= */

.about-founder{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.about-founder p{
  font-size:20px;
  font-weight:700;
}

.about-founder h1{
  color:#343434;
  font-family:Poppins,sans-serif;
  font-size:18px;
  font-weight:500;
  line-height:1.8;
}

.about-founder span{
  color:#000;
  font-family:Poppins,sans-serif;
  font-size:18px;
  font-weight:700;
}

/* ================= PROCESS SECTION ================= */

.process-section{
  padding:80px 50px;
  border-radius:20px;
  color:#fff;
  background:linear-gradient(135deg,#13151d,#211736,#3c2158);
}

.process-title{
  margin-bottom:60px;
  text-align:center;
  font:37px "Bebas Neue",sans-serif;
  letter-spacing:2px;
}

.process-container{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
}

.process-step{
  width:240px;
  padding:30px 20px;
  border-radius:15px;
  background:rgba(255,255,255,.04);
  text-align:center;
  transition:.3s ease;
}

.process-step:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,.08);
  box-shadow:0 15px 30px rgba(0,0,0,.3);
}

.step-icon{
  width:80px;
  height:80px;
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(138,44,255,.15);
}

.step-icon svg{
  width:38px;
  height:38px;
  color:#b36bff;
}

.process-step:hover .step-icon{
  background:#8a2cff;
}

.process-step:hover svg{
  color:#fff;
}

.process-step h3{
  margin-bottom:12px;
  font:600 30px Poppins,sans-serif;
}

.process-step p{
  color:#d7d7d7;
  font:15px Roboto,sans-serif;
  line-height:1.6;
}

.process-arrow svg{
  width:35px;
  height:35px;
  color:#b36bff;
}

.arrow-mobile{
  display:none;
}

.process-btn{
  width:fit-content;
  margin:60px auto 0;
  padding:14px 45px;
  display:block;
  border-radius:10px;
  background:#8a2cff;
  color:#fff;
  text-align:center;
  text-decoration:none;
  font:600 15px Poppins,sans-serif;
  transition:.3s ease;
}

.process-btn:hover{
  background:#000;
}

/* ==================================================
   TABLET
================================================== */

@media(max-width:1024px){

  .about-container{
    padding:90px 40px;
    gap:50px;
  }

  .about-profile{
    max-width:380px;
  }

  .about-text > h1{
    font-size:34px;
  }

  .about-text > p{
    font-size:18px;
  }

  .about-text > h2{
    font-size:17px;
  }

  .about-stats .header-stats h1{
    font-size:24px;
  }

  .about-stats .counter-card h1{
    font-size:28px;
  }

  .about-stats .counter-card p{
    font-size:12px;
  }

  .stats-box-wrap{
    gap:30px;
  }

  .counter-card{
    max-width:180px;
  }

  .process-section{
    padding:70px 35px;
  }

  .process-title{
    font-size:34px;
  }

  .process-step{
    width:210px;
  }
}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:900px){

  .about-container{
    flex-direction:column;
    align-items:center;
    padding:80px 20px;
    gap:80px;
    overflow:hidden;
  }

  .about-profile{
    width:100%;
    max-width:420px;
    min-width:0;
  }

  .about-text{
    width:100%;
    min-width:0;
    overflow:hidden;
  }
}

@media(max-width:768px){

  .about-container{
    padding:70px 20px;
    gap:60px;
  }

  .about-profile{
    width:100%;
    max-width:400px;
    padding:30px 25px;
  }

  .online-status{
    font-size:13px;
  }

  .profile-img img{
    max-width:240px;
  }

  .services-button-about,
  .about-btn{
    width:100%;
  }

  .contact-details{
    padding:20px 0 0;
  }

  .info-row{
    grid-template-columns:20px 52px minmax(0,1fr);
    column-gap:8px;
  }

  .info-row i{
    width:20px;
    font-size:15px;
  }

  .info-label{
    font-size:14px;
  }

  .info-value{
    font-size:14px;
  }

  .email-value{
    font-size:clamp(11px,3vw,14px);
    letter-spacing:-.2px;
    white-space:nowrap;
  }

  .social-icons{
    gap:22px;
  }

  .social-icons img{
    width:34px;
    height:34px;
  }

  .about-text > h1{
    font-size:30px;
  }

  .about-text > p{
    font-size:17px;
  }

  .about-text > h2{
    font-size:16px;
    line-height:1.8;
  }

  .about-stats{
    padding:25px 15px;
  }

  .about-stats .header-stats h1{
    font-size:22px;
  }

  .about-stats .stats-box-wrap{
    padding:20px 10px;
    gap:18px;
  }

  .about-stats .counter-card{
    width:100%;
    max-width:220px;
  }

  .about-stats .counter-card h1{
    font-size:26px;
  }

  .about-stats .counter-card p{
    font-size:13px;
  }

  .about-stats .circle-icon{
    width:55px;
    height:55px;
  }

  .about-stats .circle-icon svg{
    width:28px;
    height:28px;
  }

  .about-founder{
    gap:15px;
  }

  .about-founder p{
    font-size:18px;
  }

  .about-founder h1{
    font-size:16px;
    line-height:1.8;
  }

  .about-founder span{
    font-size:16px;
  }

  .process-section{
    padding:60px 20px;
  }

  .process-title{
    margin-bottom:40px;
    font-size:30px;
  }

  .process-container{
    flex-direction:column;
  }

  .process-step{
    width:100%;
    max-width:320px;
  }

  .process-step h3{
    font-size:26px;
  }

  .process-step p{
    font-size:14px;
  }

  .process-arrow{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .arrow-desktop{
    display:none;
  }

  .arrow-mobile{
    display:block;
  }

  .process-btn{
    width:100%;
    max-width:300px;
  }
}

/* ==================================================
   SMALL PHONES
================================================== */

@media(max-width:480px){

  .about-container{
    padding:60px 15px;
  }

  .about-profile{
    padding:25px 18px;
  }

  .profile-img img{
    max-width:200px;
  }

  .contact-details{
    padding-left:0;
    padding-right:0;
  }

  .info-row{
    grid-template-columns:20px 50px minmax(0,1fr);
    column-gap:7px;
  }

  .info-label{
    font-size:14px;
  }

  .info-value{
    font-size:13px;
  }

  .email-value{
    font-size:clamp(10.5px,2.9vw,13px);
    white-space:nowrap;
  }

  .about-text > h1{
    font-size:27px;
  }

  .about-text > p{
    font-size:16px;
  }

  .about-text > h2{
    font-size:15px;
  }

  .about-founder p{
    font-size:17px;
  }

  .about-founder h1{
    font-size:15px;
  }

  .process-title{
    font-size:28px;
  }

  .process-step{
    padding:25px 18px;
  }

  .step-icon{
    width:70px;
    height:70px;
  }

  .step-icon svg{
    width:30px;
    height:30px;
  }
}