.why2-main-heading {
    font-size: 40px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why2-secondary-main-heading {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.why2-gradient-primary {
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
}

.why2-gradient-text {
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    opacity: 0;
}

.fade-in.animated {
    animation: fadeIn 1s ease-out forwards;
}

/* ========== SECTION 1: HERO ========== */
.why2-hero-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(220, 20, 60, 0.95) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 140px;
}

.why2-hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.why2-hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.why2-badge-emerging {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    animation: scaleIn 0.8s ease-out;
}

.why2-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.why2-hero-subtitle {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.why2-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why2-btn-primary-custom {
    padding: 16px 32px;
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.why2-btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.4);
    color: white;
}

.why2-btn-outline-custom {
    padding: 16px 32px;
    background: white;
    color: #8b0000;
    border: 2px solid #8b0000;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.why2-btn-outline-custom:hover {
    background: #8b0000;
    color: white;
    transform: translateY(-3px);
}

/* ========== SECTION 2: KIADB INDUSTRIAL GROWTH ========== */
.why2-bg-light-gradient {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.industry-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(220, 20, 60, 0.3);
}

.industry-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.industry-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

/* ========== SECTION 3: ROAD CONNECTIVITY ========== */
.connectivity-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
}

.connectivity-card:hover {
    transform: translateY(-10px);
    border-color: #8b0000;
}

.connectivity-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.connectivity-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.connectivity-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

/* ========== SECTION 4: RAILWAY CONNECTIVITY ========== */
.railway-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.railway-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.railway-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.railway-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
}

.railway-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
}

/* ========== SECTION 5: STRATEGIC LOCATION ========== */
.strategic-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.03) 0%, rgba(220, 20, 60, 0.03) 100%);
}

.highlight-banner {
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(139, 0, 0, 0.4);
    margin: 40px 0;
    transition: transform 0.3s ease;
}

.highlight-banner:hover {
    transform: scale(1.02);
}

.highlight-banner p {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.location-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.2);
    border-color: #dc143c;
}

.location-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.location-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.location-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

/* ========== SECTION 6: FUTURE READY ========== */
.why2-timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.timeline-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.why2-timeline-item:hover .timeline-number {
    transform: scale(1.15);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why2-timeline-item:hover .timeline-content {
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.timeline-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 0;
}

.closing-highlight {
    position: relative;
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 50%, #8b0000 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.4);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.closing-highlight:hover {
    transform: scale(1.02);
}

.closing-highlight::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.closing-highlight::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.closing-highlight p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.closing-icon {
    margin-bottom: 25px;
}

/* ========== FOOTER CTA ========== */
.footer-cta {
    background: #000000;
    color: white;
    text-align: center;
}

.footer-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.footer-cta p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 991px) {
    .main-heading {
        font-size: 32px;
    }

    .secondary-main-heading {
        font-size: 28px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section {
        padding: 35px 0;
    }
}

@media (max-width: 767px) {
    .main-heading {
        font-size: 28px;
    }

    .secondary-main-heading {
        font-size: 24px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section {
        padding: 30px 0;
    }

    .why2-btn-primary-custom,
    .why2-btn-outline-custom {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }

    .industry-card,
    .connectivity-card,
    .railway-card,
    .location-card {
        margin-bottom: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .highlight-banner p {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .closing-highlight p {
        font-size: 18px;
    }

    .industry-card h3,
    .connectivity-card h3,
    .location-card h3 {
        font-size: 20px;
    }

    .timeline-content h4 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .main-heading {
        font-size: 24px;
    }

    .secondary-main-heading {
        font-size: 22px;
    }

    .badge-emerging {
        font-size: 12px;
        padding: 8px 20px;
    }
}
