/* =========================
PROFILE SECTION
========================= */

.profile-sec{

  position:relative;

  overflow:hidden;

  padding:110px 20px;

  background:
  linear-gradient(
    180deg,
    #071226 0%,
    #050816 100%
  );

}

/* =========================
GLOW
========================= */

.profile-glow{

  position:absolute;

  border-radius:50%;

  filter:blur(120px);

}

/* LEFT */

.glow-left{

  top:-120px;
  left:-120px;

  width:320px;
  height:320px;

  background:
  rgba(37,99,235,0.10);

}

/* RIGHT */

.glow-right{

  right:-120px;
  bottom:-120px;

  width:340px;
  height:340px;

  background:
  rgba(168,85,247,0.10);

}

/* =========================
WRAP
========================= */

.profile-wrap{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  40% 60%;

  gap:60px;

  align-items:center;

}

/* =========================
IMAGE
========================= */

.profile-img{

  position:relative;

  overflow:hidden;

  border-radius:34px;

}

/* IMAGE */

.profile-img img{

  width:100%;

  height:760px;

  object-fit:cover;

  display:block;

  border-radius:34px;

  border:
  1px solid rgba(255,255,255,0.08);

  transition:0.45s ease;

}

/* HOVER */

.profile-img:hover img{

  transform:scale(1.03);

}

/* STATUS */

.profile-status{

  position:absolute;

  left:24px;
  top:24px;

  display:flex;

  align-items:center;

  gap:12px;

  padding:14px 20px;

  border-radius:60px;

  background:
  rgba(255,255,255,0.10);

  backdrop-filter:blur(14px);

  border:
  1px solid rgba(255,255,255,0.10);

  color:#ffffff;

  font-size:14px;

  font-weight:500;

}

/* DOT */

.status-dot{

  width:10px;
  height:10px;

  border-radius:50%;

  background:#22C55E;

  box-shadow:
  0 0 12px #22C55E;

}

/* =========================
CONTENT
========================= */

.profile-con{

  position:relative;

}

/* TAG */

.profile-tag{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:13px 24px;

  margin-bottom:28px;

  border-radius:60px;

  background:
  rgba(255,255,255,0.05);

  backdrop-filter:blur(12px);

  border:
  1px solid rgba(255,255,255,0.08);

  color:#60A5FA;

  font-size:14px;

  font-weight:500;

}

/* TITLE */

.profile-top h2{

  margin-bottom:26px;

  font-size:52px;

  line-height:1.14;

  color:#ffffff;

}

/* TEXT */

.profile-top p{

  margin-bottom:38px;

  font-size:17px;

  line-height:1.95;

  color:#CBD5E1;

}

/* =========================
INFO GRID
========================= */

.profile-info-grid{

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:22px;

  margin-bottom:34px;

}

/* ITEM */

.profile-info{

  padding:24px;

  border-radius:24px;

  background:
  rgba(255,255,255,0.05);

  backdrop-filter:blur(14px);

  border:
  1px solid rgba(255,255,255,0.08);

}

/* LABEL */

.profile-info span{

  display:block;

  margin-bottom:12px;

  font-size:14px;

  color:#60A5FA;

}

/* VALUE */

.profile-info strong{

  font-size:18px;

  color:#ffffff;

  font-weight:600;

}

/* =========================
PILLS
========================= */

.profile-pills{

  display:flex;

  flex-wrap:wrap;

  gap:16px;

  margin-bottom:40px;

}

/* PILL */

.profile-pills span{

  padding:14px 22px;

  border-radius:60px;

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.08);

  color:#E2E8F0;

  font-size:14px;

}

/* =========================
BUTTONS
========================= */

.profile-btns{

  display:flex;

  gap:18px;

  flex-wrap:wrap;

}

/* BUTTON */

.profile-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  min-width:200px;

  height:60px;

  padding:0 34px;

  border-radius:60px;

  text-decoration:none;

  font-size:15px;

  font-weight:600;

  transition:0.35s ease;

}

/* PRIMARY */

.primary-btn{

  background:
  linear-gradient(
    135deg,
    #2563EB,
    #60A5FA
  );

  color:#ffffff;

}

/* SECONDARY */

.secondary-btn{

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.08);

  color:#ffffff;

}

/* HOVER */

.profile-btn:hover{

  transform:
  translateY(-4px);

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  .profile-wrap{

    grid-template-columns:1fr;

  }

  .profile-top h2{

    font-size:42px;

  }

  .profile-img img{

    height:620px;

  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .profile-sec{

    padding:85px 20px;

  }

  .profile-wrap{

    gap:40px;

  }

  .profile-top h2{

    font-size:34px;

    line-height:1.22;

  }

  .profile-top p{

    font-size:16px;

    line-height:1.85;

  }

  .profile-img img{

    height:500px;

  }

  .profile-info-grid{

    grid-template-columns:1fr;

  }

  .profile-btn{

    width:100%;

  }

}
/* =========================
ABOUT PROFILE SECTION
========================= */

.about-profile-sec{

  position:relative;

  overflow:hidden;

  padding:110px 20px;

  background:
  linear-gradient(
    180deg,
    #050816 0%,
    #071226 100%
  );

}

/* =========================
GLOW
========================= */

.about-glow{

  position:absolute;

  border-radius:50%;

  filter:blur(120px);

}

/* LEFT */

.glow-left{

  top:-120px;
  left:-120px;

  width:320px;
  height:320px;

  background:
  rgba(37,99,235,0.10);

}

/* RIGHT */

.glow-right{

  right:-120px;
  bottom:-120px;

  width:340px;
  height:340px;

  background:
  rgba(168,85,247,0.10);

}

/* =========================
WRAP
========================= */

.about-profile-wrap{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  58% 42%;

  gap:60px;

  align-items:center;

}

/* =========================
CONTENT
========================= */

.about-profile-con{

  position:relative;

}

/* TAG */

.about-profile-tag{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:13px 24px;

  margin-bottom:28px;

  border-radius:60px;

  background:
  rgba(255,255,255,0.05);

  backdrop-filter:blur(12px);

  border:
  1px solid rgba(255,255,255,0.08);

  color:#60A5FA;

  font-size:14px;

  font-weight:500;

}

/* TITLE */

.about-profile-con h2{

  margin-bottom:30px;

  font-size:48px;

  line-height:1.16;

  color:#ffffff;

}

/* TEXT */

.about-profile-text{

  display:flex;

  flex-direction:column;

  gap:24px;

  margin-bottom:36px;

}

.about-profile-text p{

  font-size:17px;

  line-height:1.95;

  color:#CBD5E1;

}

/* =========================
PILLS
========================= */

.about-profile-pills{

  display:flex;

  flex-wrap:wrap;

  gap:16px;

}

/* PILL */

.about-profile-pills span{

  padding:14px 22px;

  border-radius:60px;

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.08);

  color:#E2E8F0;

  font-size:14px;

}

/* =========================
IMAGES
========================= */

.about-profile-imgs{

  position:relative;

  min-height:760px;

}

/* BIG */

.about-big-img{

  position:absolute;

  top:0;
  right:0;

  width:82%;

}

/* SMALL */

.about-small-img{

  position:absolute;

  left:0;
  bottom:0;

  width:58%;

}

/* IMAGE */

.about-profile-imgs img{

  width:100%;

  border-radius:34px;

  display:block;

  object-fit:cover;

  border:
  1px solid rgba(255,255,255,0.08);

  transition:0.45s ease;

}

/* BIG IMAGE HEIGHT */

.about-big-img img{

  height:560px;

}

/* SMALL IMAGE HEIGHT */

.about-small-img img{

  height:300px;

}

/* HOVER */

.about-profile-imgs img:hover{

  transform:scale(1.03);

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  .about-profile-wrap{

    grid-template-columns:1fr;

  }

  .about-profile-con h2{

    font-size:40px;

  }

  .about-profile-imgs{

    min-height:680px;

  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .about-profile-sec{

    padding:85px 20px;

  }

  .about-profile-wrap{

    gap:40px;

  }

  .about-profile-con h2{

    font-size:34px;

    line-height:1.24;

  }

  .about-profile-text p{

    font-size:16px;

    line-height:1.85;

  }

  .about-profile-imgs{

    min-height:auto;

    display:flex;

    flex-direction:column;

    gap:20px;

  }

  .about-big-img,
  .about-small-img{

    position:relative;

    width:100%;

  }

  .about-big-img img{

    height:430px;

  }

  .about-small-img img{

    height:320px;

  }

}

/* =========================
SERVICE PILLS SECTION
========================= */

.service-pill-sec{

  position:relative;

  overflow:hidden;

  padding:100px 20px;

  background:
  linear-gradient(
    180deg,
    #071226 0%,
    #050816 100%
  );

}

/* WRAP */

.service-pill-wrap{

  max-width:1100px;

  margin:auto;

  text-align:center;

}

/* =========================
HEAD
========================= */

.service-pill-head{

  margin-bottom:50px;

}

/* TAG */

.service-pill-tag{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:13px 24px;

  margin-bottom:26px;

  border-radius:60px;

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(12px);

  color:#60A5FA;

  font-size:14px;

  font-weight:500;

}

/* TITLE */

.service-pill-head h2{

  font-size:46px;

  line-height:1.18;

  color:#ffffff;

}

/* =========================
GRID
========================= */

.service-pill-grid{

  display:flex;

  align-items:center;

  justify-content:center;

  flex-wrap:wrap;

  gap:22px;

}

/* PILL */

.service-pill{

  padding:18px 28px;

  border-radius:60px;

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(14px);

  color:#ffffff;

  font-size:15px;

  font-weight:500;

  transition:0.35s ease;

}

/* HOVER */

.service-pill:hover{

  transform:
  translateY(-5px);

  border-color:
  rgba(255,255,255,0.14);

  box-shadow:
  0 15px 35px rgba(0,0,0,0.25);

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  .service-pill-head h2{

    font-size:40px;

  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .service-pill-sec{

    padding:85px 20px;

  }

  .service-pill-head{

    margin-bottom:40px;

  }

  .service-pill-head h2{

    font-size:34px;

    line-height:1.24;

  }

  .service-pill-grid{

    gap:16px;

  }

  .service-pill{

    width:100%;

    justify-content:center;

    font-size:14px;

    padding:16px 22px;

  }

}
/* =========================
SERVICES OFFERED
========================= */

.offer-sec{

  padding:100px 20px;

  background:
  linear-gradient(
    180deg,
    #050816 0%,
    #071226 100%
  );

}

/* WRAP */

.offer-wrap{

  max-width:900px;

  margin:auto;

  padding:45px;

  border-radius:34px;

  background:
  linear-gradient(
    135deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );

  border:
  1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(14px);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.30);

}

/* =========================
HEAD
========================= */

.offer-head{

  display:flex;

  align-items:center;

  gap:18px;

  margin-bottom:38px;

}

/* ICON BOX */

.offer-icon{

  width:52px;
  height:52px;

  border-radius:18px;

  display:flex;

  align-items:center;

  justify-content:center;

  background:
  linear-gradient(
    135deg,
    rgba(139,92,246,0.25),
    rgba(59,130,246,0.18)
  );

  color:#A855F7;

  font-size:20px;

}

/* TITLE */

.offer-head h2{

  font-size:40px;

  color:#ffffff;

  white-space:nowrap;

}

/* LINE */

.offer-line{

  flex:1;

  height:1px;

  background:
  rgba(255,255,255,0.08);

}

/* =========================
GRID
========================= */

.offer-grid{

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:18px;

}

/* ITEM */

.offer-item{

  display:flex;

  align-items:center;

  gap:14px;

  min-height:74px;

  padding:0 24px;

  border-radius:22px;

  background:
  rgba(255,255,255,0.03);

  border:
  1px solid rgba(255,255,255,0.07);

  transition:0.35s ease;

}

/* HOVER */

.offer-item:hover{

  transform:
  translateY(-5px);

  border-color:
  rgba(255,255,255,0.12);

  background:
  rgba(255,255,255,0.05);

}

/* ICON */

.offer-item i{

  color:#10B981;

  font-size:18px;

}

/* TEXT */

.offer-item span{

  font-size:18px;

  color:#ffffff;

  font-weight:500;

  line-height:1.4;

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  .offer-grid{

    grid-template-columns:
    repeat(2,1fr);

  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .offer-sec{

    padding:85px 20px;

  }

  .offer-wrap{

    padding:30px 22px;

  }

  .offer-head{

    gap:14px;

    margin-bottom:30px;

  }

  .offer-head h2{

    font-size:28px;

  }

  .offer-grid{

    grid-template-columns:1fr;

  }

  .offer-item{

    min-height:68px;

    padding:0 20px;

  }

  .offer-item span{

    font-size:16px;

  }

}