/* ===============================
   RESET
================================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#000000;
  color:#f0f0f0;
}
button{
  font-family:'Poppins',sans-serif;
}
.container{
  max-width:950px;
  margin:0 auto;
}
.logo-outer{
  display:flex;
  justify-content:center;
  padding-bottom:20px;
}
.logo{
  width:150px;
}
/* ===============================
   HERO SECTION
================================= */
.socialmentor-hero {
  width: 100%;
  background: #000;
  padding: 30px 20px;
  overflow: hidden;
}

/* ===============================
   WORKSHOP LABEL
================================= */
.socialmentor-workshop-label {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.socialmentor-workshop-label span {
  display: inline-block;
  background: linear-gradient(135deg, #C39A5C, #d4b06c);
  color: #000;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 65px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(195,154,92,0.35);
}

/* ===============================
   TITLE BLOCK
================================= */
.socialmentor-hero-title-block {
  text-align: center;
  max-width: 921px;
  margin: 0 auto 10px;
}

.socialmentor-title {
  font-size: 41px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}

.socialmentor-title span {
  color: #C39A5C;
  display: block;
  text-decoration: underline;
}

.socialmentor-hero-title-block p {
  font-size: 17px;
  color: #aaa;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
}

/* ==========================================
   HERO IMAGE + FLOATING BADGES SECTION
========================================== */
.sm-ring-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 30px auto 0;
}

.sm-ring-center {
  position: relative;
  width: 550px;
  height: 550px;
}

/* Glow effect */
.sm-ring-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(195,154,92,0.22) 0%,
    rgba(195,154,92,0.08) 45%,
    transparent 70%
  );
  z-index: 1;
}

/* Main ring */
.sm-ring-stroke {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 10px solid #C39A5C;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #111;
  overflow: visible; /* allows head to come outside */
}

/* Person image */
.sm-ring-photo {
  position: absolute;
  width: 100%;
  height: auto;
  top: -35px;   /* pushes head outside ring */
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: top center;
  z-index: 3;
}
/* ==========================================
   FLOATING BADGES
========================================== */
.sm-floating-badge {
  position: absolute;
  background: linear-gradient(135deg, #C39A5C, #d4b06c);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  padding: 16px 26px;
  border-radius: 40px;
  text-align: center;
  min-width: 230px;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(195,154,92,0.25);
}

/* Badge positions */
.badge-left-top {
  top: 90px;
  left: -120px;
}

.badge-left-bottom {
  bottom: 110px;
  left: -140px;
}

.badge-right-top {
  top: 90px;
  right: -120px;
}

.badge-right-bottom {
  bottom: 110px;
  right: -140px;
}

/* ==========================================
   NAME CARD
========================================== */
.socialmentor-namecard-wrap {
  display: flex;
  justify-content: center;
  margin-top: -45px;
  position: relative;
  z-index: 10;
}

.socialmentor-namecard {
  background: #1a1a1a;
  border: 1px solid #C39A5C;
  border-radius: 18px;
  padding: 22px 40px;
  text-align: center;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 8px 30px rgba(195,154,92,0.15);
}

.socialmentor-namecard h3 {
  font-size: 22px;
  font-weight: 700;
  color: #C39A5C;
  margin-bottom: 8px;
}

.socialmentor-namecard p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
}

/* ==========================================
   TABLET RESPONSIVE
========================================== */
@media (max-width: 992px) {
  .socialmentor-title {
    font-size: 38px;
  }

  .sm-ring-center {
    width: 430px;
    height: 430px;
  }

  .sm-ring-stroke {
    width: 320px;
    height: 320px;
  }

  .sm-floating-badge {
    min-width: 180px;
    font-size: 14px;
    padding: 12px 18px;
  }

  .badge-left-top {
    left: -70px;
  }

  .badge-left-bottom {
    left: -90px;
  }

  .badge-right-top {
    right: -70px;
  }

  .badge-right-bottom {
    right: -90px;
  }
}

/* ==========================================
   MOBILE RESPONSIVE
========================================== */
@media (max-width: 768px) {
  .socialmentor-hero {
    padding: 40px 16px;
  }
  .sm-logomain {
    width: 452px!important;
}

  .socialmentor-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .socialmentor-hero-title-block p {
    font-size: 15px;
  }

  .socialmentor-workshop-label span {
    font-size: 14px;
    padding: 10px 18px;
  }

  .sm-ring-center {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sm-ring-glow {
    display: none;
  }

  .sm-ring-stroke {
    position: relative;
    width: 260px;
    height: 260px;
    left: auto;
    top: auto;
    transform: none;
    margin: 20px 0;
  }

  /* badges stack in mobile */
  .sm-floating-badge {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    min-width: 220px;
    margin: 8px auto;
    font-size: 13px;
    padding: 12px 16px;
  }

  .socialmentor-namecard-wrap {
    margin-top: 20px;
  }

  .socialmentor-namecard {
    padding: 18px 20px;
  }

  .socialmentor-namecard h3 {
    font-size: 18px;
  }

  .socialmentor-namecard p {
    font-size: 13px;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */
@media (max-width: 480px) {
  .socialmentor-title {
    font-size: 26px;
  }

  .sm-ring-stroke {
    width: 220px;
    height: 220px;
  }

  .sm-floating-badge {
    min-width: 180px;
    font-size: 12px;
  }
}
/* ===============================
   EVENT SECTION
================================= */
.socialmentor-event-section {
  padding: 5px 20px;
  display: flex;
  justify-content: center;
  background: #000000;
}
 
.socialmentor-event-container {
  max-width: 850px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
 
.socialmentor-event-card {
  background: #000000;
  border-radius: 14px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid #C39A5C;
  box-shadow: 0 0 0 1px rgba(195,154,92,0.15), 0 6px 18px rgba(195,154,92,0.15);
  transition: all .25s ease;
  gap: 6px;
}
 
.socialmentor-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(195,154,92,0.3), 0 10px 22px rgba(195,154,92,0.25);
}
 
/* Hide the emoji icon */
.socialmentor-event-icon i{
  font-size: 20px;
}
 
.socialmentor-event-title {
  font-size: 17px;
  font-weight: 800;
  color: #C39A5C;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}
 
/* Add colon via CSS so you don't need to change HTML */
.socialmentor-event-title::after {
  content: ":";
}
 
.socialmentor-event-value {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
 
@media (max-width: 768px) {
  .socialmentor-event-container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .socialmentor-event-value {
    font-size: 17px;
  }
  .socialmentor-event-title {
    font-size: 14px;
  }
}
 
@media (max-width: 480px) {
  .socialmentor-event-container {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .socialmentor-event-card {
    padding: 20px 14px;
  }
  .socialmentor-event-value {
    font-size: 14px;
  }
  .socialmentor-event-title {
    font-size: 12px;
  }
}

/* ===============================
   PRESS SECTION
================================= */
.socialmentor-press-section{
  padding:80px 20px;
  text-align:center;
  overflow:hidden;
  background:#0d0d0d;
}

.socialmentor-press-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:50px;
  color:#ffffff;
}

.socialmentor-press-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

.socialmentor-press-track{
  display:flex;
  align-items:center;
  gap:80px;
  width:max-content;
  animation:socialmentor-press-scroll 25s linear infinite;
}

.socialmentor-press-logo{
  height:45px;
  object-fit:contain;
  opacity:0.75;
  transition:all .3s ease;
  filter:brightness(0) invert(1);
}

.socialmentor-press-logo:hover{
  opacity:1;
  transform:scale(1.05);
}

@keyframes socialmentor-press-scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* ===============================
   CTA SECTION
================================= */
.socialmentor-cta-section{
  padding:50px 20px 80px;
  text-align:center;
  background:#000000;
}

.socialmentor-cta-button{
  background:linear-gradient(135deg,#C39A5C,#d4b06c);
  border:2px solid #C39A5C;
  padding:16px 40px;
  font-size:18px;
  font-weight:600;
  border-radius:10px;
  cursor:pointer;
  color:#000;
  box-shadow:0 4px 20px rgba(195,154,92,0.4);
  transition:all .25s ease;
}

.socialmentor-cta-button:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 24px rgba(195,154,92,0.5);
}

.socialmentor-cta-offer{
  margin-top:12px;
  font-size:13px;
  color:#aaa;
}

.socialmentor-cta-offer span{
  text-decoration:line-through;
  color:#cc0000;
  font-weight:600;
}

/* ===============================
   LEARN SECTION
================================= */
.socialmentor-learn-section{
  padding:90px 20px;
  background:#0d0d0d;
  text-align:center;
}

.socialmentor-learn-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:50px;
  color:#ffffff;
}

.socialmentor-learn-grid{
  max-width:900px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

.socialmentor-learn-card{
  background:#1a1a1a;
  padding:28px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,0.4);
  text-align:left;
  border:1px solid #2a2a2a;
}

.socialmentor-learn-time{
  display:inline-block;
  background:#C39A5C;
  color:#000;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
  margin-bottom:15px;
}

.socialmentor-learn-heading{
  font-size:18px;
  font-weight:600;
  margin-bottom:15px;
  color:#ffffff;
}

.socialmentor-learn-divider{
  border:none;
  border-top:1px solid #333;
  margin:15px 0 18px;
}

.socialmentor-learn-list{
  list-style:none;
  padding:0;
  margin:0;
}

.socialmentor-learn-list li{
  position:relative;
  padding-left:22px;
  margin-bottom:12px;
  font-size:14px;
  line-height:1.5;
  color:#cccccc;
}

.socialmentor-learn-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-size:14px;
  color:#C39A5C;
}

.socialmentor-learn-cta{
  margin-top:60px;
}

.socialmentor-learn-button{
  background:linear-gradient(135deg,#C39A5C,#d4b06c);
  border:2px solid #C39A5C;
  padding:16px 40px;
  color:#000;
  font-size:18px;
  font-weight:600;
  border-radius:10px;
  cursor:pointer;
  box-shadow:0 6px 20px rgba(195,154,92,0.4);
}

.socialmentor-learn-offer{
  margin-top:12px;
  font-size:13px;
  color:#aaa;
}

.socialmentor-learn-offer span{
  text-decoration:line-through;
  color:#c50000;
}

@media(max-width:768px){
  .socialmentor-learn-grid{
    grid-template-columns:1fr;
  }
  .socialmentor-learn-title{
    font-size:26px;
  }
}

/* ===============================
   BUSINESS SECTION
================================= */
.socialmentor-business-section{
  padding:100px 20px;
  text-align:center;
  background:#000000;
}

.socialmentor-business-title{
  font-size:34px;
  font-weight:700;
  margin-bottom:10px;
  color:#ffffff;
}

.socialmentor-business-underline{
  width:70px;
  height:4px;
  background:#C39A5C;
  margin:15px auto 60px auto;
  border-radius:4px;
}

.socialmentor-business-diagram{
  position:relative;
  width:500px;
  height:350px;
  margin:auto;
}

.socialmentor-business-circle{
  position:absolute;
  top:120px;
  left:50%;
  transform:translateX(-50%);
  width:180px;
  height:180px;
  background:linear-gradient(135deg,#C39A5C,#d4b06c);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#000;
  font-weight:700;
  font-size:18px;
  text-align:center;
  box-shadow:0 0 0 12px rgba(195,154,92,0.15);
}

.socialmentor-business-box{
  position:absolute;
  background:#1a1a1a;
  padding:16px 22px;
  border-radius:10px;
  border:2px dashed #C39A5C;
  font-weight:500;
  color:#ffffff;
  box-shadow:0 5px 12px rgba(0,0,0,0.4);
}

.socialmentor-top-box{
  top:0;
  left:50%;
  transform:translateX(-50%);
}

.socialmentor-left-box{
  left:-69px;
  top:180px;
}

.socialmentor-right-box{
  right:-106px;
  top:180px;
}

.socialmentor-business-diagram::before,
.socialmentor-business-diagram::after{
  content:"";
  position:absolute;
  background:#C39A5C;
  height:2px;
}

.socialmentor-business-diagram::before{
  width:120px;
  top:210px;
  left:90px;
}

.socialmentor-business-diagram::after{
  width:94px;
  top:210px;
  right:67px;
}

.socialmentor-top-box::after{
  content:"";
  position:absolute;
  width:2px;
  height:60px;
  background:#C39A5C;
  left:50%;
  bottom:-60px;
}

.socialmentor-business-btn{
  margin-top:50px;
  padding:18px 40px;
  border:none;
  border-radius:10px;
  background:linear-gradient(135deg,#C39A5C,#d4b06c);
  color:#000;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(195,154,92,0.35);
  transition:0.3s;
}

.socialmentor-business-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(195,154,92,0.45);
}

@media(max-width:768px){
  .socialmentor-business-diagram{
    width:100%;
    max-width:340px;
    height:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0;
    padding:0;
  }

  .socialmentor-business-box,
  .socialmentor-business-circle{
    position:relative;
    transform:none;
    left:auto;
    right:auto;
    top:auto;
    margin:0 0 30px 0;          /* leaves room for the connector line below */
  }

  /* last item — no line below it */
  .socialmentor-right-box{
    margin-bottom:0;
  }

  .socialmentor-business-circle{
    width:170px;
    height:170px;
    font-size:17px;
  }

  /* hide desktop horizontal lines */
  .socialmentor-business-diagram::before,
  .socialmentor-business-diagram::after{
    display:none;
  }

  /* vertical connector lines between each item */
  .socialmentor-top-box::after,
  .socialmentor-business-circle::after,
  .socialmentor-left-box::after{
    content:"";
    position:absolute;
    width:2px;
    height:30px;
    background:#C39A5C;
    left:50%;
    bottom:-30px;
    top:auto;
    transform:translateX(-50%);
  }
}

/* ===============================
   ATTEND SECTION
================================= */
.socialmentor-attend-section{
  padding:40px 20px;
  text-align:center;
  background:#000000;
}

.socialmentor-attend-title{
  font-size:34px;
  font-weight:700;
  margin-bottom:60px;
  color:#ffffff;
}

.socialmentor-attend-list{
  max-width:800px;
  margin:auto;
  text-align:left;
}

.socialmentor-attend-item{
  display:flex;
  gap:20px;
  margin-bottom:40px;
  align-items:flex-start;
}

.socialmentor-attend-number{
  width:36px;
  height:36px;
  background:#C39A5C;
  color:#000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  flex-shrink:0;
}

.socialmentor-attend-content h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:8px;
  color:#ffffff;
}

.socialmentor-attend-content p{
  font-size:14px;
  color:#aaaaaa;
  line-height:1.6;
}

.socialmentor-attend-cta{
  margin-top:50px;
}

.socialmentor-attend-btn{
  background:linear-gradient(135deg,#C39A5C,#d4b06c);
  padding:16px 36px;
  border:none;
  border-radius:10px;
  font-size:17px;
  font-weight:600;
  color:#000;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(195,154,92,0.35);
  transition:0.3s;
}

.socialmentor-attend-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(195,154,92,0.45);
}

.socialmentor-attend-offer{
  margin-top:10px;
  font-size:13px;
  color:#aaa;
}

.socialmentor-attend-offer span{
  text-decoration:line-through;
  color:#c50000;
}

@media(max-width:768px){
  .socialmentor-attend-item{
    flex-direction:row;
  }
  .socialmentor-attend-title{
    font-size:26px;
  }
}

/* ===============================
   BEFORE / AFTER SECTION
================================= */
.socialmentor-beforeafter-section{
  padding:100px 20px;
  background:#0d0d0d;
  text-align:center;
}

.socialmentor-beforeafter-title{
  font-size:34px;
  font-weight:700;
  margin-bottom:60px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  color:#ffffff;
}

.socialmentor-beforeafter-grid{
  max-width:900px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.socialmentor-before-card,
.socialmentor-after-card{
  background:#1a1a1a;
  padding:30px;
  border-radius:10px;
  border:1px solid #2a2a2a;
  text-align:left;
}

.socialmentor-before-title{
  color:#e74c3c;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:20px;
}

.socialmentor-after-title{
  color:#C39A5C;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:20px;
}

.socialmentor-before-list,
.socialmentor-after-list{
  list-style:none;
  padding:0;
  margin:0;
}

.socialmentor-before-list li,
.socialmentor-after-list li{
  margin-bottom:14px;
  font-size:16px;
  color:#bbbbbb;
  line-height:1.6;
  position:relative;
  padding-left:22px;
}

.socialmentor-before-list li::before{
  content:"✖";
  color:#e74c3c;
  position:absolute;
  left:0;
}

.socialmentor-after-list li::before{
  content:"✔";
  color:#C39A5C;
  position:absolute;
  left:0;
}

.socialmentor-beforeafter-cta{
  margin-top:60px;
}

.socialmentor-beforeafter-btn{
  background:linear-gradient(135deg,#C39A5C,#d4b06c);
  color:#000;
  padding:16px 38px;
  border:none;
  border-radius:10px;
  font-size:17px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(195,154,92,0.35);
  transition:0.3s;
}

.socialmentor-beforeafter-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(195,154,92,0.45);
}

.socialmentor-beforeafter-offer{
  margin-top:10px;
  font-size:13px;
  color:#aaa;
}

.socialmentor-beforeafter-offer span{
  text-decoration:line-through;
  color:#c50000;
}

@media(max-width:768px){
  .socialmentor-beforeafter-grid{
    grid-template-columns:1fr;
  }
  .socialmentor-beforeafter-title{
    font-size:26px;
  }
}

/* ===============================
   COACH SECTION
================================= */
.socialmentor-coach-section{
  padding:50px 20px;
  background:#0d0d0d;
  text-align:center;
}

.socialmentor-coach-title{
  font-size:34px;
  font-weight:700;
  margin-bottom:60px;
  color:#ffffff;
}

.socialmentor-coach-wrapper{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:320px 1fr;
  gap:50px;
  align-items:center;
}

.socialmentor-coach-image img{
  width:100%;
  border-radius:10px;
  object-fit:cover;
  border:2px solid #C39A5C;
}

.socialmentor-coach-content{
  text-align:left;
}

.socialmentor-coach-name{
  font-size:28px;
  font-weight:700;
  margin-bottom:15px;
  color:#C39A5C;
}

.socialmentor-coach-content p{
  font-size:16px;
  line-height:1.7;
  color:#bbbbbb;
  margin-bottom:15px;
}

.socialmentor-coach-content p b{
  color:#ffffff;
}

.socialmentor-coach-stats{
  display:flex;
  gap:50px;
  margin-top:25px;
}

.socialmentor-stat{
  display:flex;
  flex-direction:column;
  align-items:center;
  font-weight:600;
  color:#ffffff;
}

.socialmentor-stat img{
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
    object-fit: contain;
}

.socialmentor-stat span{
  font-size:18px;
}

.socialmentor-stage-title{
  font-size:22px;
  font-weight:700;
  margin-top:80px;
  margin-bottom:30px;
  font-style:italic;
  color:#C39A5C;
}

.socialmentor-stage-logos{
  max-width:1000px;
  margin:auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:40px;
}

.socialmentor-stage-logos img{
  height:45px;
  object-fit:contain;
  filter:brightness(0) invert(1);
  opacity:0.75;
}

@media(max-width:768px){
  .socialmentor-coach-wrapper{
    grid-template-columns:1fr;
    text-align:center;
  }
  .socialmentor-coach-content{
    text-align:center;
  }
  .socialmentor-coach-stats{
    justify-content:center;
  }
}
.socialmentor-portfolio-section {
  padding: 80px 20px;
  background: #000000;
  text-align: center;
  position: relative;
  overflow: hidden;
}
 
/* Subtle radial glow behind the grid */
.socialmentor-portfolio-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(195,154,92,0.07) 0%, transparent 70%);
  pointer-events: none;
}
 
.socialmentor-portfolio-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
 
.socialmentor-portfolio-subtitle-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #C39A5C, #d4b06c);
  border-radius: 3px;
  margin: 12px auto 55px auto;
}
 
/* ── GRID: 5 cards, centered wrap ── */
.socialmentor-portfolio-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
 
/* Each card */
.socialmentor-portfolio-card {
  background: #0d0d0d;
  border: 1px solid #222222;
  border-radius: 16px;
  padding: 36px 28px 30px;
  width: calc(33.33% - 24px);
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 220px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
 
/* Gold top accent line */
.socialmentor-portfolio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C39A5C, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
 
.socialmentor-portfolio-card:hover {
  transform: translateY(-6px);
  border-color: #C39A5C;
  box-shadow: 0 20px 40px rgba(195, 154, 92, 0.15);
}
 
.socialmentor-portfolio-card:hover::before {
  opacity: 1;
}
 
/* Icon circle */
.socialmentor-portfolio-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(195,154,92,0.15), rgba(195,154,92,0.05));
  border: 1px solid rgba(195, 154, 92, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  font-size: 22px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
 
.socialmentor-portfolio-card:hover .socialmentor-portfolio-icon {
  background: linear-gradient(135deg, rgba(195,154,92,0.3), rgba(195,154,92,0.1));
  border-color: #C39A5C;
}
 
/* Number */
.socialmentor-portfolio-card h3 {
  font-size: 36px;
  font-weight: 900;
  color: #C39A5C;
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1px;
}
 
/* Label */
.socialmentor-portfolio-card p {
  font-size: 13px;
  color: #888888;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}
 
/* ── 5th card: center it alone on its row ── */
.socialmentor-portfolio-card:last-child {
  flex: 0 1 300px;
}
 
/* ── TABLET (≤900px): 2 columns ── */
@media (max-width: 900px) {
  .socialmentor-portfolio-card {
    width: calc(50% - 24px);
    flex: 1 1 180px;
  }
  .socialmentor-portfolio-card:last-child {
    flex: 0 1 calc(50% - 12px);
  }
}
 
/* ── MOBILE (≤560px): 2 columns tight ── */
@media (max-width: 560px) {
  .socialmentor-portfolio-title { font-size: 26px; }
  .socialmentor-portfolio-grid { gap: 14px; }
  .socialmentor-portfolio-card {
    padding: 28px 18px 24px;
    min-width: 140px;
  }
  .socialmentor-portfolio-card h3 { font-size: 28px; }
  .socialmentor-portfolio-card p { font-size: 11px; }
  .socialmentor-portfolio-card:last-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

/* ===============================
   GUARANTEE SECTION
================================= */
.socialmentor-guarantee-section{
  padding:100px 20px;
  background:#0d0d0d;
  text-align:center;
}

.socialmentor-guarantee-title{
  font-size:34px;
  font-weight:700;
  margin-bottom:10px;
  color:#ffffff;
}

.socialmentor-guarantee-underline{
  width:60px;
  height:3px;
  background:#C39A5C;
  margin:15px auto 60px auto;
  border-radius:3px;
}

.socialmentor-guarantee-wrapper{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:350px 1fr;
  gap:50px;
  align-items:center;
}

.socialmentor-guarantee-image img{
  width:100%;
  max-width:300px;
}

.socialmentor-guarantee-content{
  text-align:left;
}

.socialmentor-guarantee-content h3{
  font-size:26px;
  font-weight:700;
  margin-bottom:15px;
  color:#C39A5C;
}

.socialmentor-guarantee-content p{
  font-size:15px;
  color:#aaaaaa;
  line-height:1.7;
  margin-bottom:25px;
}

.socialmentor-guarantee-btn{
  background:linear-gradient(135deg,#C39A5C,#d4b06c);
  color:#000;
  padding:16px 36px;
  border:none;
  border-radius:10px;
  font-size:17px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 12px 25px rgba(195,154,92,0.35);
  transition:0.3s;
}

.socialmentor-guarantee-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(195,154,92,0.45);
}

@media(max-width:768px){
  .socialmentor-guarantee-wrapper{
    grid-template-columns:1fr;
    text-align:center;
  }
  .socialmentor-guarantee-content{
    text-align:center;
  }
  .socialmentor-guarantee-image{
    margin-bottom:30px;
  }
}

/* ===============================
   TESTIMONIAL SECTION
================================= */
.socialmentor-testimonial-section{
  padding:100px 20px;
  background:#000000;
  text-align:center;
}

.socialmentor-testimonial-title{
  font-size:34px;
  font-weight:700;
  color:#ffffff;
}

.socialmentor-testimonial-underline{
  width:60px;
  height:3px;
  background:#C39A5C;
  margin:15px auto 25px auto;
}

.socialmentor-testimonial-subtitle{
  font-size:15px;
  color:#aaaaaa;
  margin-bottom:40px;
}
/* ===============================
   TESTIMONIAL / VIDEO SECTION
================================= */

.socialmentor-video-grid {
  max-width: 1100px;
  margin: 0 auto 50px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Custom video card wrapper ── */
.socialmentor-video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid #2a2a2a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  aspect-ratio: 9 / 16;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.socialmentor-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0; /* parent handles radius */
}

/* Dark overlay */
.socialmentor-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  transition: background 0.3s ease;
  z-index: 1;
}

.socialmentor-video-card.playing .socialmentor-video-overlay {
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
}

/* Show dim overlay on hover while playing */
.socialmentor-video-card.playing:hover .socialmentor-video-overlay {
  background: rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

/* ── Play button ── */
.socialmentor-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C39A5C, #d4b06c);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(195, 154, 92, 0.2), 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, opacity 0.3s ease, box-shadow 0.2s ease;
}

.socialmentor-play-btn svg {
  width: 24px;
  height: 24px;
  fill: #000;
  margin-left: 4px;
}

/* Pulse ring on idle */
.socialmentor-play-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(195, 154, 92, 0.5);
  animation: sm-pulse 2s ease-out infinite;
}

@keyframes sm-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0;   }
}

/* Hide play btn when playing */
.socialmentor-video-card.playing .socialmentor-play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  pointer-events: none;
}

.socialmentor-video-card.playing .socialmentor-play-btn::before {
  display: none;
}

/* Re-show as pause on hover while playing */
/* .socialmentor-video-card.playing:hover .socialmentor-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
} */

/* Hover state on idle cards */
.socialmentor-video-card:not(.playing):hover {
  border-color: #C39A5C;
  box-shadow: 0 14px 30px rgba(195, 154, 92, 0.2);
}

.socialmentor-video-card:not(.playing):hover .socialmentor-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 10px rgba(195, 154, 92, 0.25), 0 10px 28px rgba(0, 0, 0, 0.5);
}

/* ===============================
   FEEDBACK / TEXT TESTIMONIALS
================================= */
.socialmentor-feedback-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 67px;
    color: #ffffff;
}

.socialmentor-feedback-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
}

.socialmentor-feedback-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  text-align: center;
  position: relative;
  border: 1px solid #2a2a2a;
}

.socialmentor-feedback-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #C39A5C;
}

.socialmentor-feedback-card p {
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 15px;
}

.socialmentor-feedback-card h4 {
  color: #C39A5C;
  margin-bottom: 4px;
}

.socialmentor-feedback-card span {
  font-size: 13px;
  color: #777;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 1000px) {
  .socialmentor-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .socialmentor-feedback-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .socialmentor-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .socialmentor-play-btn {
    width: 50px;
    height: 50px;
  }
  .socialmentor-play-btn svg {
    width: 20px;
    height: 20px;
  }
}
/* ===============================
   FAQ SECTION
================================= */
.socialmentor-faq-section{
  padding:100px 20px;
  background:#0d0d0d;
  text-align:center;
}

.socialmentor-faq-title{
  font-size:34px;
  font-weight:700;
  color:#ffffff;
}

.socialmentor-faq-underline{
  width:60px;
  height:3px;
  background:#C39A5C;
  margin:15px auto 50px auto;
}

.socialmentor-faq-wrapper{
  max-width:900px;
  margin:auto;
  text-align:left;
}

.socialmentor-faq-item{
  border-bottom:1px solid #2a2a2a;
  padding:15px 0;
}

.socialmentor-faq-question{
  display:flex;
  justify-content:space-between;
  font-size:16px;
  font-weight:500;
  cursor:pointer;
  color:#ffffff;
}

.socialmentor-faq-toggle{
  color:#C39A5C;
  font-size:20px;
  font-weight:700;
}

.socialmentor-faq-answer{
  display:none;
  margin-top:12px;
  padding:14px 18px;
  background:#1a1a1a;
  border-radius:8px;
  color:#aaaaaa;
  line-height:1.6;
  border-left:3px solid #C39A5C;
}

.socialmentor-faq-item.active .socialmentor-faq-answer{
  display:block;
}

.socialmentor-faq-btn{
  margin-top:50px;
  margin-bottom:50px;
  background:linear-gradient(135deg,#C39A5C,#d4b06c);
  color:#000;
  padding:16px 36px;
  border:none;
  border-radius:10px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 12px 25px rgba(195,154,92,0.35);
}

/* ===============================
   STICKY BAR
================================= */
.socialmentor-stickybar{
  position:fixed;
  bottom:10px;
  left:50%;
  width:45%;
  max-width:800px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
     padding: 20px 20px 10px 20px;
  box-shadow:0 -5px 20px rgba(0,0,0,0.6);
  z-index:9999;
  background:#111111;
  border-radius:11px;
  border:1px solid #C39A5C;
  transform:translate(-50%,120%);
  opacity:0;
  transition:all .4s ease;
}

.socialmentor-stickybar.show{
  transform:translate(-50%,0);
  opacity:1;
}

.socialmentor-sticky-left{
  display:flex;
  flex-direction:row;
  align-items:center;
}

.socialmentor-price{
  color:#C39A5C;
  font-weight:700;
  font-size:22px;
  margin-right:10px;
}

.socialmentor-oldprice{
  text-decoration:line-through;
  color:#666;
  margin-left:6px;
}

.socialmentor-timer{
    font-size: 13px;
    margin-top: 20px;
    color: #aaaaaa;
    text-align: center;
}

.socialmentor-sticky-btn{
  background:linear-gradient(135deg,#C39A5C,#d4b06c);
  color:#000;
  padding:12px 22px;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(195,154,92,0.4);
  transition:0.25s;
}

.shine-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;          /* new stacking context */
  transform: translateZ(0);    /* GPU layer force — border-radius clip fix */
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* Safari fix */
}

.shine-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shine-sweep 2.5s infinite;
  pointer-events: none;        /* click block aagaama */
  z-index: 1;
}

@keyframes shine-sweep {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}

.socialmentor-sticky-btn:hover{
  transform:translateY(-2px);
}

.sticky-rightmain{
  display: flex;
    align-items: center;
    gap: 21px;
}

@media(max-width:410px){
    .socialmentor-sticky-btn {
        padding: 4px 5px!important;
    }
        .socialmentor-stickybar {
        /* flex-direction: column; */
        gap: 2px!important;
        }


}

@media(max-width:600px){
  .socialmentor-timer{
      margin-top: 5px;
}

  .socialmentor-stickybar{
    /* flex-direction:column; */
    gap:10px;
    width: 93%;
  }
  .socialmentor-gift-badge{
    font-size: 11px;
  }
  .socialmentor-sticky-btn{
        padding: 4px 15px;
        font-size: 16px;
  }
  .socialmentor-sticky-left{
    align-items:center;
  }
}

  .socialmentor-gift-badge{
    font-size: 14px;
  }

/* ===============================
   FOOTER
================================= */
.socialmentor-footer{
  background:#111111;
  border-radius:24px;
  padding:40px 20px;
  text-align:center;
  border-top:1px solid #2a2a2a;
}

.socialmentor-footer-logo img{
  width:120px;
  margin-bottom:20px;
}

.socialmentor-footer-bottom{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:25px;
  flex-wrap:wrap;
  font-size:13px;
  color:#777777;
}

.socialmentor-footer-links{
  display:flex;
  gap:20px;
}

.socialmentor-footer-links a{
  color:#aaaaaa;
  text-decoration:none;
  font-size:13px;
}

.socialmentor-footer-links a:hover{
  color:#C39A5C;
  text-decoration:underline;
}

.socialmentor-footer-copy{
  color:#666;
}

@media(max-width:600px){
  .socialmentor-footer-bottom{
    flex-direction:column;
    gap:10px;
  }
  .socialmentor-footer-links{
    gap:15px;
  }
}



/* ===============================
   BUTTON SHIMMER ANIMATION
   Matches the video: diagonal gold
   shine sweeps left → right on loop
================================= */

/* Apply to all CTA buttons */
.socialmentor-cta-button,
.socialmentor-learn-button,
.socialmentor-business-btn,
.socialmentor-attend-btn,
.socialmentor-beforeafter-btn,
.socialmentor-guarantee-btn,
.socialmentor-faq-btn
 {
  position: relative;
  overflow: hidden;
  isolation: isolate; /* keeps pseudo-element clipped inside border-radius */
}

/* The shimmer pseudo-element */
.socialmentor-cta-button::before,
.socialmentor-learn-button::before,
.socialmentor-business-btn::before,
.socialmentor-attend-btn::before,
.socialmentor-beforeafter-btn::before,
.socialmentor-guarantee-btn::before,
.socialmentor-faq-btn::before{
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: btn-shimmer 2.2s infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes btn-shimmer {
  0%   { left: -75%; }
  100% { left: 130%;  }
}

/* Keep button text above the shimmer layer */
.socialmentor-cta-button span,
.socialmentor-learn-button span,
.socialmentor-business-btn span,
.socialmentor-attend-btn span,
.socialmentor-beforeafter-btn span,
.socialmentor-guarantee-btn span,
.socialmentor-faq-btn span,
.socialmentor-sticky-btn span {
  position: relative;
  z-index: 2;
}


.sm-logomain{
      width: 800px;
}
.image-main-outer{
  display: flex;
  justify-content: center;
}