 
        .faculty-videos {
         
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }
        
        .faculty-videos::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(2, 68, 48, 0.1);
            pointer-events: none;
        }
        
        .container {
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            color: #333;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .section-title em {
            font-style: italic;
            color: #333;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 60px;
            line-height: 1.6;
        }
        
        .video-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .video-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #000;
        }
        
        .video-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }
        
        .video-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }
        
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .play-btn:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: white;
        }
        
        .play-btn::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid #333;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }
        
        .video-info {
            padding: 24px 0 0 10px;
            text-align: left;
        }
        
        .video-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .video-description {
            color: #666;
            line-height: 1.5;
            margin: 0;
        }
        
        .video-description strong {
            color: #333;
        }
        
        @media (max-width: 768px) {
            .faculty-videos {
                padding: 60px 0;
            }
            
            .video-container {
                padding: 30px 20px;
                border-radius: 16px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .video-card img {
                height: 220px;
            }
            
            .play-btn {
                width: 60px;
                height: 60px;
            }
            
            .play-btn::after {
                border-left: 16px solid #333;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
            }
        }
    
.card-hover {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.card-img-wrapper1 {
    position: relative;
    width: 100%;
    height: 150px !important; /* adjust as needed */
    border-radius: 12px;
    overflow: hidden;
}

/* 
.arrow-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;  
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transition: opacity 0.3s ease;
} */

.card-img-wrapper1:hover .arrow-icon {
    opacity: 0;
}
.arrow-icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-img-wrapper1:hover .arrow-icon-inline {
    opacity: 0;
    transform: translateX(4px); /* subtle move before disappearing */
}

.card-img-wrapper1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.card-hover:hover img {
    transform: scale(1.05);
}
.card-hover svg{
margin-bottom: 1px !important;
}
.card-hover:hover svg{
  display: none;
}
/* Dark gradient overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
   background: linear-gradient(to top, rgb(0 0 0), rgb(0 0 0 / 60%), rgba(2, 68, 48, 0));
    z-index: 1;
}

/* Text container */
.card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 15px;
    color: #fff;
    z-index: 2;
    transition: all 0.4s ease;
}

/* Title + arrow row */
.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.4s ease;
}

.card-title-row h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.card-arrow {
    font-size: 1rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

/* Description hidden initially */
.card-text .description {
    margin: 8px 0 0;
    font-size: 0.8rem;
    line-height: 1.3;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover effects */
.card-hover:hover .card-title-row {
    transform: translateY(-10px);
}

.card-hover:hover .card-text .description {
    opacity: 1;
    max-height: 100px; /* allow it to expand */
}

.card-hover:hover .card-arrow {
    transform: translateX(4px) translateY(-4px); /* lifts like ↗ */
    opacity: 1;
}

.timeline-row {
  display: flex;
  justify-content: center;  /* 🔥 this removes big gaps */
  align-items: flex-start;
  text-align: center;
  position: relative;
  gap: 10px;  /* adjust smaller gap */
}


.timeline-card {
  flex: 1 ;
  max-width: 150px;
  text-align: center;
  margin: 0 10px;
  position: relative;
  min-height: 200px;   /* same height for all */
}

/* Line connecting all cards */
.timeline-card::before {
  content: "";
  position: absolute;
  top: 50px;   /* fixed line height (aligns with icons) */
  left: -50%;
  right: -50%;
  height: 3px;
  background:#FFE7BB;
  z-index: 1;
}

/* remove extra line from first & last */
.timeline-card:first-child::before {
  left: 50%;
}
.timeline-card:last-child::before {
  right: 50%;
}

.timeline-img {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 100px !important;   /* fixed height for equal centering */
}



.timeline-img img {
  max-width: 80px;
  border-radius: 50%;
  background: #cde7d5;
  width: 100%;
  position: relative;
  z-index: 1;

}

.timeline-card p {
  text-align: center !important;
}

.bi-quote {
  color: rgb(6, 41, 6);
}

/* ---------------------- */
/* responsive design */
/* ---------------------- */

@media (max-width: 768px) {
  .timeline-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .timeline-row::-webkit-scrollbar {
    display: none;
  }

  .timeline-card {
    flex: 0 0 50%;      /* two cards per view */
    max-width: 50%;
    scroll-snap-align: center;
    margin: 0 auto;
  }
}

.bi-quote {
  color: #FFE7BB;
}
.timeline-row {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.timeline-card {
  scroll-snap-align: start;
}

.faculty-videos {
    color: #fff;
}

.video-card {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 12px;
}

.video-card img {
    width: 100%;
    border-radius: 12px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

    /* Remove default underline */
.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 290px; /* adjust as needed */
    overflow: hidden;
    border-radius: 12px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
   background: linear-gradient(to top, rgb(0 0 0), rgb(0 0 0 / 60%), rgba(2, 68, 48, 0));
    z-index: 1;
}

/* Title placement */
.card-text1 {
    position: absolute;
    bottom: 15px;        /* stick close to bottom */
    left: 50%;           /* center horizontally */
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    width: 90%;          /* prevent overflow */
}

.card-text1 p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}
    .custom-tabs {
    border-bottom: none;
    gap: 1rem;
    }
    .swiper-pagination {
  display: block !important;
}
    .custom-tabs .nav-link {
    border: none;
    border-radius: 10px;
    background: #f5f5f5;
    color: #333;
    font-weight: 500;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    }
    .cbtn{
      background-color: #ffe7bb !important;
      color:#024430 !important;
      font-size:18px !important;
      padding: 20px 30px !important;
    }
    .cbtn:hover{
      background-color: #024430 !important;
      color: #ffe7bb !important;
    }
    .cbtn svg{
      color:#024430 !important;
    }
    .cbtn:hover svg{
      stroke:#ffe7bb !important;
    }
    .custom-tabs .nav-link:hover {
    background: #e0e0e0;
    }

    .custom-tabs .nav-link.active {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    color: #000;
    font-weight: 600;
    }

    .five-per-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    }

    .five-per-row>div {
    width: 48%;
    /* Adjusted to allow 2 cards per row */
    margin-bottom: 30px;
    }

    .card-info {
    padding: 0px !important;
    }

    .arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0f5132;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    }

    .arrow-btn:hover {
    background-color: #0f5132;
    }

    .arrow-icon {
    width: 18px;
    height: 18px;
    stroke: #0f5132;
    transition: stroke 0.3s ease;
    }

    .arrow-btn:hover .arrow-icon {
    stroke: white;
    }


    @media (max-width: 992px) {
    .five-per-row>div {
      width: 48%;
      /* 2 per row on tablets */
    }
    }

    @media (max-width: 576px) {
    .five-per-row>div {
      width: 100%;
      /* 1 per row on phones */
    }
    }
    /* Default bullets */
/* Default bullets */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #9c9c9c; /* gray color for inactive dots */
    opacity: 1;          /* make them fully visible */
    margin: 0 4px;       /* spacing between dots */
    border-radius: 50%;  /* perfectly round */
    transition: all 0.3s ease;
}

/* Active bullet */
.swiper-pagination-bullet-active {
    background: #ffb400; /* yellow/orange like screenshot */
    width: 12px;         /* slightly bigger */
    height: 12px;
}

    /* Custom Navigation Arrow Styles */
    .hero-bg-carousel .swiper-button-next,
    .hero-bg-carousel .swiper-button-prev {
        color: white;
        background: rgba(0, 0, 0, 0.3);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-top: -25px;
        transition: all 0.3s ease;
    }
    
    .hero-bg-carousel .swiper-button-next:hover,
    .hero-bg-carousel .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.6);
        transform: scale(1.1);
    }
    
    .hero-bg-carousel .swiper-button-next::after,
    .hero-bg-carousel .swiper-button-prev::after {
        font-size: 20px;
        font-weight: bold;
    }
    
    /* Position arrows */
    .hero-bg-carousel .swiper-button-next {
        right: 30px;
    }
    
    .hero-bg-carousel .swiper-button-prev {
        left: 30px;
    }
    
    /* Hide arrows on mobile devices */
    @media (max-width: 768px) {
        .hero-bg-carousel .swiper-button-next,
        .hero-bg-carousel .swiper-button-prev {
            display: none;
        }
    }
        .blog-card {
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
      }

      .blog-image-container {
        position: relative;
        height: 240px;
        overflow: hidden;
      }

      .blog-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

      .blog-card:hover .blog-image {
        transform: scale(1.05);
      }

      .blog-category-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        color: #2c3e50;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: capitalize;
      }
       #podcasts .wow {
  visibility: visible !important;
  display: block !important;
  opacity: 1 !important;
}
      .podcast-category-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: #7dd3fc;
        color: #0c4a6e;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: capitalize;
      }

      .blog-content {
        padding: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }

      .blog-title {
        font-size: 20px;
        font-weight: 700;
        color: #1e293b;
        line-height: 1.3;
        margin: 0 0 12px 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .blog-date {
        color: #64748b;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 16px;
      }

      .blog-excerpt {
        color: #475569;
        font-size: 15px;
        line-height: 1.6;
        margin: 0 0 24px 0;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .read-more-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #059669;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: auto;
      }

      .read-more-link:hover {
        color: #047857;
        gap: 12px;
      }

      .arrow-icon {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
      }

      .read-more-link:hover .arrow-icon {
        transform: translateX(4px);
      }

      .podcast-actions {
        margin-top: auto;
      }
      .title-with-arrow h6,.title-with-arrow h5{
        font-family: "Outfit", sans-serif !important;
      }
      .listen-now-btn {
        background: #065f46;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 16px;
      }

      .listen-now-btn:hover {
        background: #047857;
        transform: translateY(-2px);
      }

      .play-icon {
        width: 16px;
        height: 16px;
      }

      .podcast-platforms {
        display: flex;
        gap: 12px;
      }

      .platform-link {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        text-decoration: none;
      }

      .platform-link svg {
        width: 20px;
        height: 20px;
      }

      .platform-link.youtube {
        background: #ff0000;
        color: white;
      }

      .platform-link.youtube:hover {
        background: #cc0000;
        transform: translateY(-2px);
      }

      .platform-link.spotify {
        background: #1db954;
        color: white;
      }

      .platform-link.spotify:hover {
        background: #1ed760;
        transform: translateY(-2px);
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .blog-image-container {
          height: 200px;
        }

        .blog-content {
          padding: 20px;
        }

        .blog-title {
          font-size: 18px;
        }

        .blog-excerpt {
          font-size: 14px;
        }
      }

      /* Swiper customization */
      .swiper-slide {
        height: auto;
        display: flex;
      }

      .swiper-wrapper {
        align-items: stretch;
      }

    /* Tab Button Styles */
    .custom-tabs .button-click {
        display: inline-block;
        padding: 7px 14px;
        background-color: #ffffff;
        border: 1px solid #CDE2E7;
        border-radius: 8px;
        color: #3D565F;
        text-decoration: none;
        font-size: 14px;
        line-height: 24px;
        transition: all 0.3s ease;
    }

    .custom-tabs .button-click.active,
    .custom-tabs .button-click:hover {
        background-color: #024430;
        border-color: #024430;
        color: #FFE7BB;
    }



    .swiper-slide {
        height: auto;
        margin-bottom: 24px;
    }
  /* Default (Desktop ≥ 1200px) */
.founder-card {
  margin-right: 60px;
  margin-left: 60px;
}
.founder-image {
  background-size: cover;
  position: absolute;
  left: 25%;
  height: 450px;
  max-width: 450px;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  z-index: 101;
  object-fit: cover;
}

/* Tablet (768px – 1199px) */
@media (max-width: 1199.98px) {
  .founder-card {
    margin-right: -50px;
    margin-left: -50px;
  }
  .founder-image {
    left: 25%;
    height: 470px;
    max-width: 470px;
  }
  .founder-tab {
    padding-left: 100px;
  }
}

/* Mobile (≤ 767px) */
@media (max-width: 767.98px) {
  .founder-image {
    background-size: cover;
    position: absolute;
    left: 25%;
    height: 320px;
    max-width: 320px;
    transform: translate(-21%, -100%);
    border-radius: 15px;
    z-index: 101;
    object-fit: cover;
  }
  .founder-card {
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 50px;
    padding-top: 230px;
  }
}

  .static-hero {
  position: relative;
  height: 480px;

  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 30px;
  font-style: italic;
  margin-bottom: 25px;
}

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-watch:hover {
  background: #fff;
  color: #000;
}

.btn-watch .icon {
  width: 18px;
  height: 18px;
}




/* Default desktop view */
.team-grid-desktop { display: flex !important; }
.team-swiper-mobile { display: none !important; }

/* Mobile override */
@media (max-width: 767px) {
    .team-grid-desktop { display: none !important; }
    .team-swiper-mobile { display: block !important; }
    .swiper-pagination { display: none !important; }
}

@media (max-width: 767px) {
    .box-button {
        justify-self: start !important;
        text-align: left !important;
        margin-top: -30px !important;
        margin-bottom: 30px !important;
    }
}
.btn-watch-white:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.btn-watch-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}
.btn-watch-white .icon {
  width: 18px;
  height: 18px;
}

/* .startup-section {
  background-color: #000;
  border-radius: 20px;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
} */

.image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.startup-image-back {
  position: relative;
  width: 110%;   /* wider */
  height:400px;   /* slightly shorter */
  max-width: 460px;
  border-radius: 15px;
  z-index: 100;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.startup-image-front {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;   /* narrower */
  height: 450px; /* full height */
  max-width: 400px;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  z-index: 101;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}


.content-container {
  background-color: #fff;
  border-radius: 15px;
  padding: 50px 40px;
  padding-left:500px  ;
  margin-left: -450px;
  position: relative;
  z-index: 0;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.projects-label {
  color: #999;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 400;
}

.main-title {
  color: #333;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  font-style: italic;
}

.description {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 400px;
}

.cta-button {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button::before {
  content: '✕';
  font-size: 12px;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .content-container {
    margin-left: 0;
    margin-top: -30px;
    padding: 40px 30px;
    text-align: center;
  }
  .ccm{
    margin-left: 0px !important;
  }
  .startup-image {
    height: 350px;
  }

  .main-title {
    font-size: 32px;
  }
}
@media (max-width: 1199.98px) {
  .ccm {
    flex-direction: column !important;
    margin-left: 0 !important;
  }
  .content-container {
    margin-left: 0;
    margin-top: -30px;
    padding: 40px 30px;
    text-align: center;
  }
}

      /* Reduced font size for tabs */
      .tab-link-small {
      font-size: 0.9rem !important;
      padding: 8px 16px !important;
      margin: 0 5px !important;
      }

      /* Center tabs */
      .list-buttons.justify-content-center {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      }

      .list-buttons .nav-item {
      margin: 5px 3px;
      }

      /* Reduce margins in content */
      .box-business-tab {
      padding-left: 15px;
      padding-right: 15px;
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
      .tab-link-small {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
      }

      .section.mb-30 {
        margin-bottom: 20px;
      }

      .section.pt-30 {
        padding-top: 20px;
      }

      .section.pb-30 {
        padding-bottom: 20px;
      }
      }

      @media (max-width: 576px) {
      .tab-link-small {
        font-size: 0.75rem !important;
        padding: 5px 10px !important;
      }

      .list-buttons .nav-item {
        margin: 3px 2px;
      }
      }
      
    

                            .list-socials .icon-socials {
                                color: #024430 !important;
                                filter: none !important; /* removes white override */
                            }
                          
                                                  

  .cta-button {
  background-color: #024430;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}


.cta-button::before {
  content: '✕';
  font-size: 12px;
  transform: rotate(45deg);
}
        