@charset "UTF-8";

/* Prevent horizontal scroll on mobile */
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Fix mobile horizontal scroll */
@media (max-width: 1024px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
  }
  
  #header-placeholder,
  #footer-placeholder,
  section {
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .content-container {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .roadmap-wrapper {
    overflow: hidden;
    max-width: 100vw;
  }
  
  .blogs-carousel-wrapper {
    overflow: hidden;
    max-width: 100vw;
  }
  
  .hero-gradient-orb {
    display: none !important;
  }
}

/* Global Buttons - Consistent Transparent Shiny Style */
.btn-primary,
.cta-button,
.dual-card-btn,
.viewfi-cta .cta-button,
.referral-cta .cta-button,
.hero-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "PoppinsBold";
  border: 1px solid rgba(151, 105, 239, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary::before,
.cta-button::before,
.dual-card-btn::before,
.hero-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover,
.cta-button:hover,
.dual-card-btn:hover,
.hero-cta-btn:hover {
  border-color: rgba(151, 105, 239, 0.8);
  background: rgba(151, 105, 239, 0.15);
  box-shadow: 0 0 30px rgba(151, 105, 239, 0.4), 0 0 60px rgba(151, 105, 239, 0.2), inset 0 0 20px rgba(151, 105, 239, 0.1);
  transform: translateY(-3px);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover::before,
.cta-button:hover::before,
.dual-card-btn:hover::before,
.hero-cta-btn:hover::before {
  left: 100%;
}

.btn-primary:active,
.cta-button:active,
.dual-card-btn:active,
.hero-cta-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(151, 105, 239, 0.3);
}

/* Secondary Button Style */
.btn-secondary {
  display: inline-block;
  padding: 14px 35px;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "PoppinsMedium";
  border: 1px solid rgba(85, 225, 221, 0.4);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(85, 225, 221, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-secondary:hover {
  border-color: rgba(85, 225, 221, 0.8);
  background: rgba(85, 225, 221, 0.1);
  box-shadow: 0 0 25px rgba(85, 225, 221, 0.3), 0 0 50px rgba(85, 225, 221, 0.15);
  transform: translateY(-3px);
  text-shadow: 0 0 10px rgba(85, 225, 221, 0.5);
}

.btn-secondary:hover::before {
  left: 100%;
}

/* Global Container */
.content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(151, 105, 239, 0.4);
  border-radius: 30px;
  background: rgba(151, 105, 239, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.section-badge span {
  font-size: 13px;
  font-weight: 500;
  color: #9769ef;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: "PoppinsMedium";
}

/* Section Titles */
.section-main-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  font-family: "PoppinsBold";
  margin: 0 0 20px 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #bcbbfd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 17px;
  font-weight: 400;
  color: #b0b0b0;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

/* Hero Section - Modern Design */
.section-1 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 85px 40px 80px;
  overflow: hidden;
  background: radial-gradient(50% 55.07% at 50% -17.63%, #55e1dd 3.37%, #0131b9 42.81%, #020816 100%);
  width: 100%;
  max-width: 100vw;
}

.hero-content-wrapper {
  max-width: 1000px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-main-title {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  font-family: "PoppinsBold";
  margin: 0 0 40px 0;
  line-height: 1.1;
  background: linear-gradient(180deg, #ffffff 0%, #bcbbfd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.hero-description-container {
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 20px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hero-description strong {
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, #9769ef 0%, #6c24f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cta-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "PoppinsBold";
  border: 1px solid rgba(151, 105, 239, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.hero-cta-btn:hover {
  border-color: rgba(151, 105, 239, 0.8);
  background: rgba(151, 105, 239, 0.15);
  box-shadow: 0 0 40px rgba(151, 105, 239, 0.5), 0 0 80px rgba(151, 105, 239, 0.25);
  transform: translateY(-3px);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.hero-cta-btn:hover::before {
  left: 100%;
}

/* Ecosystem Chart */
.ecosystem-chart-wrapper {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.ecosystem-chart-container {
  transition: all 0.4s ease;
}

.ecosystem-chart-container:hover {
  border-color: rgba(151, 105, 239, 0.4);
  box-shadow: 0 20px 60px rgba(151, 105, 239, 0.15);
}

.platform-descriptions {
  animation: fadeInUp 1.2s ease-out 0.5s both;
}

.platform-desc-card {
  transition: all 0.4s ease;
}

.platform-desc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(151, 105, 239, 0.2);
}

@media (max-width: 1024px) {
  .platform-descriptions {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
}

@media (max-width: 768px) {
  .ecosystem-chart-wrapper {
    margin: 40px auto !important;
    padding: 0 10px;
  }
  
  .ecosystem-chart-container {
    padding: 30px 15px !important;
  }
  
  .ecosystem-chart-container > div:first-child > div {
    padding: 15px 30px !important;
  }
  
  .ecosystem-chart-container > div:first-child > div span {
    font-size: 18px !important;
  }
  
  .platform-descriptions {
    margin-top: 40px !important;
    padding: 0 10px;
  }
  
  .platform-desc-card {
    padding: 25px 20px !important;
    text-align: center;
  }
  
  .platform-desc-card > div:first-child {
    justify-content: center !important;
  }
  
  .platform-desc-card h3 {
    font-size: 20px !important;
  }
  
  .platform-desc-card p {
    text-align: center !important;
  }
}

.hero-cta {
  font-size: 16px !important;
  padding: 14px 32px !important;
  box-shadow: 0 10px 40px rgba(151, 105, 239, 0.3);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(151, 105, 239, 0.5);
}

/* Hero Gradient Orbs */
.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #9769ef 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #6c24f5 0%, transparent 70%);
  bottom: -80px;
  right: 0;
  animation: float 10s ease-in-out infinite reverse;
}

@media (max-width: 768px) {
  .hero-orb-1, .hero-orb-2 {
    display: none;
  }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* What is W3AP Section */
.section-what-is {
  position: relative;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-background-blur {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}

.section-background-blur.blur-left {
  background: radial-gradient(circle, #9769ef 0%, transparent 70%);
  top: 0;
  left: -200px;
}

.section-background-blur.blur-right {
  background: radial-gradient(circle, #6c24f5 0%, transparent 70%);
  bottom: 0;
  right: -200px;
}

.section-content-text {
  max-width: 1000px;
  margin: 0 auto;
}

.section-content-text p {
  font-size: 19px;
  font-weight: 400;
  color: #d0d0d0;
  line-height: 1.9;
  margin: 0;
}

.section-content-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* Work Process Section */
.section-work-process {
  padding: 120px 0;
  text-align: center;
}

.work-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.work-feature-card {
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.work-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #9769ef 0%, #6c24f5 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.work-feature-card:hover::before {
  transform: scaleX(1);
}

.work-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(151, 105, 239, 0.3);
  background: rgba(151, 105, 239, 0.05);
  box-shadow: 0 20px 60px rgba(151, 105, 239, 0.15);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(151, 105, 239, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.work-feature-card:hover .feature-icon-wrapper {
  background: rgba(151, 105, 239, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-svg {
  width: 50px;
  height: 50px;
}

.work-feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  font-family: "PoppinsBold";
}

/* Features Section */
.section-features {
  padding: 120px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top center, rgba(151, 105, 239, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(151, 105, 239, 0.4);
  background: rgba(151, 105, 239, 0.08);
  box-shadow: 0 25px 70px rgba(151, 105, 239, 0.2);
}

.feature-card-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.feature-card-icon svg {
  width: 80px;
  height: 80px;
}

.feature-card:hover .feature-card-icon {
  transform: scale(1.15) rotate(-5deg);
}

.feature-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  font-family: "PoppinsBold";
}

.feature-card-description {
  font-size: 15px;
  font-weight: 400;
  color: #b0b0b0;
  line-height: 1.7;
  margin: 0;
}

/* Milestones Section - Horizontal Slider */
.section-milestones {
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.roadmap-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  max-width: 100%;
}

.roadmap-container {
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  padding: 40px 0 60px;
}

.roadmap-timeline-horizontal {
  display: flex;
  gap: 60px;
  position: relative;
  padding: 0 40px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-line-horizontal {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 30px;
  height: 3px;
  background: linear-gradient(90deg, rgba(151, 105, 239, 0.2) 0%, rgba(151, 105, 239, 0.8) 50%, rgba(151, 105, 239, 0.2) 100%);
  z-index: 0;
}

.roadmap-milestone-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.milestone-dot-horizontal {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9769ef 0%, #6c24f5 100%);
  border: 3px solid #020816;
  box-shadow: 0 0 15px rgba(151, 105, 239, 0.5), 0 0 30px rgba(151, 105, 239, 0.2);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  animation: pulse 2s ease-in-out infinite;
}

.milestone-dot-horizontal::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.roadmap-milestone-card:hover .milestone-dot-horizontal {
  transform: scale(1.2);
  box-shadow: 0 0 40px rgba(151, 105, 239, 0.8), 0 0 80px rgba(151, 105, 239, 0.4);
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(151, 105, 239, 0.6), 0 0 60px rgba(151, 105, 239, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(151, 105, 239, 0.8), 0 0 80px rgba(151, 105, 239, 0.5);
  }
}

.milestone-card-content {
  width: 100%;
  background: linear-gradient(145deg, rgba(20, 20, 40, 0.6) 0%, rgba(10, 10, 30, 0.8) 100%);
  border: 1px solid rgba(151, 105, 239, 0.15);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 160px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.milestone-card-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top center, rgba(151, 105, 239, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.roadmap-milestone-card:hover .milestone-card-content {
  border-color: rgba(151, 105, 239, 0.4);
  background: linear-gradient(145deg, rgba(30, 20, 60, 0.8) 0%, rgba(20, 15, 50, 0.9) 100%);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(151, 105, 239, 0.15);
}

.roadmap-milestone-card:hover .milestone-card-content::before {
  opacity: 1;
}

.milestone-year {
  display: inline-block;
  background: linear-gradient(90deg, rgba(151, 105, 239, 0.3) 0%, rgba(108, 36, 245, 0.3) 100%);
  border: 1px solid rgba(151, 105, 239, 0.4);
  padding: 8px 16px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: "PoppinsMedium";
  box-shadow: 0 4px 15px rgba(151, 105, 239, 0.2);
}

.milestone-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px 0;
  font-family: "PoppinsBold";
  line-height: 1.3;
}

.milestone-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.milestone-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.5;
}

.milestone-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9769ef;
  font-weight: bold;
  font-size: 18px;
}

.milestone-list li:last-child {
  margin-bottom: 0;
}

.roadmap-nav-btn {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.roadmap-nav-btn:hover {
  background: linear-gradient(135deg, #9769ef 0%, #6c24f5 100%);
  border-color: rgba(151, 105, 239, 0.5);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(151, 105, 239, 0.4);
}

.roadmap-nav-btn:active {
  transform: scale(0.95);
}

.roadmap-nav-btn svg {
  width: 18px;
  height: 18px;
}

/* Team Section */
.section-team {
  padding: 120px 0;
  text-align: center;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.team-member-item {
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.team-member-item:hover {
  transform: translateY(-10px);
  border-color: rgba(151, 105, 239, 0.4);
  background: rgba(151, 105, 239, 0.05);
  box-shadow: 0 20px 60px rgba(151, 105, 239, 0.15);
}

.team-member-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 3px solid rgba(151, 105, 239, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(151, 105, 239, 0.2);
}

.team-member-item:hover .team-member-image {
  border-color: rgba(151, 105, 239, 0.6);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(151, 105, 239, 0.4);
}

.team-member-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  font-family: "PoppinsBold";
}

.team-member-info .team-role {
  font-size: 15px;
  font-weight: 500;
  color: #9769ef;
  margin: 0 0 16px 0;
  font-family: "PoppinsMedium";
}

.team-member-info .team-bio {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  line-height: 1.6;
  margin: 0 0 20px 0;
  text-align: center;
}

.team-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.team-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(151, 105, 239, 0.1);
  color: #9769ef;
  transition: all 0.3s ease;
  border: 1px solid rgba(151, 105, 239, 0.2);
}

.team-social-links a:hover {
  background: linear-gradient(135deg, #9769ef 0%, #6c24f5 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(151, 105, 239, 0.3);
}

/* Blog Section */
.section-6 {
  padding: 120px 0;
  text-align: center;
}

.blogs-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}

.blogs-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 1300px;
}

.blogs {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.blog-item {
  flex: 0 0 calc(33.333% - 20px);
  min-width: calc(33.333% - 20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-item:hover {
  transform: translateY(-10px);
  border-color: rgba(151, 105, 239, 0.4);
  box-shadow: 0 20px 60px rgba(151, 105, 239, 0.2);
}

.blog-item-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #9769ef 0%, #6c24f5 100%);
  position: relative;
}

.blog-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-item:hover .blog-item-image img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 30px;
  text-align: left;
}

.blog-item-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
  font-family: "PoppinsBold";
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item-info {
  margin-bottom: 16px;
}

.blog-item-info p {
  font-size: 13px;
  color: #9769ef;
  font-weight: 500;
  margin: 0;
}

.blog-read-more {
  font-size: 14px !important;
  padding: 10px 20px !important;
  margin-top: 16px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, #9769ef 0%, #6c24f5 100%);
  border-color: rgba(151, 105, 239, 0.5);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(151, 105, 239, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .work-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Hero Section Mobile */
  .hero-main-title {
    font-size: 32px;
    text-align: center;
  }
  
  .section-main-title {
    font-size: 28px;
    text-align: center;
  }
  
  .hero-content-wrapper {
    text-align: center;
    padding: 0 15px;
  }
  
  .hero-description {
    font-size: 15px;
    text-align: center;
  }
  
  .hero-description-container {
    text-align: center;
  }
  
  /* Section Badges */
  .section-badge {
    text-align: center;
    display: flex;
    justify-content: center;
  }
  
  /* Grids - Single Column on Mobile */
  .work-features-grid,
  .features-grid,
  .team-members {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Blog Items */
  .blog-item {
    flex: 0 0 85%;
    min-width: 85%;
  }
  
  .blogs-carousel-wrapper {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  
  /* Content Container */
  .content-container {
    padding: 0 15px;
    text-align: center;
  }
  
  /* Hero Section */
  .section-1 {
    padding: 120px 15px 60px;
    min-height: 60vh;
  }
  
  /* Feature Cards - Center Content */
  .feature-card,
  .work-feature-card {
    text-align: center;
    padding: 30px 20px;
  }
  
  .feature-card .feature-icon,
  .work-feature-card .feature-icon,
  .feature-icon-wrapper {
    margin: 0 auto 20px;
  }
  
  .feature-card-icon {
    margin: 0 auto 20px;
  }
  
  .feature-card h3,
  .feature-card-title,
  .feature-card-description,
  .work-feature-card h3 {
    text-align: center;
  }
  
  /* Team Members - Center */
  .team-member-item {
    text-align: center;
  }
  
  .team-member-item .team-member-image {
    margin: 0 auto 15px;
  }
  
  .team-member-info h3,
  .team-member-info .team-role,
  .team-member-info .team-bio {
    text-align: center;
  }
  
  .team-social-links {
    justify-content: center;
  }
  
  /* Roadmap */
  .roadmap-wrapper {
    padding: 0 10px;
  }
  
  .roadmap-timeline-horizontal {
    gap: 20px;
    padding: 0 15px;
  }
  
  .roadmap-milestone-card {
    min-width: 240px;
    width: 240px;
    flex: 0 0 240px;
  }
  
  .milestone-card-content {
    padding: 18px 15px;
    min-height: auto;
    text-align: center;
  }
  
  .milestone-year {
    display: block;
    text-align: center;
    margin: 0 auto 12px;
  }
  
  .milestone-title {
    text-align: center;
    font-size: 16px;
  }
  
  .milestone-list {
    text-align: left;
  }
  
  .milestone-list li {
    font-size: 13px;
  }
  
  .roadmap-nav-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  
  /* Partners Grid */
  .partners-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .partner-logo {
    text-align: center;
  }
  
  /* Buttons - Center */
  .buttom-custom {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  
  .hero-cta {
    margin: 20px auto 0;
  }
  
  .hero-cta-wrapper {
    justify-content: center;
  }
  
  /* Section Descriptions */
  .section-description {
    text-align: center;
    padding: 0 10px;
  }
  
  /* Gradient Orbs */
  .hero-gradient-orb {
    opacity: 0.3;
  }
  
  /* Blog Item Content */
  .blog-item-content {
    padding: 20px;
    text-align: center;
  }
  
  .blog-item-content h2 {
    font-size: 16px;
    text-align: center;
  }
  
  .blog-item-info {
    text-align: center;
  }
  
  .blog-item-info p {
    text-align: center;
  }
  
  .blog-read-more-link {
    display: block;
    text-align: center;
  }
  
  /* Section 6 - Blog Section */
  .section-6 .content-container {
    text-align: center;
  }
  
  /* View All Blogs Link */
  .view-all-blogs {
    display: block;
    text-align: center;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .hero-main-title {
    font-size: 26px;
    line-height: 1.3;
  }
  
  .section-main-title {
    font-size: 24px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .section-1 {
    padding: 100px 10px 50px;
  }
  
  .content-container {
    padding: 0 10px;
  }
  
  .feature-card,
  .work-feature-card {
    padding: 25px 15px;
  }
  
  .blog-item {
    flex: 0 0 90%;
    min-width: 90%;
  }
  
  .roadmap-milestone-card {
    min-width: 240px;
    width: 240px;
  }
  
  .team-member-item .team-member-info h3 {
    font-size: 18px;
  }
  
  .buttom-custom {
    padding: 10px 20px;
  }
  
  .buttom-custom p {
    font-size: 13px;
  }
}
