.thirdmay-website-services-section *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.thirdmay-website-services-section{
  width:100%;
  padding:100px 6%;
  background:#ffffff;
  font-family:Arial, sans-serif;
  overflow:hidden;
}

/* CONTAINER */

.thirdmay-services-container{
  display:flex;
  gap:40px;
  align-items:flex-start;
}

/* LEFT SIDE */

.thirdmay-services-left{
  width:320px;
  position:sticky;
  top:30px;
}

/* BUTTON */

.thirdmay-service-btn{
  background:#ffffff;
  border:1px solid #e5e7eb;
  padding:22px 25px;
  border-radius:22px;
  margin-bottom:20px;
  cursor:pointer;
  transition:all 0.45s ease;
  position:relative;
  overflow:hidden;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

/* BUTTON GLOW */

.thirdmay-service-btn::before{
  content:"";
  position:absolute;
  width:0;
  height:100%;
  background:linear-gradient(135deg,#2563eb,#7c3aed,#06b6d4);
  left:0;
  top:0;
  transition:0.5s ease;
  z-index:0;
}

/* BUTTON LIGHT EFFECT */

.thirdmay-service-btn::after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(255,255,255,0.25);
  top:-100px;
  right:-100px;
  transition:0.5s ease;
}

.thirdmay-service-btn span{
  position:relative;
  z-index:2;
  font-size:18px;
  font-weight:600;
  color:#111827;
  transition:0.4s ease;
}

/* BUTTON HOVER */

.thirdmay-service-btn:hover::before,
.thirdmay-service-btn.active::before{
  width:100%;
}

.thirdmay-service-btn:hover::after,
.thirdmay-service-btn.active::after{
  transform:scale(1.2);
}

.thirdmay-service-btn:hover,
.thirdmay-service-btn.active{
  transform:translateY(-4px);
  box-shadow:
    0 18px 40px rgba(37,99,235,0.12),
    0 8px 20px rgba(124,58,237,0.08);
}

.thirdmay-service-btn:hover span,
.thirdmay-service-btn.active span{
  color:#ffffff;
  letter-spacing:0.5px;
  transform:translateX(5px);
}

/* RIGHT SIDE */

.thirdmay-services-right{
  flex:1;
}

.thirdmay-service-content{
  display:none;
  animation:thirdmayFadeUp 0.5s ease;
}

.thirdmay-service-content.active{
  display:block;
}

/* BADGE */

.thirdmay-service-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:50px;
  background:linear-gradient(135deg,#eef4ff,#f5f9ff);
  color:#2563eb;
  font-size:14px;
  font-weight:600;
  margin-bottom:25px;
  border:1px solid #dbeafe;
}

/* HEADING */

.thirdmay-services-right h2{
  font-size:48px;
  line-height:1.2;
  color:#111827;
  margin-bottom:25px;
  font-weight:700;
  max-width:850px;
}

/* DESCRIPTION */

.thirdmay-service-description{
  font-size:18px;
  color:#6b7280;
  line-height:1.9;
  margin-bottom:50px;
  max-width:900px;
}

/* SERVICE GRID */

.thirdmay-service-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

/* SERVICE CARD */

.thirdmay-service-card{
  position:relative;
  overflow:hidden;
  padding:35px;
  border-radius:30px;
  transition:all 0.45s ease;
  border:1px solid rgba(255,255,255,0.4);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* DIFFERENT COLORS */

.thirdmay-service-card:nth-child(1){
  background:linear-gradient(135deg,#eef4ff,#f5f9ff);
}

.thirdmay-service-card:nth-child(2){
  background:linear-gradient(135deg,#f3f0ff,#faf7ff);
}

.thirdmay-service-card:nth-child(3){
  background:linear-gradient(135deg,#eefcf6,#f5fffa);
}

.thirdmay-service-card:nth-child(4){
  background:linear-gradient(135deg,#fff5ef,#fffaf7);
}

.thirdmay-service-card:nth-child(5){
  background:linear-gradient(135deg,#fff7ec,#fffdf8);
}

.thirdmay-service-card:nth-child(6){
  background:linear-gradient(135deg,#f4f7ff,#fafcff);
}

/* TOP LINE */

.thirdmay-service-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#2563eb,#7c3aed,#06b6d4);
  transform:scaleX(0);
  transform-origin:left;
  transition:0.5s ease;
}

/* LIGHT GLOW */

.thirdmay-service-card::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(255,255,255,0.35);
  top:-120px;
  right:-120px;
  transition:0.5s ease;
}

/* CARD HOVER */

.thirdmay-service-card:hover{
  transform:translateY(-14px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(37,99,235,0.12),
    0 10px 25px rgba(124,58,237,0.08);
}

.thirdmay-service-card:hover::before{
  transform:scaleX(1);
}

.thirdmay-service-card:hover::after{
  transform:scale(1.2);
}

/* CARD TITLE */

.thirdmay-service-card h3{
  position:relative;
  z-index:2;
  font-size:24px;
  margin-bottom:15px;
  color:#111827;
  font-weight:700;
  transition:0.4s ease;
}

/* CARD TEXT */

.thirdmay-service-card p{
  position:relative;
  z-index:2;
  color:#4b5563;
  line-height:1.8;
  font-size:16px;
  transition:0.4s ease;
}

.thirdmay-service-card:hover h3{
  color:#2563eb;
  transform:translateX(4px);
}

.thirdmay-service-card:hover p{
  color:#374151;
}

/* INDUSTRY GRID */

.thirdmay-industry-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

/* INDUSTRY BOX */

.thirdmay-industry-item{
  position:relative;
  overflow:hidden;
  padding:35px;
  border-radius:26px;
  font-size:20px;
  font-weight:600;
  color:#111827;
  transition:all 0.45s ease;
  border:1px solid rgba(255,255,255,0.5);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

/* INDUSTRY COLORS */

.thirdmay-industry-item:nth-child(1){
  background:linear-gradient(135deg,#eef4ff,#f7fbff);
}

.thirdmay-industry-item:nth-child(2){
  background:linear-gradient(135deg,#f3f0ff,#faf7ff);
}

.thirdmay-industry-item:nth-child(3){
  background:linear-gradient(135deg,#eefcf6,#f6fff9);
}

.thirdmay-industry-item:nth-child(4){
  background:linear-gradient(135deg,#fff5ef,#fffaf7);
}

.thirdmay-industry-item:nth-child(5){
  background:linear-gradient(135deg,#fff8ee,#fffdf9);
}

.thirdmay-industry-item:nth-child(6){
  background:linear-gradient(135deg,#f4f7ff,#fbfcff);
}

.thirdmay-industry-item:nth-child(7){
  background:linear-gradient(135deg,#effcff,#f7fdff);
}

.thirdmay-industry-item:nth-child(8){
  background:linear-gradient(135deg,#fff1f2,#fff8f8);
}

/* INDUSTRY GLOW */

.thirdmay-industry-item::before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(255,255,255,0.35);
  top:-90px;
  right:-90px;
  transition:0.5s ease;
}

/* INDUSTRY HOVER */

.thirdmay-industry-item:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 45px rgba(37,99,235,0.12),
    0 10px 25px rgba(124,58,237,0.08);
  color:#111827;
}

.thirdmay-industry-item:hover::before{
  transform:scale(1.2);
}

/* ANIMATION */

@keyframes thirdmayFadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE */

@media(max-width:991px){

  .thirdmay-services-container{
    flex-direction:column;
  }

  .thirdmay-services-left{
    width:100%;
    position:relative;
    top:0;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
  }

  .thirdmay-service-btn{
    flex:1 1 250px;
    margin-bottom:0;
  }

  .thirdmay-services-right h2{
    font-size:36px;
  }

  .thirdmay-service-grid,
  .thirdmay-industry-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:576px){

  .thirdmay-website-services-section{
    padding:70px 20px;
  }

  .thirdmay-services-right h2{
    font-size:30px;
  }

  .thirdmay-service-card,
  .thirdmay-industry-item{
    padding:25px;
  }

  .thirdmay-service-description{
    font-size:16px;
  }

}