
        .alumni-container {
            width: 100%;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Main Hero Slider */
        .alumni-hero-slider-container {
            position: relative;
            width: 100%;
            height: 450px;
            margin-bottom: 40px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .alumni-hero-slider {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .alumni-hero-slide {
            width: 33.333%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .alumni-hero-slide img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
     
        }
        
        .alumni-hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 41, 128, 0.85), rgba(38, 208, 206, 0.75));
         
        }
        
        .alumni-slide-content {
            position: relative;
      
            max-width: 800px;
            transform: translateY(20px);
                        animation: alumni-slide-up 0.8s forwards 0.3s;
        }
        
        @keyframes alumni-slide-up {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .alumni-hero-slide h2 {
            font-size: 3rem;
            margin-bottom: 25px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
            font-weight: 700;
            line-height: 1.2;
        }
        
        .alumni-hero-slide p {
            font-size: 1.3rem;
            max-width: 800px;
            margin-bottom: 30px;
            text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
            font-weight: 300;
            line-height: 1.8;
        }
        
        .alumni-slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }
        
        .alumni-slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .alumni-slider-dot.active {
            background-color: white;
            transform: scale(1.2);
            border-color: #ffcc00;
            box-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
        }
        
        .alumni-slider-dot:hover {
            background-color: white;
            transform: scale(1.1);
        }
        
        .alumni-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 3;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .alumni-slider-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
            border-color: white;
        }
        
        .alumni-slider-arrow.prev {
            left: 25px;
        }
        
        .alumni-slider-arrow.next {
            right: 25px;
        }
        
        /* About Section */
        .alumni-about-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .alumni-main-content {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
        
        .alumni-main-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, #1a2980, #26d0ce);
        }
        
        .alumni-section-title {
            color: #1a2980;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 15px;
            margin-bottom: 25px;
            font-size: 2rem;
            font-weight: 700;
            position: relative;
        }
        
        .alumni-section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #1a2980, #26d0ce);
        }
        
        .alumni-notice-box {
            background: linear-gradient(135deg, #fff8e1, #ffecb3);
            border-left: 8px solid #ffcc00;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(255, 204, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .alumni-notice-box::before {
            content: '!';
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 3rem;
            color: rgba(255, 204, 0, 0.2);
            font-weight: bold;
        }
        
        .alumni-notice-box h3 {
            color: #ff8f00;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .alumni-hero-image {
            border-radius: 15px;
            height: 350px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .alumni-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .alumni-hero-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 41, 128, 0.3), rgba(38, 208, 206, 0.3));
        }
        
        /* Patton Quote Section */
        .alumni-patton-quote-section {
            background: linear-gradient(135deg, #1a2980 0%, #2a5298 100%);
            padding: 40px;
            margin-bottom: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(26, 41, 128, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .alumni-patton-quote-section::before {
            content: "❝";
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 6rem;
            color: rgba(255, 255, 255, 0.1);
            font-family: serif;
        }
        
        .alumni-patton-quote-section::after {
            content: "❞";
            position: absolute;
            bottom: 20px;
            right: 30px;
            font-size: 6rem;
            color: rgba(255, 255, 255, 0.1);
            font-family: serif;
        }
        
        .alumni-patton-quote {
            font-size: 1.8rem;
            font-style: italic;
            color: white;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        
        .alumni-patton-author {
            text-align: right;
            font-weight: bold;
            color: #ffcc00;
            font-size: 1.3rem;
            position: relative;
            z-index: 1;
        }
        
        /* Memorial Section */
        .alumni-memorial-section {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            margin-bottom: 40px;
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border-left: 8px solid #1a2980;
            transition: transform 0.3s;
        }
        
        .alumni-memorial-section:hover {
            transform: translateY(-5px);
        }
        
        .alumni-memorial-img {
            border-radius: 12px;
            height: 430px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .alumni-memorial-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .alumni-memorial-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 41, 128, 0.3);
            z-index: 1;
        }
        
      
        
        .alumni-memorial-content h3 {
            color: #1a2980;
            margin-bottom: 20px;
            font-size: 2rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        .alumni-memorial-content h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #1a2980, #26d0ce);
            border-radius: 2px;
        }
        
        .alumni-memorial-content h4 {
            color: #d32f2f;
            margin-bottom: 15px;
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .alumni-memorial-dates {
            color: #666;
            margin-bottom: 15px;
            font-size: 1.2rem;
            padding: 10px 0;
            border-bottom: 2px dashed #eee;
        }
        
        .alumni-memorial-award {
            background: linear-gradient(135deg, #ffebee, #ffcdd2);
            padding: 15px 25px;
            border-radius: 10px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: bold;
            color: #c62828;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(198, 40, 40, 0.1);
            border-left: 5px solid #c62828;
        }
        
        /* Alumni Slider */
        .alumni-featured-slider-container {
            position: relative;
            width: 100%;
            margin: 50px 0;
            padding: 30px 0;
            background: linear-gradient(135deg, #1a2980 0%, #2a5298 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(26, 41, 128, 0.25);
        }
        
        .alumni-featured-slider-title {
            text-align: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 40px;
            padding-top: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            position: relative;
        }
        
        .alumni-featured-slider-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ffcc00, #ffd700);
            border-radius: 2px;
        }
        
        .alumni-featured-slider {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 0 20px;
        }
        
        .alumni-featured-slide {
            min-width: 33.333%;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .alumni-featured-card {
            background: white;
            border-radius: 15px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            height: 340px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }
        
        .alumni-featured-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #1a2980, #26d0ce);
        }
        
        .alumni-featured-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            border-color: #26d0ce;
        }
        
        .alumni-featured-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 25px;
            border: 5px solid white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
        
        .alumni-featured-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .alumni-featured-photo::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            animation: alumni-photo-glow 3s infinite;
        }
        
        @keyframes alumni-photo-glow {
            0%, 100% { opacity: 0; }
            50% { opacity: 0.5; }
        }
        
        .alumni-featured-name {
            color: #1a2980;
            font-size: 1.6rem;
            margin-bottom: 12px;
            font-weight: 700;
        }
        
        .alumni-featured-batch {
            color: #26d0ce;
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: 600;
            background: rgba(38, 208, 206, 0.1);
            padding: 5px 15px;
            border-radius: 20px;
            display: inline-block;
        }
        
        .alumni-featured-position {
            color: #d32f2f;
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.4;
            padding: 10px;
            border-radius: 8px;
            background: rgba(211, 47, 47, 0.05);
            border-left: 4px solid #d32f2f;
        }
        
        .alumni-featured-nav {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }
        
        .alumni-featured-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .alumni-featured-dot.active {
            background-color: #ffcc00;
            transform: scale(1.2);
            border-color: white;
        }
        
        .alumni-featured-dot:hover {
            background-color: white;
            transform: scale(1.1);
        }
        
        .alumni-featured-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 3;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .alumni-featured-arrow:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-50%) scale(1.1);
            color: #ffcc00;
            border-color: #ffcc00;
        }
        
        .alumni-featured-arrow.prev {
            left: 25px;
        }
        
        .alumni-featured-arrow.next {
            right: 25px;
        }
        
        /* Events Section */
        .alumni-events-section {
            margin-bottom: 50px;
        }
        
        .alumni-events-title {
            color: #1a2980;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .alumni-events-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #1a2980, #26d0ce);
        }
        
        .alumni-soldier-quote {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            font-style: italic;
            text-align: center;
            font-size: 1.4rem;
            color: #2e7d32;
            border-left: 8px solid #4caf50;
            box-shadow: 0 10px 25px rgba(76, 175, 80, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .alumni-soldier-quote::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 5rem;
            color: rgba(76, 175, 80, 0.2);
            font-family: serif;
        }
        
        .alumni-events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .alumni-event-card {
            background: white;
            padding: 35px 25px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            border-top: 5px solid transparent;
        }
        
        .alumni-event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #1a2980, #26d0ce);
        }
        
        .alumni-event-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .alumni-event-icon {
            font-size: 3.5rem;
            color: #1a2980;
            margin-bottom: 25px;
            background: linear-gradient(135deg, rgba(26, 41, 128, 0.1), rgba(38, 208, 206, 0.1));
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s;
        }
        
        .alumni-event-card:hover .alumni-event-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, #1a2980, #26d0ce);
            color: white;
        }
        
        .alumni-event-card h3 {
            color: #1a2980;
            margin-bottom: 20px;
            font-size: 1.6rem;
            font-weight: 700;
        }
        
        /* Cards Section */
        .alumni-cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .alumni-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.4s;
            position: relative;
        }
        
        .alumni-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .alumni-card-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .alumni-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .alumni-card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 41, 128, 0.1), rgba(38, 208, 206, 0.1));
        }
        
        .alumni-card-content {
            padding: 25px;
        }
        
        .alumni-card-title {
            color: #1a2980;
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        /* Alumni Profiles Section */
        .alumni-profiles-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .alumni-profile-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 25px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        
        .alumni-profile-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, #1a2980, #26d0ce);
        }
        
        .alumni-profile-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .alumni-profile-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            flex-shrink: 0;
            overflow: hidden;
        }
        
        .alumni-profile-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Content Section */
        .alumni-content-section {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .alumni-side-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .alumni-content-box {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .alumni-content-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        /* View More Button */
        .alumni-view-more {
            display: inline-block;
            background: linear-gradient(45deg, #1a2980, #26d0ce);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(26, 41, 128, 0.2);
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .alumni-view-more::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .alumni-view-more:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(26, 41, 128, 0.3);
        }
        
        .alumni-view-more:hover::before {
            left: 100%;
        }
        
        /* Address Footer */
        .alumni-address-footer {
            background: linear-gradient(135deg, #1a2980 0%, #2a5298 100%);
            color: white;
            padding: 50px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(26, 41, 128, 0.25);
            position: relative;
            overflow: hidden;
        }
        
        .alumni-address-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, #ffcc00, #ffd700);
        }
        
        .alumni-institute-name-footer {
            font-size: 2.2rem;
            margin-bottom: 30px;
            color: #ffcc00;
            font-weight: 700;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        
        .alumni-address-details {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
            padding: 0 20px;
        }
        
        .alumni-address-details p {
            margin-bottom: 10px;
        }
        
        .alumni-copyright {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .alumni-feedback-link {
            display: inline-block;
            background: linear-gradient(45deg, #ffcc00, #ffd700);
            color: #1a2980;
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 20px;
            transition: all 0.3s;
            box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
            border: none;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
        }
        
        .alumni-feedback-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .alumni-feedback-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
        }
        
        .alumni-feedback-link:hover::before {
            left: 100%;
        }
        
        /* Guest Photo Style */
        .guest-photo {
            width: 160px;
            height: 160px;
            border-radius: 12px;
            flex-shrink: 0;
            overflow: hidden;
        }
        
        .guest-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .alumni-container {
                padding: 15px;
            }
        }
        
        @media (max-width: 992px) {
            .alumni-content-section, .alumni-memorial-section, .alumni-about-section {
                grid-template-columns: 1fr;
            }
            
            .alumni-cards-container, .alumni-events-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .alumni-hero-slider-container {
                height: 400px;
            }
            
            .alumni-hero-slide h2 {
                font-size: 2.5rem;
            }
            
            .alumni-featured-slide {
                min-width: 50%;
            }
        }
        
        @media (max-width: 768px) {
            .alumni-cards-container, .alumni-events-grid, .alumni-profiles-section {
                grid-template-columns: 1fr;
            }
            
            .alumni-hero-slider-container {
                height: 350px;
            }
            
            .alumni-hero-slide {
                padding: 30px;
            }
            
            .alumni-hero-slide h2 {
                font-size: 2rem;
            }
            
            .alumni-hero-slide p {
                font-size: 1.1rem;
            }
            
            .alumni-featured-slide {
                min-width: 100%;
            }
            
            .alumni-featured-slider-title {
                font-size: 2rem;
            }
            
            .alumni-events-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .alumni-hero-slider-container {
                height: 300px;
            }
            
            .alumni-hero-slide h2 {
                font-size: 1.6rem;
            }
            
            .alumni-hero-slide p {
                font-size: 1rem;
            }
            
            .alumni-patton-quote {
                font-size: 1.4rem;
            }
            
            .alumni-memorial-section {
                padding: 25px;
            }
            
            .alumni-institute-name-footer {
                font-size: 1.6rem;
            }
        }
   
