/* form start */
:root{
    --icmt-primary: #8E0000;
    --icmt-secondary: #D32F2F;
    --icmt-accent: #FFD700;
    --icmt-light: #F5F5F5;
    --icmt-dark: #333333;
}

.icmt-hero-section {
    background: linear-gradient(135deg, var(--icmt-primary) 0%, var(--icmt-secondary) 100%);
    padding: 40px 0;
    color: white;
    border-bottom: 5px solid var(--icmt-accent);
}

.icmt-logo-container {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
}

.icmt-logo {
    max-width: 100%;
    height: auto;
}

.icmt-institution-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
}

.icmt-feature-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.icmt-feature-card:hover {
    transform: translateY(-5px);
}

.icmt-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--icmt-accent);
}

.icmt-feature-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.icmt-main-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.icmt-main-heading b {
    color: var(--icmt-accent);
}

.icmt-form-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.icmt-form-title {
    color: var(--icmt-primary);
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

.icmt-form-label {
    color: var(--icmt-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.icmt-form-input {
    border: 2px solid #e9e9e9;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.icmt-form-input:focus {
    border-color: var(--icmt-primary);
    box-shadow: 0 0 0 0.25rem rgba(142, 0, 0, 0.25);
}

.icmt-btn-primary {
    background: var(--icmt-primary);
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.icmt-btn-primary:hover {
    background: var(--icmt-secondary);
    transform: translateY(-2px);
}

.icmt-benefits-container {
    display: flex;
    justify-content: space-around;
    margin-top: 35px;
    flex-wrap: wrap;
}

.icmt-benefit-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    margin: 10px;
}

.icmt-benefit-icon {
    font-size: 2.8rem;
    color: var(--icmt-primary);
    margin-bottom: 10px;
}

.icmt-benefit-text {
    font-weight: 700;
    color: var(--icmt-primary);
    font-size: 0.9rem;
    line-height: 1.3;
}

.icmt-accreditation {
    background: var(--icmt-accent);
    color: var(--icmt-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .icmt-main-heading {
        font-size: 1.8rem;
    }
    
    .icmt-feature-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .icmt-hero-section {
        padding: 30px 0;
    }
    
    .icmt-main-heading {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .icmt-benefits-container {
        flex-direction: column;
        align-items: center;
    }
    
    .icmt-benefit-item {
        margin-bottom: 25px;
    }
    
    .icmt-form-container {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .icmt-institution-name {
        font-size: 1.2rem;
    }
    
    .icmt-main-heading {
        font-size: 1.4rem;
    }
    
    .icmt-feature-icon {
        font-size: 2rem;
    }
    
    .icmt-feature-text {
        font-size: 1rem;
    }
    
    .icmt-benefit-icon {
        font-size: 2.2rem;
    }
}
/* form End */

/* ICMT Feature Section Start */
     .icmt-features-section {
            padding: 60px 0;
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
        }
        
        .icmt-feature-card1 {
            border: 5px solid #fff;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(139, 0, 0, 0.15);
            background-color: white;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .icmt-feature-card1:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(139, 0, 0, 0.2);
        }
        
        .icmt-card-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: #8B0000;
            font-size: 1.8rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .icmt-card-text {
            color: #333;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        .icmt-card-btn {
            background-color: #8B0000;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 200px;
        }
        
        .icmt-card-btn:hover {
            background-color: #6D0000;
            transform: scale(1.05);
        }
        
        .icmt-section-heading {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: #8B0000;
            margin-bottom: 40px;
            font-size: 2.5rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .icmt-card-title {
                font-size: 1.6rem;
            }
            
            .icmt-feature-card1 {
                padding: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .icmt-section-heading {
                font-size: 2rem;
            }
            
            .icmt-card-title {
                font-size: 1.5rem;
            }
            
            .icmt-feature-card1 {
                margin-bottom: 25px;
            }
        }
        
        @media (max-width: 576px) {
            .icmt-features-section {
                padding: 40px 0;
            }
            
            .icmt-section-heading {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .icmt-card-title {
                font-size: 1.4rem;
            }
            
            .icmt-card-text {
                font-size: 1rem;
            }
            
            .icmt-card-btn {
                padding: 10px 20px;
            }
        }
/* ICMT Feature Section End */

/* 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 US 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 */

          /* Career prospects section styles */
        .career-section {
            background-color: #8B0000; /* Dark red */
            padding: 80px 0;
            margin-top: 50px;
            position: relative;
        }
        
        /* Section heading */
        .career-heading {
            text-align: center;
            font-size: 3.5rem;
            color: white;
            font-weight: 700;
            margin-bottom: 60px;
            font-family: 'Montserrat', sans-serif;
        }
        
        /* Career card styling */
        .career-card {
            background-color: transparent;
            border: 2px solid white;
            border-radius: 8px;
            margin-bottom: 30px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .career-card:hover {
            transform: translateY(-5px);
        }
        
        .career-card-body {
            padding: 25px 20px;
        }
        
        .career-card-title {
            text-align: center;
            color: white;
            font-weight: 700;
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
        }
        
        .career-card-text {
            text-align: center;
            color: white;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .career-heading {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .career-heading {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }
            
            .career-card {
                margin-bottom: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .career-section {
                padding: 60px 0;
            }
            
            .career-heading {
                font-size: 2.2rem;
                margin-bottom: 30px;
            }
            
            .career-card-title {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .career-heading {
                font-size: 1.8rem;
            }
            
            .career-card-body {
                padding: 20px 15px;
            }
            
            .career-card-title {
                font-size: 1.2rem;
            }
            
            .career-card-text {
                font-size: 0.95rem;
            }
        }

        /* Scroll Start */
          /* Custom selectors */
        .stat-section {
            background-color: rgb(251, 231, 231);
            padding: 40px 10px;
        }
        
        .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;
        }
        
    /*  marquee Start  */
    
        .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;
        }
    /*  marquee End  */

    /* Satrt of Alumni  */
     .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;
        }
    /* End of Alumni  */
