:root {
    --primary-color: #943bc4;
    --secondary-color: #6D30FB;
    --heading-color: #010F34;
    --primary-black-color: #063232;
    --gray-color: #F8F8F8;
    --white-color: #ffffff;
    --text-color: #797E88;
    --border-color: #D8DDE1;
}

.page-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('../../images/industries/banner.png') center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.page-content p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

/* About Section */
.ind-about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.ind-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ind-about-text h4 {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--heading-color);
}

.ind-about-description p {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Industries Section */
.ind-section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.ind-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.ind-industries-section {
    padding: 100px 0;
    background: var(--gray-color);
}

.ind-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.ind-industry-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(148, 59, 196, 0.08);
}

.ind-industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    /* transform: scaleX(0); */
    /* transform-origin: left; */
    transition: transform 0.4s ease;
}

.ind-industry-card:hover::before {
    transform: scaleX(1);
}

.ind-industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(148, 59, 196, 0.05) 0%, rgba(109, 48, 251, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ind-industry-card:hover::after {
    opacity: 1;
}

.ind-industry-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(148, 59, 196, 0.2);
}

.ind-industry-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(148, 59, 196, 0.1) 0%, rgba(109, 48, 251, 0.1) 100%);
    border-radius: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    padding: 10px;
}

.ind-industry-card:hover .ind-industry-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.1);
}

.ind-industry-card:hover .ind-industry-icon img {
    filter: brightness(0) invert(1);
}

.ind-industry-icon i {
    font-size: 40px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.ind-industry-card:hover .ind-industry-icon i {
    color: var(--white-color);
    transform: rotate(5deg);
}

.ind-industry-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.ind-industry-card:hover h3 {
    color: var(--primary-color);
}

.ind-industry-card p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.ind-explore-link {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.ind-explore-link:hover {
    gap: 15px;
    color: var(--secondary-color);
}

.ind-explore-link i {
    transition: transform 0.3s ease;
}

.ind-industry-card:hover .ind-explore-link i {
    transform: translateX(5px);
}

/* Transformation Section */
.ind-transformation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.ind-transformation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    /* padding-left: 120px; */
}

.ind-transformation-text p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ind-transformation-text {
    padding: 20px 100px;
}

.ind-transformation-image {
    position: relative;
    height: 700px;
    border-radius: 20px 0px 0px 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(148, 59, 196, 0.2);
}

.ind-transformation-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(148, 59, 196, 0.1) 0%, rgba(109, 48, 251, 0.1) 100%);
    z-index: 1;
}

.ind-transformation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ind-transformation-image:hover img {
    transform: scale(1.08);
}

/* Insights Section */
.ind-insights-section {
    padding: 100px 0;
    background: var(--gray-color);
}

.ind-insights-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.ind-insights-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--heading-color);
}

.ind-see-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.ind-see-all-link:hover {
    gap: 15px;
    color: var(--secondary-color);
}

.ind-insights-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.ind-insights-tabs::-webkit-scrollbar {
    height: 5px;
}

.ind-insights-tabs::-webkit-scrollbar-track {
    background: var(--gray-color);
}

.ind-insights-tabs::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.ind-tab-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 12px 5px;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 600;
}

.ind-tab-btn.active {
    color: var(--primary-color);
}

.ind-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.ind-tab-btn.active::after {
    width: 100%;
}

.ind-tab-btn:hover {
    color: var(--primary-color);
}

.ind-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.ind-insight-card {
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(148, 59, 196, 0.08);
}

.ind-insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(148, 59, 196, 0.15);
}

.ind-insight-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.ind-insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ind-insight-card:hover .ind-insight-image img {
    transform: scale(1.15);
}

.ind-insight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 15, 52, 0.7) 0%, transparent 60%);
}

.ind-insight-content {
    padding: 30px;
}

.ind-insight-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.ind-insight-card:hover .ind-insight-content h3 {
    color: var(--primary-color);
}

.ind-insight-content p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.ind-insight-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 13px;
    color: var(--text-color);
    flex-wrap: wrap;
}

.ind-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ind-read-more:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Newsletter Section */
.ind-newsletter-section {
    padding: 49px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    margin: 0px 80px 60px;
    border-radius: 25px;
}

.ind-newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.ind-newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.ind-newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.ind-newsletter-text h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ind-newsletter-text p {
    font-size: 16px;
    opacity: 0.9;
}

.ind-newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.ind-newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    background: var(--white-color);
    font-size: 15px;
    outline: none;
    border-radius: 50px;
    color: var(--heading-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.ind-newsletter-form input::placeholder {
    color: var(--text-color);
}

.ind-newsletter-form button {
    padding: 18px 45px;
    background: var(--white-color);
    color: var(--primary-color);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.ind-newsletter-form button:hover {
    background: var(--heading-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Agenda Section */
.ind-agenda-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.ind-agenda-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200&q=80') center/cover;
    opacity: 0.05;
}

.ind-agenda-content {
    position: relative;
    z-index: 2;
}

.ind-agenda-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--heading-color);
}

.ind-agenda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.ind-agenda-item {
    padding: 45px 35px;
    background: var(--white-color);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ind-agenda-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: height 0.4s ease;
}

.ind-agenda-item:hover::before {
    height: 100%;
}

.ind-agenda-item:hover {
    background: linear-gradient(135deg, rgba(148, 59, 196, 0.05) 0%, rgba(109, 48, 251, 0.05) 100%);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(148, 59, 196, 0.15);
}

.ind-agenda-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.ind-agenda-item:hover h3 {
    color: var(--primary-color);
}

.ind-agenda-item p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.ind-agenda-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ind-agenda-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {

    .ind-about-content,
    .ind-transformation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ind-industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .ind-newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .ind-newsletter-form {
        max-width: 100%;
    }

    .ind-section-title,
    .ind-transformation-text h2,
    .ind-insights-header h2,
    .ind-agenda-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 60vh;
    }

    .ind-about-section,
    .ind-industries-section,
    .ind-transformation-section,
    .ind-insights-section,
    .ind-newsletter-section,
    .ind-agenda-section {
        padding: 60px 0;
    }

    .ind-about-text h4 {
        font-size: 22px;
    }

    .ind-section-title,
    .ind-transformation-text h2,
    .ind-insights-header h2,
    .ind-agenda-title {
        font-size: 28px;
    }

    .ind-insights-grid {
        grid-template-columns: 1fr;
    }

    .ind-agenda-grid {
        grid-template-columns: 1fr;
    }

    .ind-newsletter-form {
        flex-direction: column;
    }

    .ind-newsletter-form input,
    .ind-newsletter-form button {
        width: 100%;
    }

    .ind-newsletter-text h3 {
        font-size: 28px;
    }

    .ind-transformation-image {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .ind-industries-grid {
        grid-template-columns: 1fr;
    }

    .ind-industry-card {
        padding: 30px 20px;
    }

    .ind-insights-tabs {
        gap: 20px;
    }
}

/* Agenda Slider Section */
.agenda-slider-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    padding: 80px 0;
}

/* Background Images Container */
.agenda-backgrounds {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.agenda-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.agenda-bg-image.active {
    opacity: 1;
}

.agenda-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
}

/* Decorative Shapes */
.agenda-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.agenda-bg-image.active .shape {
    opacity: 0.6;
}

/* Content */
.agenda-content-wrapper {
    position: relative;
    z-index: 3;
}

.agenda-header {
    margin-bottom: 50px;
}

.agenda-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
}

/* Slider Container */
.agenda-slider-container {
    position: relative;
    padding: 0 80px;
}

.agenda-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Agenda Card */
.agenda-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 45px 35px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.agenda-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(135deg, #6b4eff, #8b5cf6);
    transition: height 0.4s ease;
}

.agenda-card:hover::before,
.agenda-card.active::before {
    height: 100%;
}

.agenda-card:hover,
.agenda-card.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: linear-gradient(135deg, #6b4eff, #8b5cf6);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.agenda-card-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.agenda-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.agenda-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.agenda-discover-link {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.agenda-discover-link:hover {
    gap: 15px;
    color: var(--card-border-color);
}

.agenda-discover-link i {
    transition: transform 0.3s ease;
}

/* Navigation Arrows */
.agenda-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white-color);
    font-size: 20px;
}

.agenda-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.agenda-nav.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.agenda-nav-prev {
    left: 10px;
}

.agenda-nav-next {
    right: 10px;
}

/* Progress Dots */
.agenda-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.agenda-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.agenda-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.agenda-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1200px) {
    .agenda-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .agenda-slider-section {
        padding: 60px 0;
    }

    .agenda-title {
        font-size: 32px;
    }

    .agenda-slider-container {
        padding: 0 60px;
    }

    .agenda-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .agenda-nav {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .agenda-slider-container {
        padding: 0 50px;
    }

    .agenda-card {
        padding: 35px 25px;
    }

    .agenda-card h3 {
        font-size: 24px;
    }

    .agenda-nav {
        width: 45px;
        height: 45px;
    }

    .agenda-nav-prev {
        left: 5px;
    }

    .agenda-nav-next {
        right: 5px;
    }
}