/* =============================
   HERO SECTION
============================= */
.home-hero-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    height: 600px;
  }
  
  .home-hero-section .home-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250, 250, 250, 0.6);
    z-index: 1;
  }
  
  .home-hero-content,
  .home-hero-image {
    position: relative;
    z-index: 2;
    flex: 1;
  }
  
  .home-hero-content {
    max-width: 50%;
  }
  
  .home-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #0f2a26;
  }
  
  .home-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
  }
  
  .home-hero-image {
    text-align: center;
  }
  
  .home-hero-image img {
    max-width: 400px;
    width: 100%;
  }
  
  /* =============================
     PARTNERS SECTION
  ============================= */
  .home-partners-section {
    padding: 80px 0;
    text-align: center;
  }
  
  /* =============================
     WEB3 SECTION
  ============================= */
  .home-web3-section {
    text-align: center;
    padding: 80px 10%;
  }
  
  .home-web3-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  /* =============================
     EXPERT SECTION
  ============================= */
  .expert-section {
    padding: 80px 10%;
  }
  
  .expert-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .expert-image,
  .expert-content {
    flex: 1;
  }
  
  .expert-image {
    text-align: center;
  }
  
  .expert-image img {
    max-width: 450px;
    width: 100%;
  }
  
  .expert-content {
    text-align: right;
  }
  
  .expert-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #111;
  }
  
  .expert-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
  }
  
  /* =============================
     COUNTER SECTION
  ============================= */
  .home-counter-section {
    padding: 80px 10%;
    text-align: center;
  }
  
  .home-counter-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  
  .home-counter-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .home-crypto-icons {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
  }
  
  .home-crypto-icons img {
    width: 70px;
    height: 70px;
    padding: 15px;
    border-radius: 20px;
    background: #000;
    object-fit: contain;
  }
  
  .home-counters {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
    border-left: 1px solid #ddd;
    padding-left: 40px;
  }
  
  .home-counter-box h3 {
    font-size: 2rem;
    color: #111;
  }
  
  .home-counter-box p {
    font-size: 0.95rem;
    color: #444;
  }
  
  /* =============================
     EXCHANGE SECTION
  ============================= */
  .home-exchange-section {
    padding: 80px 10%;
  }
  
  .home-exchange-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .home-exchange-content,
  .home-exchange-image {
    flex: 1;
  }
  
  .home-exchange-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .home-exchange-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .home-exchange-image {
    text-align: center;
  }
  
  .home-exchange-image img {
    max-width: 500px;
    width: 100%;
  }
  
  /* =============================
     BLOG SECTION
  ============================= */
  .home-blog-section {
    padding: 80px 10%;
    text-align: center;
  }
  
  .home-blog-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .home-blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .home-blog-card:hover {
    transform: translateY(-5px);
  }
  
  .home-blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .home-blog-card h3 {
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 15px 0;
    line-height: 1.5;
  }
  
  .home-date {
    display: block;
    padding: 10px 15px 20px;
    font-size: 0.9rem;
    color: #666;
  }
  
  .home-blog-btn-wrap {
    margin-top: 40px;
  }
  
  /* Swiper */
  .swiper {
    padding-bottom: 50px;
  }
  
  .swiper-pagination-bullet {
    background: #00997a;
    opacity: 0.5;
  }
  
  .swiper-pagination-bullet-active {
    background: #00997a;
    opacity: 1;
  }


  /* Case Study Section */
.home-case-study {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
  }
  
  .home-case-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
  }
  
  /* Slide Layout */
  .home-case-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    text-align: left;
  }
  
  .home-case-image {
    flex: 1;
    text-align: center;
  }
  
  .home-case-image img {
    max-width: 450px;
    border-radius: 12px;
    width: 100%;
  }
  
  .home-case-content {
    flex: 1;
  }
  
  .home-case-logo {
    max-width: 120px;
    margin-bottom: 20px;
  }
  
  .home-case-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .home-case-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
  }
  
  /* Pagination */
  .home-case-study .swiper-pagination-bullet {
    background: #00997a;
    opacity: 0.4;
  }
  
  .home-case-study .swiper-pagination-bullet-active {
    opacity: 1;
  }

  .home-media-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }
  .home-media-left {
    flex: 0 0 260px;
    border-right: 1px solid #e6e6e6;
    padding-right: 30px;
  }
  .home-media-right{
    width: 100%;
    overflow: hidden;
  }
  .home-media-right .swiper
 {
    padding-bottom: 15px;
}


.home-solutions-section {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
  }
  
  .home-solutions-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
  }
  
  .home-solutions-swiper {
    padding-bottom: 50px;
  }
  
  .home-solution-card {
    background: #f6f9fb;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .home-solution-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .home-solution-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .home-solution-footer span {
    font-size: 0.9rem;
    color: #555;
    letter-spacing: 2px;
  }
  
  .home-solution-footer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  
  /* Swiper Pagination */
  .swiper-pagination-bullet {
    background: #00997a;
    opacity: 0.4;
  }
  .swiper-pagination-bullet-active {
    background: #00997a;
    opacity: 1;
  }
 
  /* Make swiper slides equal height */
.home-solutions-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch; /* ensures equal height */
  }
  
  .home-solutions-swiper .swiper-slide {
    height: auto; /* allow flex to control height */
    display: flex;
  }
  
  .home-solution-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f6f9fb;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
  }

  .home-solutions-swiper .swiper-wrapper {
    display: flex !important;
  }
  
  .home-solutions-swiper .swiper-slide {
    flex: 0 0 auto !important;  /* ✅ Don’t auto-stretch */
    width: auto !important;     /* Let Swiper JS decide width */
    max-width: 27.33%;         /* ✅ Ensure only 3 fit in row */
  }
  .home-page .swiper-pagination-bullets.swiper-pagination-horizontal{
    left: unset !important;
  }
  /* =============================
     RESPONSIVE BREAKPOINTS
  ============================= */
  @media (max-width: 1200px) {
    .home-hero-content h1 {
      font-size: 3.5rem;
    }
  }
  
  @media (max-width: 992px) {
    .home-hero-section {
      flex-direction: column;
      text-align: center;
      height: auto;
    }
    .home-hero-content {
      max-width: 100%;
    }
    .expert-container {
      flex-direction: column;
      text-align: center;
    }
    .expert-content {
      text-align: center;
      margin-top: 30px;
    }
    .home-exchange-container {
      flex-direction: column;
      text-align: center;
    }
    .home-exchange-content {
      margin-bottom: 30px;
    }
    .home-counter-container {
      flex-direction: column;
    }
    .home-counters {
      border-left: none;
      padding-left: 0;
    }
    .home-case-container {
        flex-direction: column;
        text-align: center;
      }
    
      .home-case-content {
        margin-top: 30px;
        text-align: center;
      }

      .home-solution-card {
        text-align: center;
      }
      .home-solution-footer {
        flex-direction: column;
        gap: 10px;
      }
  }
  
  @media (max-width: 768px) {
    .home-hero-content h1 {
      font-size: 2.5rem;
    }
    .home-web3-section h2,
    .expert-content h2,
    .home-exchange-content h2 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .home-blog-card img {
      height: 180px;
    }
  }
  