/* Magadh Wire Hero Section */
.magadh-wire-hero {
    position: relative;
    background: url("../images/magadhwire.webp") center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Overlay */
.magadh-wire-hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 40px;
    border-radius: 12px;
    animation: magadhWireFadeIn 2s ease-in-out;
}

/* Title */
.magadh-wire-hero-title {
    font-size: 42px;
    color: #fff;
}

.magadh-wire-hero-title span {
    color: #ee1d24;
    /* Magadh brand red */
}

/* Subtitle */
.magadh-wire-hero-subtitle {
    font-size: 18px;
    color: #ddd;
    margin-top: 10px;
}

/* Fade-in Animation */
@keyframes magadhWireFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero Section */
@media (max-width: 992px) {
    .magadh-wire-hero {
        height: 50vh;
    }

    .magadh-wire-hero-title {
        font-size: 32px;
    }

    .magadh-wire-hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .magadh-wire-hero {
        height: 45vh;
        padding: 0 15px;
    }

    .magadh-wire-hero-title {
        font-size: 26px;
    }

    .magadh-wire-hero-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .magadh-wire-hero {
        height: 40vh;
    }

    .magadh-wire-hero-title {
        font-size: 22px;
    }

    .magadh-wire-hero-subtitle {
        font-size: 13px;
    }
}


/* Magadh Wire Content Section */
.magadh-wire-content {
    padding: 60px 6%;
    background: #fff;
}

.magadh-wire-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.magadh-wire-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 20px;
}

.magadh-wire-text h2 span {
    color: var(--brand-red);
}

.magadh-wire-text p {
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 16px;
    color: #444;
    animation: magadhWireFadeInUp 0.8s ease forwards;
    opacity: 0;
}

/* Staggered animation for paragraphs */
.magadh-wire-text p:nth-child(2) {
    animation-delay: 0.2s;
}

.magadh-wire-text p:nth-child(3) {
    animation-delay: 0.4s;
}

.magadh-wire-text p:nth-child(4) {
    animation-delay: 0.6s;
}

/* Fade-in-up keyframes */
@keyframes magadhWireFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .magadh-wire-text h2 {
        font-size: 24px;
    }

    .magadh-wire-text p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .magadh-wire-text h2 {
        font-size: 20px;
    }

    .magadh-wire-text p {
        font-size: 14px;
    }
}


/* Magadh Wire Overview Section */
.magadh-wire-overview {
    padding: 60px 6%;
    background: #fff;
}

/* Section Titles */
.magadh-wire-overview h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-blue);
    text-align: center;
    margin: 40px 0 20px;
}

.magadh-wire-overview h2 span {
    color: var(--brand-red);
}

/* Product Range Grid */
.magadh-wire-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.magadh-wire-product-card {
    background: #242176;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.magadh-wire-product-card h3 {
    font-size: 18px;
    color: #f1f505;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.magadh-wire-product-card p {
    font-size: 14px;
    color: #fff;
}

.magadh-wire-product-card:hover {
    background: linear-gradient(135deg, #ee1d24, #242176);
}

.magadh-wire-product-card:hover h3 {
    color: #fff;
}

/* Advantages Grid */
.magadh-wire-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Advantage Cards */
.magadh-wire-adv-card {
    background: #242176;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Staggered animation for each card */
.magadh-wire-adv-card:nth-child(1) {
    animation-delay: 0.2s;
}

.magadh-wire-adv-card:nth-child(2) {
    animation-delay: 0.4s;
}

.magadh-wire-adv-card:nth-child(3) {
    animation-delay: 0.6s;
}

.magadh-wire-adv-card:nth-child(4) {
    animation-delay: 0.8s;
}

.magadh-wire-adv-card:nth-child(5) {
    animation-delay: 1s;
}

.magadh-wire-adv-card:nth-child(6) {
    animation-delay: 1.2s;
}

/* Icons */
.magadh-wire-adv-icon {
    font-size: 30px;
    color: #ff0000;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

/* Titles */
.magadh-wire-adv-card h3 {
    font-size: 20px;
    color: #d9ff01;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

/* Paragraphs */
.magadh-wire-adv-card p {
    font-size: 15px;
    color: #fff;
}

/* Hover effects */
.magadh-wire-adv-card:hover {
    background: linear-gradient(135deg, #ee1d24, #242176);
}

.magadh-wire-adv-card:hover h3,
.magadh-wire-adv-card:hover .magadh-wire-adv-icon {
    color: #fff;
}

/* Fade-in-up animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .magadh-wire-overview h2 {
        font-size: 24px;
    }

    .magadh-wire-product-card h3,
    .magadh-wire-adv-card h3 {
        font-size: 18px;
    }

    .magadh-wire-product-card p,
    .magadh-wire-adv-card p {
        font-size: 14px;
    }

    .magadh-wire-adv-icon {
        font-size: 25px;
    }
}