



/* slider for export card 1 by 1 */
body{background:#f8f9fa}

/* CARD STYLE */
.mhn-item{padding:10px}
.mhn-inner{
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 4px 10px rgba(0,0,0,.15);
  text-align:center;
}
.mhn-inner img{
  width:100%;
  height:250px;
  object-fit:cover;
}
.mhn-text{
  padding:15px;
}
.mhn-text h4{
  font-weight:700;
  margin-bottom:5px;
}
.mhn-text p{
  color:#777;
  margin:0;
}

/* NAV BUTTONS */
.owl-prev,.owl-next{
  position:absolute;
  top:40%;
  background:#fff !important;
  width:40px;
  height:40px;
  border-radius:50%;
  box-shadow:0 3px 6px rgba(0,0,0,.3);
}
.owl-prev{left:-20px}
.owl-next{right:-20px}
@media (max-width: 768px)
{
.img-fluid {
    border: 2px solid white;
    max-width: 100%;
    height: 50%;
}
}
.container-with
{
  width: 100%;
  height: 70%;
}
/* latest export css */
        :root {
            --primary-color: #ff6b6b;
            --secondary-color: #ff8e8e;
            --text-dark: #333;
            --text-light: #777;
            --light-bg: #fff9f9;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        .experts-section {
            background-color: #fff9f9;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .experts-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 142, 142, 0.05) 100%);
            z-index: 1;
        }
        
        .section-title {
            position: relative;
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 60px;
            z-index: 2;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .expert-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 25px 15px;
        }
        
        .expert-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.15);
        }
        
        .expert-img-container {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        
        .expert-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .expert-card:hover .expert-img {
            transform: scale(1.05);
        }
        
        .expert-info {
            text-align: center;
            padding: 0 10px;
        }
        
        .expert-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 5px;
        }
        
        .expert-role {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-bottom: 8px;
        }
        
        .expert-role::after {
            content: "";
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--primary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .expert-description {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .expert-social {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 10px;
        }
        
        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .expert-card {
                margin-bottom: 30px;
            }
            
            .expert-img-container {
                width: 160px;
                height: 160px;
            }
        }
        
        @media (max-width: 576px) {
            .experts-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
        
        .expert-card:nth-child(2) {
            margin-top: 10px;
        }
        
        .expert-card:nth-child(3) {
            margin-top: 20px;
        }
        
        /* Animation for cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .expert-card {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .expert-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .expert-card:nth-child(3) {
            animation-delay: 0.4s;
        }
        .experts-section
        {
          padding: 2px;
        }
        /* slider */
        /* Expert Slider Styles */
.experts-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 50px;
}

.experts-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.expert-slide {
    flex: 0 0 33.33%;
    padding: 15px;
    box-sizing: border-box;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-slide {
    left: 0;
}

.next-slide {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive adjustments for slider */
@media (max-width: 992px) {
    .expert-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .expert-slide {
        flex: 0 0 100%;
    }
    
    .experts-slider-container {
        padding: 0 40px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .experts-slider-container {
        padding: 0 35px;
    }
}
.reviews-slider-track {
    display: flex;
    width: max-content; /* Important */
}