.nav-link {
  @apply text-black text-[15px] font-[400] px-4 py-2 hover:text-[#F68250] transition duration-300;
}
.mobile-link {
  @apply text-xl text-white py-2 hover:text-[#F68250] transition duration-300;
}

.nav-link {
  color: black;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 8px;
  transition: 0.3s;
}
.nav-link:hover {
  color: #f68250;
}
.mobile-nav-link {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
}
.mobile-nav-link:hover {
  color: #f68250;
}







/* Speakers */
.speakers-section {
    padding: 6rem 1rem;
    background: linear-gradient(to top right, #ffffff, #e0c7ff, #3b82f6);
    position: relative;
}

.speaker-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.speakers-title {
    font-size: 2.5rem; /* Tailwind's text-4xl */
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(to right, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem; /* Tailwind's gap-12 */
}

.speaker-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.speaker-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.speaker-image-container {
    position: relative;
    margin-bottom: 1.5rem;
    width: 140px; /* Set width for the image */
    height: 150px; /* Set height for the image */
    margin-left: auto;
    margin-right: auto;
}

.speaker-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #facc15, #fb923c);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.speaker-image {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 10;
    transition: transform 0.3s;
}

.speaker-name {
    font-size: 1.5rem; /* Tailwind's text-2xl */
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #7c3aed; /* Tailwind's text-purple-500 */
}

.speaker-role {
    color: #000; /* Tailwind's text-black */
}

.view-all-button-container {
    text-align: center;
    margin-top: 3rem;
}

.view-all-button {
    padding: 0.75rem 1.5rem;
    border: 2px solid #7c3aed; /* Tailwind's border-purple-500 */
    color: #7c3aed; /* Tailwind's text-purple-500 */
    background: white;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.view-all-button:hover {
    background: #7c3aed; /* Tailwind's bg-purple-500 */
    color: white; /* Tailwind's text-white */
}

.chevron-right {    margin-left: 0.5rem; /* Adjust spacing */}
.chevron-left {    margin-right: 0.5rem; /* Adjust spacing */}


@keyframes pulse {    0%, 100% {        transform: scale(1);    }    50% {       transform: scale(1.05);}}