/* Hero section styling */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1584697964358-3e14ca57658b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
    line-height: 1.2;
}

.btn-danger {
    background-color: darkred;
    border-color: darkred;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 8px;
}

.btn-danger:hover {
    background-color: #b30000;
    border-color: #b30000;
    transform: scale(1.05);
}

/* Cards styling */
.cards-container {
    position: relative;
    z-index: 10;
    margin-top: -150px;
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.25);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-body {
    padding: 25px;
}

.card hr {
    height: 3px;
    opacity: 0.8;
    margin: 15px auto;
    width: 80px;
    background: rgba(255, 255, 255, 0.7);
}

.btn-light {
    background-color: white;
    color: darkred;
    border: none;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-light:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
}

/* Features section */
.features-section {
    padding: 100px 0 50px;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: darkred;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: darkred;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .cards-container {
        margin-top: -120px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .cards-container {
        margin-top: -80px;
    }
    
    .card {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn-danger {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .cards-container {
        margin-top: -60px;
    }
}
/* Hero section styling End */

.courses-header{
    text-align: center;
    margin: 50px 0 30px;
    padding: 0 15px;
}

.courses-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.courses-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background-color: darkred;
}

.courses-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: justify;
}

.courses-subtitle b {
    color: darkred;
    font-weight: 700;
}

.course-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 30px;
    text-align: center;
}

.card-title {
    color: darkred;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.btn-course {
    background: linear-gradient(to right, darkred, #b30000);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-course:hover {
    background: linear-gradient(to right, #b30000, darkred);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .courses-title {
        font-size: 2.8rem;
    }
    
    .courses-subtitle {
        font-size: 1.2rem;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .courses-title {
        font-size: 2.3rem;
    }
    
    .courses-subtitle {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .courses-title {
        font-size: 2rem;
    }
    
    .courses-subtitle {
        font-size: 1rem;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .btn-course {
        padding: 10px 25px;
    }
}

.academic-programs {
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.programs-header {
    text-align: center;
    margin-bottom: 50px;
}

.programs-title {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(90deg, #831212 0%, #c53030 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.programs-subtitle {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.programs-subtitle b {
    color: #831212;
    font-weight: 600;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.programs-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.program-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-left: 5px solid #831212;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.program-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-name {
    font-size: 22px;
    margin-bottom: 15px;
    color: #831212;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.program-description {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 22px;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

.program-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(90deg, #831212 0%, #c53030 100%);
    color: white;
    padding: 12px 26px;
    font-size: 17px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(131, 18, 18, 0.25);
    border: none;
    cursor: pointer;
}

.program-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(131, 18, 18, 0.35);
}

.all-courses-btn {
    display: block;
    margin: 50px auto;
    border: none;
    background: linear-gradient(90deg, #9a0000 0%, #c53030 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(154, 0, 0, 0.3);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.all-courses-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(154, 0, 0, 0.4);
}

.icon-right {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.all-courses-btn:hover .icon-right {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (min-width: 640px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .programs-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 639px) {
    .programs-title {
        font-size: 34px;
    }
    
    .programs-subtitle {
        font-size: 16px;
    }
    
    .program-content {
        padding: 22px;
    }
    
    .program-name {
        font-size: 20px;
    }
    
    .program-description {
        font-size: 16px;
    }
    
    .program-button {
        padding: 10px 22px;
        font-size: 16px;
    }
    
    .all-courses-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

.program-badge {
    background: linear-gradient(90deg, #831212 0%, #c53030 100%);
    color: white;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.degree-badge {
    background: linear-gradient(90deg, #2b6cb0 0%, #4299e1 100%);
}

.diploma-badge {
    background: linear-gradient(90deg, #38a169 0%, #48bb78 100%);
}

.master-badge {
    background: linear-gradient(90deg, #9f2cbf 0%, #d53f8c 100%);
}

/* Achivement Start */
   .stats-container {
    background: linear-gradient(135deg, #750000 0%, #9d0000 100%);
    padding: 0px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 30px 0;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.stats-column {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 20px 15px;
    transition: transform 0.3s ease;
}

.stats-column:hover {
    transform: translateY(-5px);
}

.stats-icon {
    color: white;
    font-size: 60px;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.stats-column:hover .stats-icon {
    color: #ffd700;
    transform: scale(1.1);
}

.stats-value {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stats-label {
    color: white;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 5px;
}

.stats-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-top: 3px;
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-column {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.stats-column:nth-child(1) {
    animation-delay: 0.1s;
}

.stats-column:nth-child(2) {
    animation-delay: 0.2s;
}

.stats-column:nth-child(3) {
    animation-delay: 0.3s;
}

.stats-column:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .stats-value {
        font-size: 38px;
    }
    
    .stats-label {
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .stats-row {
        gap: 20px;
    }
    
    .stats-column {
        min-width: 200px;
        flex: 0 0 calc(50% - 20px);
    }
    
    .stats-value {
        font-size: 36px;
    }
    
    .stats-label {
        font-size: 16px;
    }
    
    .stats-icon {
        font-size: 55px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        padding: 40px 15px;
    }
    
    .stats-column {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 25px 15px;
    }
    
    .stats-value {
        font-size: 34px;
    }
    
    .stats-label {
        font-size: 17px;
    }
    
    .stats-icon {
        font-size: 50px;
    }
}

@media (max-width: 576px) {
    .stats-container {
        padding: 30px 10px;
        border-radius: 12px;
    }
    
    .stats-column {
        padding: 20px 10px;
    }
    
    .stats-value {
        font-size: 32px;
    }
    
    .stats-label {
        font-size: 16px;
    }
    
    .stats-icon {
        font-size: 45px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 36px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}
/* Achivement End */

/* Why choose Start */
 .features-section {
            padding: 60px 20px;
            background-color: #f9f9f9;
        }
        
        .features-heading {
            text-align: center;
            margin-bottom: 50px;
            font-size: 42px;
            font-weight: 700;
            color: #333;
        }
        
        .features-heading span {
            color: #830000;
        }
        
        .features-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            padding: 30px 25px;
            width: 100%;
            max-width: 350px;
            transition: all 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            color: #830000;
            font-size: 55px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            color: #c53030;
            transform: scale(1.1);
        }
        
        .feature-title {
            color: #830000;
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 18px;
            text-align: center;
        }
        
        .feature-description {
            font-size: 18px;
            color: #444;
            line-height: 1.6;
            text-align: center;
        }
        
        /* Responsive Design */
        @media screen and (min-width: 768px) {
            .feature-card {
                width: calc(50% - 30px);
            }
        }
        
        @media screen and (min-width: 992px) {
            .feature-card {
                width: calc(33.333% - 30px);
            }
        }
        
        @media screen and (max-width: 767px) {
            .features-heading {
                font-size: 34px;
                margin-bottom: 40px;
            }
            
            .feature-card {
                max-width: 100%;
                padding: 25px 20px;
            }
            
            .feature-icon {
                font-size: 50px;
            }
            
            .feature-title {
                font-size: 22px;
            }
            
            .feature-description {
                font-size: 17px;
            }
        }
        
        @media screen and (max-width: 480px) {
            .features-section {
                padding: 40px 15px;
            }
            
            .features-heading {
                font-size: 30px;
            }
            
            .feature-card {
                padding: 20px 15px;
            }
            
            .feature-icon {
                font-size: 45px;
            }
            
            .feature-title {
                font-size: 20px;
            }
            
            .feature-description {
                font-size: 16px;
            }
        }
        
        /* Animation for cards */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .feature-card {
            animation: fadeIn 0.6s ease forwards;
            opacity: 0;
        }
        
        .feature-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .feature-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .feature-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .feature-card:nth-child(4) {
            animation-delay: 0.4s;
        }
        
        .feature-card:nth-child(5) {
            animation-delay: 0.5s;
        }
        
        .feature-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        /* Why choose us End */

        .alumni-companies {
            padding: 40px 20px;
            background-color: #f8f9fa;
        }
        
        .alumni-heading {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #333;
            margin-bottom: 40px;
        }
        
        .alumni-heading span {
            color: #850202;
        }
        
        .companies-marquee {
            background-color: #850202;
            padding: 30px 0;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .companies-container {
            display: flex;
            width: 100%;
            animation: scroll-left 30s linear infinite;
            padding: 0 20px;
        }
        
        .companies-container:hover {
            animation-play-state: paused;
        }
        
        .company-icon {
            color: white;
            font-size: 70px;
            margin: 0 40px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .company-icon:hover {
            color: #ffd700;
            transform: scale(1.2);
        }
        
        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        /* Responsive adjustments */
        @media screen and (max-width: 1200px) {
            .company-icon {
                font-size: 65px;
                margin: 0 35px;
            }
        }
        
        @media screen and (max-width: 992px) {
            .alumni-heading {
                font-size: 32px;
            }
            
            .company-icon {
                font-size: 60px;
                margin: 0 30px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .alumni-companies {
                padding: 30px 15px;
            }
            
            .alumni-heading {
                font-size: 28px;
                margin-bottom: 30px;
            }
            
            .companies-marquee {
                padding: 25px 0;
            }
            
            .company-icon {
                font-size: 50px;
                margin: 0 25px;
            }
            
            .companies-container {
                animation-duration: 25s;
            }
        }
        
        @media screen and (max-width: 576px) {
            .alumni-companies {
                padding: 25px 10px;
            }
            
            .alumni-heading {
                font-size: 24px;
                margin-bottom: 25px;
            }
            
            .companies-marquee {
                padding: 20px 0;
                border-radius: 8px;
            }
            
            .company-icon {
                font-size: 40px;
                margin: 0 20px;
            }
            
            .companies-container {
                animation-duration: 20s;
                padding: 0 15px;
            }
        }
        
        /* Duplicate content for seamless looping */
        .companies-container::after {
            content: "";
            display: none;
        }
        
        /* Double the icons for smoother animation */
        .companies-container {
            width: 200%;
        }
        
        /* Add a gradient fade effect on the edges */
        .companies-marquee::before,
        .companies-marquee::after {
            content: "";
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
        }
        
        .companies-marquee::before {
            left: 0;
            background: linear-gradient(to right, #850202 0%, transparent 100%);
        }
        
        .companies-marquee::after {
            right: 0;
            background: linear-gradient(to left, #850202 0%, transparent 100%);
        }
        
        /* Animation for icons */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .company-icon {
            animation: pulse 3s ease-in-out infinite;
        }
        
        .company-icon:nth-child(2n) {
            animation-delay: 0.5s;
        }
        
        .company-icon:nth-child(3n) {
            animation-delay: 1s;
        }
        
        .company-icon:nth-child(4n) {
            animation-delay: 1.5s;
        }



            .alumni-success {
            padding: 60px 20px;
            background-color: #f8f9fa;
        }
        
        .alumni-success-heading {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #333;
            margin-bottom: 50px;
        }
        
        .alumni-success-heading span {
            color: #001f3f;
        }
        
        .alumni-carousel-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .alumni-carousel {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .alumni-slide {
            min-width: 100%;
            padding: 30px;
            box-sizing: border-box;
        }
        
        .alumni-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .alumni-card-header {
            background-color: darkred;
            color: white;
            padding: 20px;
            font-size: 20px;
            font-weight: 600;
            text-align: center;
        }
        
        .alumni-card-body {
            padding: 30px;
            text-align: center;
        }
        
        .alumni-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 4px solid #001f3f;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .alumni-name {
            color: #001f3f;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .alumni-company {
            color: #555;
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .alumni-quote {
            color: #444;
            font-size: 18px;
            line-height: 1.6;
            font-style: italic;
        }
        
        .carousel-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }
        
        .carousel-btn {
            background-color: darkred;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-btn:hover {
            background-color: #003366;
            transform: scale(1.1);
        }
        
        .carousel-indicators {
            display: flex;
            justify-content: center;
            margin-top: 25px;
            gap: 12px;
        }
        
        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-indicator.active {
            background-color: #001f3f;
            transform: scale(1.2);
        }
        
        /* Responsive adjustments */
        @media screen and (max-width: 992px) {
            .alumni-success-heading {
                font-size: 32px;
            }
            
            .alumni-card-body {
                padding: 25px;
            }
            
            .alumni-name {
                font-size: 22px;
            }
            
            .alumni-quote {
                font-size: 17px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .alumni-success {
                padding: 40px 15px;
            }
            
            .alumni-success-heading {
                font-size: 28px;
                margin-bottom: 40px;
            }
            
            .alumni-slide {
                padding: 20px;
            }
            
            .alumni-card-header {
                padding: 15px;
                font-size: 18px;
            }
            
            .alumni-card-body {
                padding: 20px;
            }
            
            .alumni-image {
                width: 100px;
                height: 100px;
            }
            
            .alumni-name {
                font-size: 20px;
            }
            
            .alumni-company {
                font-size: 16px;
            }
            
            .alumni-quote {
                font-size: 16px;
            }
            
            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }
        
        @media screen and (max-width: 576px) {
            .alumni-success-heading {
                font-size: 24px;
            }
            
            .alumni-slide {
                padding: 15px;
            }
            
            .alumni-card-header {
                padding: 12px;
                font-size: 16px;
            }
            
            .alumni-card-body {
                padding: 15px;
            }
            
            .alumni-image {
                width: 80px;
                height: 80px;
            }
            
            .alumni-name {
                font-size: 18px;
            }
            
            .alumni-company {
                font-size: 15px;
            }
            
            .alumni-quote {
                font-size: 15px;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .carousel-indicator {
                width: 10px;
                height: 10px;
            }
        }
        
        /* Animation for cards */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .alumni-card {
            animation: fadeIn 0.6s ease forwards;
        }

        /* Custom selectors */
        .stat-section {
            background-color: rgb(251, 231, 231);
            padding: 40px 0;
        }
        
        .stat-heading {
            font-size: 35px;
            font-weight: bold;
            color: rgb(0, 0, 0);
            line-height: 1.2;
        }
        
        .stat-underline {
            width: 170px;
            border: 4px solid darkred;
            margin-top: 15px;
            margin-bottom: 20px;
        }
        
        .stat-number {
            font-size: 90px;
            font-weight: bold;
            color: darkred;
            line-height: 1;
        }
        
        /* action Start */
        .action-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            height: 95%;
        }
        
        .action-card-body {
            background-color: darkred;
            padding: 25px 20px;
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .action-card-title {
            font-size: 23px;
            color: white;
            margin-bottom: 20px;
        }
        
        .btn-action {
            background-color: white;
            color: darkred;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-action:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
       