/* =========================
   Tabs Styling
========================= */
.nav-tabs {
    border-bottom: none !important;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 40px;

}

/* Base tab style */
.nav-linkk {
    border: none !important;
    padding: 0 !important;
    color: #b0b0b0 !important;
    font-weight: 600 !important;
    font-size: 27px !important;
    font-family: "Poppins" !important;
    background: transparent !important;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

/* Active tab */
.nav-linkk.active {
    color: #000 !important;
}

/* Pink circle only on active tab */
.nav-linkk::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #a333c8;
    border-radius: 50%;
    display: inline-block;
    transform: scale(0);
    transition: transform 0.3s ease;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Show circle when active */
.nav-linkk.active::before {
    transform: scale(1);
}

/* =========================
   Content Styling
========================= */
.content-text,
.contentPara {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.btn-outline-dark {
    border-radius: 0;
    padding: 10px 25px;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* =========================
   Video / Image Container
========================= */
.video-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    display: block;
}

/* Play button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/* Play icon */
.play-icon {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #000;
    margin-left: 5px;
}


.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Swiper Container Padding to show partial cards on sides */
.swiper {
    width: 100%;
    height: 450px;
    padding-bottom: 50px;
}

/* Card Styling */
.case-study-card {
    position: relative;
    height: 450px;
    border-radius: 0;
    /* Square edges like image */
    overflow: hidden;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

/* Dark Gradient Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    transition: transform 0.3s ease;
}

.case-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.card-title {
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* See More Button - Hidden by default */
.see-more-btn {
    /* display: inline-block; */
    /* padding: 10px 25px; */
    /* background-color: #fff; */
    /* color: #000; */
    /* text-decoration: none; */
    /* font-weight: 600; */
    /* font-size: 0.9rem; */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Hover Effects */
.case-study-card:hover .card-bg {
    transform: scale(1.1);
}

.case-study-card:hover .card-content {
    transform: translateY(-10px);
}

.case-study-card:hover .see-more-btn {
    opacity: 1;
    transform: translateY(0);
}