* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.industries {
    padding: 100px 0;
}

.industries img {
    width: 100%;
    display: block;
}

.industries a {
    text-decoration: none;
}

.industries .container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
}

/* ======================
   HEADER
====================== */

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.top-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.top-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f59a45;
}

.section-tag {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 25px;
}

.heading-left h2 {
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.heading-left h2 span {
    color: #f59a45;
}

.view-btn {
    background: #f59a45;
    color: #000;
    padding: 15px 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: 0.3s ease;
    margin-top: 90px;
}

.view-btn:hover {
    transform: translateY(-2px);
}

/* ======================
   TABS
====================== */

.industry-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 70px;
}

.industry-card {
    position: relative;
    padding-bottom: 30px;
    cursor: pointer;
}

.industry-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #d9d9d9;
}

.industry-card.active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 2px;
    background: #cfd9ff;
    z-index: 2;
}

.count {
    font-size: 20px;
    font-weight: 500;
}

.industry-card h3 {
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
}

.industry-card p {
    color: #444;
    font-size: 18px;
}

/* ======================
   CONTENT
====================== */

.industry-content {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 20px;
    align-items: center;
}

.industry-image {
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.industry-info h3 {
    font-size: 45px;
    margin-bottom: 15px;
}

.industry-info h4 {
    font-size: 30px;
    margin-bottom: 15px;
}

.industry-info p {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 50px;
}

.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #f4cfad;
    border-radius: 60px;
    padding: 10px 10px 10px 28px;
    color: #000;
    transition: 0.3s ease;
}

.read-btn:hover {
    transform: translateY(-2px);
}

.circle-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid #f4cfad;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59a45;
}

/* ======================
   ANIMATION
====================== */

.fade {
    animation: fadeIn 0.4s ease;
}

/* Main Heading */


/* Industry Tab Titles */
.industry-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
}

/* Content Title */
.industry-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Content Subtitle */
.industry-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Section Tag */
.section-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
}

/* Description */
.industry-info p {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    line-height: 1.7;
    font-weight: 400;
    color: #333;
    margin-bottom: 50px;
}

/* Tab Description */
.industry-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #444;
}

/* Buttons */
.view-btn,
.read-btn {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 1200px) {

    .industry-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-content {
        grid-template-columns: 1fr;
    }

    .heading-left h2 {
        font-size: 58px;
    }
}

@media (max-width: 768px) {

    .industries {
        padding: 70px 0;
    }

    .industries-header {
        flex-direction: column;
        gap: 30px;
    }

    .industry-tabs {
        grid-template-columns: 1fr;
    }

    .heading-left h2 {
        font-size: 42px;
    }

    .industry-info h3 {
        font-size: 36px;
    }

    .industry-info h4 {
        font-size: 26px;
    }

    .industry-info p {
        font-size: 18px;
    }

    .industry-image img {
        height: auto;
    }
}