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

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

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

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

/* Subtitle */
.magadhgc-sheet-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) {
    .magadhgc-sheet-hero {
        height: 50vh;
    }

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

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

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

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

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

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

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

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



/* Magadh GC Sheet Info Section */
.magadhgc-sheet-info {
    padding: 80px 6%;
    background: #fff;
}

/* Text Column */
.magadhgc-text-column {
    max-width: 900px;
    margin: 0 auto;
}

.magadhgc-text-column h2 {
    font-size: 32px;
    color: #242176;
    margin-bottom: 20px;
}

.magadhgc-text-column h2 span {
    color: #ee1d24;
}

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

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

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

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .magadhgc-text-column h2 {
        font-size: 26px;
    }

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

@media (max-width: 480px) {
    .magadhgc-text-column h2 {
        font-size: 22px;
    }

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




/* Container */
.magadhgc-sheet-product-range {
    padding: 60px 6%;
    background: #fff;
}

/* Section Title */
.gc-sheet-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.gc-sheet-section-title h2 {
    font-size: 32px;
    color: #242176;
    /* Brand blue */
    margin-bottom: 10px;
}

.gc-sheet-section-title h2 span {
    color: #ee1d24;
    /* Brand red if needed */
}

.gc-sheet-section-title p {
    font-size: 16px;
    color: #555;
}

/* Cards Grid */
.gc-sheet-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Individual Card */
.gc-sheet-card {
    background: #242176;
    /* Brand color */
    color: #fff;
    padding: 20px 15px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
}

.gc-sheet-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #e5ff00;
    /* Red title */
    transition: color 0.3s ease;
}

.gc-sheet-card h3:hover {
    color: #fff;
    /* White on hover */
}

.gc-sheet-card p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Badges */
.gc-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 13px;
    margin-bottom: 5px;
    display: inline-block;
}

.gc-badge span {
    font-weight: 600;
    margin-right: 5px;
}

/* Hover gradient effect */
.gc-sheet-card:hover {
    background: linear-gradient(135deg, #ee1d24, #242176);
}

/* Responsive */
@media (max-width: 992px) {
    .gc-sheet-section-title h2 {
        font-size: 28px;
    }

    .gc-sheet-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .gc-sheet-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gc-sheet-section-title h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .gc-sheet-cards {
        grid-template-columns: 1fr;
    }

    .gc-sheet-section-title h2 {
        font-size: 22px;
    }
}



/* Container and general titles */
.magadhgcsheet-overview .container {
    padding: 60px 6%;
}

/* Section Titles */
.magadhgcsheet-section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #242176;
    margin-bottom: 25px;
}

.magadhgcsheet-section-title span {
    color: #ee1d24;
}

/* Features Grid */
.magadhgcsheet-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.magadhgcsheet-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: default;
}

.magadhgcsheet-feature-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #ee1d24, #1b5dbf);
    color: #fff;
}

.magadhgcsheet-feature-card h3 {
    font-size: 16px;
    margin-top: 12px;
}

.magadhgcsheet-icon {
    font-size: 36px;
    color: #242176;
    transition: color 0.3s ease;
}

.magadhgcsheet-feature-card:hover .magadhgcsheet-icon {
    color: #fff;
}

/* Applications Grid */
.magadhgcsheet-applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.magadhgcsheet-app-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: default;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.magadhgcsheet-app-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #ee1d24, #1b5dbf);
    color: #fff;
}

/* Advantages Grid */
.magadhgcsheet-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.magadhgcsheet-adv-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: default;
}

.magadhgcsheet-adv-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #ee1d24, #1b5dbf);
    color: #fff;
}

.magadhgcsheet-adv-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.magadhgcsheet-adv-card p {
    font-size: 14px;
    color: #444;
}

.magadhgcsheet-adv-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #242176;
    transition: color 0.3s ease;
}

.magadhgcsheet-adv-card:hover .magadhgcsheet-adv-icon {
    color: #fff;
}

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

    .magadhgcsheet-feature-card h3,
    .magadhgcsheet-adv-card h3 {
        font-size: 16px;
    }

    .magadhgcsheet-adv-card p {
        font-size: 13px;
    }

    .magadhgcsheet-icon,
    .magadhgcsheet-adv-icon {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .magadhgcsheet-section-title {
        font-size: 22px;
    }

    .magadhgcsheet-feature-card h3,
    .magadhgcsheet-adv-card h3 {
        font-size: 15px;
    }

    .magadhgcsheet-adv-card p {
        font-size: 12px;
    }

    .magadhgcsheet-icon,
    .magadhgcsheet-adv-icon {
        font-size: 28px;
    }
}