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

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

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

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

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

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

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

/* Responsive Hero Section */

/* Tablets */
@media (max-width: 992px) {
    .magadhsteelpipe-hero {
        height: 50vh;
    }

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

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

/* Mobile Phones */
@media (max-width: 768px) {
    .magadhsteelpipe-hero {
        height: 45vh;
        padding: 0 15px;
    }

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

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

/* Small Mobile Screens */
@media (max-width: 480px) {
    .magadhsteelpipe-hero {
        height: 40vh;
    }

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

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


/* Magadh GC Overview Section */
.magadhgc-overview {
    padding: 60px 6%;
    background: #f8f9fa;
}

.magadhgc-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #242176;
    /* Brand blue */
    margin-bottom: 30px;
}

.magadhgc-title span {
    color: #ee1d24;
    /* Brand red */
}

.magadhgc-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    text-align: justify;
}

/* Staggered animation for paragraphs */
.magadhgc-content p:nth-child(1) {
    animation-delay: 0.2s;
}

.magadhgc-content p:nth-child(2) {
    animation-delay: 0.4s;
}

.magadhgc-content p:nth-child(3) {
    animation-delay: 0.6s;
}

.magadhgc-content p:nth-child(4) {
    animation-delay: 0.8s;
}

.magadhgc-content p:nth-child(5) {
    animation-delay: 1s;
}

.magadhgc-content p:nth-child(6) {
    animation-delay: 1.2s;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .magadhgc-title {
        font-size: 28px;
    }

    .magadhgc-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .magadhgc-title {
        font-size: 24px;
    }

    .magadhgc-content p {
        font-size: 14px;
    }
}



/* Magadh Pipes Section */
.magadhpipe-section {
    padding: 60px 5%;
    background: #f9f9f9;
}

.magadhpipe-section h2 {
    text-align: center;
    font-size: 32px;
    color: #242176;
    margin-bottom: 40px;
}

.magadhpipe-section h2 span {
    color: #ee1d24;
    /* Magadh brand red */
}

/* Pipes Grid */
.magadhpipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Individual Card */
.magadhpipe-card {
    background-color: #242176;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.magadhpipe-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #f3e303;
    /* Red for title */
    transition: color 0.3s ease;
}

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

.magadhpipe-card:hover h3 {
    color: #fff;
}

/* Badges inside card */
.magadhpipe-card .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 13px;
    margin: 3px 3px 0 0;
}

/* Responsive for Tablets */
@media (max-width: 992px) {
    .magadhpipe-section h2 {
        font-size: 28px;
    }

    .magadhpipe-card h3 {
        font-size: 18px;
    }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .magadhpipe-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .magadhpipe-card h3 {
        font-size: 16px;
    }

    .magadhpipe-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .magadhpipe-grid {
        grid-template-columns: 1fr;
        /* Single column */
    }

    .magadhpipe-card {
        padding: 12px;
    }

    .magadhpipe-card h3 {
        font-size: 15px;
    }

    .magadhpipe-card .badge {
        font-size: 12px;
        padding: 4px 8px;
    }
}