/*---------------------------------------------------- Patriotic Start---------------------------------------------- */

.patriotic {
    padding: 40px 20px 40px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.patriotic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: linear-gradient(135deg, var(--tertiary));
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    z-index: 1;
}

.patriotic::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    top: 40px;
    right: 60px;
    animation: floatBlob 8s ease-in-out infinite alternate;
}

@keyframes floatBlob {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(30px);
    }
}

.patriotic__container {
    max-width: 90%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.patriotic__content {
    max-width: 650px;
    color: var(--txt-secondary);
}

.patriotic__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--txt-secondary);
}

.patriotic__content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.patriotic__content .patriotic_name{
    font-style: italic;
    font-size: 20px;
    font-weight: 600;
}

.patriotic__image-wrap {
    margin-top: -60px;
    display: flex;
    justify-content: end;
}

.patriotic__image {
    width: 400px;
    aspect-ratio: 1.7;
    max-height: 300px;
    background: url("../images/jamshedji-img.jpg") center/cover no-repeat;
    border-radius: 12px;
    transform: rotate(-4deg);
    transition: 0.5s ease;
}

.patriotic__image:hover {
    transform: rotate(0deg) scale(1.03);
}

.patriotic__image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
}

/*---------------------------------------------------- Patriotic End---------------------------------------------- */


/* ------------------------------------------------------ IDEA Start----------------------------------------------- */
.idea {
    padding: 100px 0;
    position: relative;
}

.idea-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.idea-grid .about_icon img{
    width: 40px;
    height: 40px;
}

.idea-text .section-heading{
    max-width: 60%;
}

.idea-image{
    position: relative;
    width: 100%;
}

.idea-rev-dsk .idea-image{
    order: 1;
}

.idea-image::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: var(--tertiary);
    opacity: 0.8;
    z-index: 1;
    left: -20px;
    bottom: -20px;
    border-radius: 12px;
    animation: woggle 3s linear infinite;
}

@keyframes woggle{
    0%{
        transform: rotate(0deg) scale(1);
    }
    50%{
        transform: rotate(4deg) scale(0.98);
    }
    100%{
        transform: rotate(0deg) scale(1);
    }
}

.idea-image img {
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.highlight {
    font-size: 22px;
    font-weight: bold;
}

/* Floating stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.stat-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    min-width: 200px;
}

.stat-box i{
    font-size: 30px;
    margin-bottom: 10px;
}

.stat-box:hover {
    transform: translateY(-8px);
}

/* ------------------------------------------------------ IDEA End----------------------------------------------- */


/* -------------------------------------------- OUTCOME Start-------------------------------------------- */

.outcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #f5f5f5;
}

.outcome-quote{
    padding: 80px 20px 0;
    background: var(--tertiary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.outcome-quote .outcome_author{
    font-style: italic;
    font-size: 20px;
    font-weight: 600;
}

.outcome-list{
    padding: 80px 20px;
}


.outcome-img{
    width: 100%;
    display: flex;
    justify-content: end;
}

.outcome-img img{
    max-width: 250px;
}

.outcome-list .section-heading{
    margin-bottom: 20px;
}

.outcome-list ul {
    list-style: none;
}

.outcome-list li {
    margin-bottom: 15px;
}

.outcome-list i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 10px;
}

/* -------------------------------------------- OUTCOME End-------------------------------------------- */

/* ----------------------------------------------- CTA Start ----------------------------------------------- */
.mpc-cta {
    position: relative;
    padding: 100px 0;
    background: url('../images/iima-campus-2.jpg') rgba(0,0,0,0.6) center/cover no-repeat;
    background-blend-mode: darken;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.mpc-cta .cta-btn{
    margin: auto;
}

.mpc-cta .overlay {
    background: rgba(0, 0, 0, 0.7);
}

.mpc-cta .cta-content {
    position: relative;
}

/* ----------------------------------------------- CTA End ----------------------------------------------- */

/* ================= ANIMATION ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}