.modern-info-section {
    background: #f8f9fc;
}

/* Card Style */
.modern-card {
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    /* Animation on page load */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
    /* delay for stagger effect if multiple cards */
}

/* Gradient border effect */
.modern-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #1f2f5f, #3a6cf4);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}
.modern-btn {
    position: relative;
    z-index: 2;
}
/* Icon Style */
.modern-icon {
    width: 80px;
    height: 80px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;

    /* Icon hover animation */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.modern-icon i {
    font-size: 30px;
    color: #fff;
}

/* Card Text */
.modern-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 18px;
}

.modern-card p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Button */
.modern-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, #719da7 0px, #345f68db 59%, #345f68c9 59%, #81a2a9 100%);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 10px
}

.modern-btn:hover {
    background: #3a6cf4;
    color: #fff;
}

/* Hover Effect on Card */
.modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    /* slight scale for depth */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Icon Hover inside Card */
.modern-card:hover .modern-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px rgba(58, 108, 244, 0.3);
}

/* Animation Keyframes */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

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

.objectives-section {
    background: #f4f7fc;
}

.objectives-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Section Title */
.section-title h2 {
    font-weight: 700;
    color: #345f68;
}


/* Paragraph */
.objective-text {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Sub Heading */
.sub-heading {
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2f5f;
}

/* List Styling */
.objective-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.objective-list li {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.objective-list li i {
    color: #345f68;
    font-size: 16px;
    margin-top: 3px;
}


/* Table Heading */
.table-heading {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #345f68;
}

/* Modern Table */
.modern-table {
    width: 100%;
    border-collapse: collapse;
}

.modern-table thead {
    background-color: #345f68;
    color: #fff;
}

.modern-table th,
.modern-table td {
    padding: 15px;
    border: 1px solid #eee;
    font-size: 14px;
}

.modern-table tbody tr:hover {
    background: #f1f5ff;
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .objectives-card {
        padding: 30px 20px;
    }
}

.team-strip {
    background: #f8f9fa;
    padding: 18px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--dark);
    transition: 0.3s ease;
    height: 125px;
}

.team-strip h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.team-strip p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.team-strip:hover {
    background: #eef4ff;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .team-strip {
        height: auto;
    }
}

@media (max-width: 767px) {
    .box-scsacs {
        height: auto;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .appear-animation .avscsa {
        height: auto;
        margin-top: 20px;
    }
}

.why-ashoka-section {
    background-color: #f4f4f4;
}

.why-box {
    border: 1px solid #e1e1e1;
    border-bottom: 4px solid #345f68;
    padding: 25px;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease-in-out;

}

/* Hover Effect */
.why-box:hover {
    background: #345f68;
    border-color: #345f68;
    transform: translateY(-5px);
}

/* Icon */
.why-icon {
    width: 60px;
    margin-bottom: 15px;
    transition: filter 0.3s ease;
}

/* Icon white on hover */
.why-box:hover .why-icon {
    filter: brightness(0) invert(1);
}

/* Headings */
.why-heading {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

/* Text */
.why-text {
    font-size: 15px;
    color: #555;
    transition: color 0.3s ease;
}

/* Text & Heading White on Hover */
.why-box:hover .why-heading,
.why-box:hover .why-text {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .why-box {
        text-align: center;
        padding: 20px;
    }

    .why-icon {
        margin: 0 auto 15px;
    }
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}


.alumini-strip {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--dark);
    transition: 0.3s ease;
    /* height: 125px; */
}

.alumini-strip:hover {
    background: #eef4ff;
    transform: translateX(5px);
}


.alumini-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
}

.alumini-sub-heading {
    font-size: 22px;
    font-weight: 700;
}
