  /* Bootstrap doesn't have a native 'hover' utility, 
     so we add this simple class for the lift effect */
  .hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(220, 53, 69, 0.15) !important;
  }

    /* Mouseover Effect: Lift, Border Color Change, and Shadow */
    .info-box {
      transition: all 0.3s ease;
      border: 2px solid #dee2e6;
      background-color: #ffffff;
    }
    .info-box:hover {
      transform: translateY(-8px);
      border-color: #dc3545; /* XIME Red */
      box-shadow: 0 10px 20px rgba(220, 53, 69, 0.15);
    }
    .red-icon-text {
      color: #dc3545;
      font-size: 1.25rem;
    }

        /* 1. CSS Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade {
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0; /* Ensures it stays hidden until animation starts */
        }

        /* Staggered delays for the cards */
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }

        /* 2. Mouseover (Hover) Effects */
        .giving-card {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid #dee2e6;
            cursor: pointer;
        }

        .giving-card:hover {
            background-color: #dc3545 !important; /* XIME Red */
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(220, 53, 69, 0.2);
            border-color: #dc3545;
        }

        .giving-card:hover .card-title, 
        .giving-card:hover .card-text {
            color: #ffffff !important;
        }

        .text-xime-red { color: #dc3545; }

        /* CSS Animations */
        @keyframes pulse-shadow {
            0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .portal-card {
            border: 2px solid #dc3545;
            transition: all 0.3s ease;
            animation: slideInRight 0.8s ease-out;
        }

        .portal-card:hover {
            background-color: #fffafa;
            border-color: #bb2d3b;
            transform: scale(1.01);
        }

        .btn-pulse {
            animation: pulse-shadow 2s infinite;
            background-color: #dc3545;
            color: white;
            border: none;
            transition: transform 0.2s;
        }

        .btn-pulse:hover {
            background-color: #bb2d3b;
            color: white;
            transform: translateY(-2px);
        }

        .list-icon {
            color: #dc3545;
            margin-right: 10px;
            font-weight: bold;
        }

       
        .section-title { text-align: center; margin-bottom:20px;  }

        .owl-container { max-width: 1200px; margin: 0 auto; position: relative; }

        /* Card Styling */
        .alumni-card { background: #fff; margin: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
        .img-box { position: relative; height: 410px; }
        .img-box img { width: 100%; height: 100%; object-fit: cover; }
        
        .quote-overlay {
            position: absolute; bottom: 0; left: 0; right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 40px 20px 20px; color: #fff; font-size: 1.8rem; line-height: 1.1;
        }

        .card-content { padding: 25px 20px; text-align: left; }
        .card-content h3 { margin: 0; font-size: 1.4rem; color: #000; font-weight: 500; }
        .card-content .batch { margin: 5px 0; color: #666; font-size: 0.9rem; }
        .card-content .title { margin: 5px 0; color: #333; font-size: 0.95rem; }

        /* Button Styling */
        .btn-read {
            margin-top: 15px; padding: 10px 20px; border: 1px solid #000;
            background: #fff; cursor: pointer; text-transform: uppercase;
            font-size: 0.8rem; transition: 0.3s; display: inline-block;
        }
        .btn-read:hover { background: #dd2929; color: #fff; }

        /* Owl Navigation Arrows */
        .owl-nav button {
            position: absolute; top: 40%; transform: translateY(-50%);
            background: #fff !important; border: 1px solid #ddd !important;
            width: 45px; height: 45px; font-size: 25px !important; color: #333 !important;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .owl-prev { left: -60px; }
        .owl-next { right: -60px; }
        .owl-dots { margin-top: 20px !important; }
        /* Laptop */
@media (max-width:1200px){
    .owl-prev{ left:-30px; }
    .owl-next{ right:-30px; }
}

/* Tablet */
@media (max-width:992px){
    .owl-nav button{
        width:40px;
        height:40px;
        font-size:22px !important;
    }

    .owl-prev{ left:5px; }
    .owl-next{ right:5px; }
}

/* Mobile */
@media (max-width:768px){
    .owl-nav button{
        width:35px;
        height:35px;
        font-size:20px !important;
    }

    .owl-prev{ left:0; }
    .owl-next{ right:0; }
}

/* Small Mobile */
@media (max-width:480px){
    .owl-nav button{
        width:32px;
        height:32px;
        font-size:18px !important;
    }

    .owl-prev{ left:0; }
    .owl-next{ right:0; }
}

        /* Popup Modal Styling */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.7); backdrop-filter: blur(5px);
            display: none; justify-content: center; align-items: center; z-index: 9999;
        }
        .modal-box { background: #fff; padding: 50px; width: 90%; max-width: 70%; position: relative; }
        .close-modal { position: absolute; top: 15px; right: 20px; font-size: 30px; cursor: pointer; }

       /* :root {
            --xime-red: #d32f2f;
            --deep-dark: #121212;
        }*/

        /* --- Custom Keyframe Animations --- */
        @keyframes imageSlide {
            from { transform: scale(1.2); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        @keyframes contentSlide {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

      

        .reunion-section {
            position: relative;
        }

        /* --- THE IMAGE GRID --- */
        .image-mosaic {
            position: relative;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(12, 1fr);
            height: 600px;
        }

        .mosaic-item {
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            animation: imageSlide 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
        }

        .img-one {
            grid-column: 1 / 9;
            grid-row: 1 / 10;
            z-index: 2;
        }

        .img-two {
            grid-column: 6 / 13;
            grid-row: 5 / 13;
            border: 10px solid #fff;
            z-index: 3;
        }

        .mosaic-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .mosaic-item:hover img {
            transform: scale(1.1);
        }

        /* --- THE CONTENT BOX --- */
        .reunion-content-card {
            background-color: #d32f2f;
            color: white;
            padding: 60px;
            margin-left: -80px;
            margin-top: 100px;
            position: relative;
            z-index: 4;
            animation: contentSlide 1.2s ease-out 0.3s forwards;
            opacity: 0;
            box-shadow: 20px 20px 0px rgba(0,0,0,0.05);
        }

        .reunion-heading {
            font-family: 'Georgia', serif;
            font-size: 4rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -2px;
            margin-bottom: 30px;
            line-height: 0.9;
        }

        .reunion-text {
            line-height: 1.9;
            opacity: 0.95;
            border-left: 2px solid rgba(255,255,255,0.3);
            padding-left: 25px;
        }

        /* Red Decorative Square */
        .decorative-square {
            position: absolute;
            top: 20%;
            left: 5%;
            width: 300px;
            height: 300px;
            background-color: #f8f8f8;
            z-index: 1;
        }

        @media (max-width: 991px) {
            .image-mosaic { height: 400px; margin-bottom: 50px; }
            .reunion-content-card { margin-left: 0; margin-top: -50px; padding: 30px; }
            .reunion-heading { font-size: 2.5rem; }
        }

    

        .section-padding {
            padding: 80px 0;
        }

     

        .highlight-card {
            border: none;
            background: transparent;
            margin-bottom: 30px;
        }

        .image-container {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-container:hover img {
            transform: scale(1.03);
        }

        .card-title-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .card-icon {
            font-size: 1.5rem;
        }

        .card-heading {
            font-size: 1.6rem;
            font-weight: 700;
            margin: 0;
            color: #1a1a1a;
        }

        .card-description {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #444;
            margin-bottom: 15px;
        }

        .view-gallery-link {
            text-decoration: none;
            color: #1a1a1a;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            transition: opacity 0.3s;
        }

        .view-gallery-link:hover {
            opacity: 0.7;
            color: #000;
        }

        .view-gallery-link span {
            margin-left: 8px;
            font-size: 1.2rem;
        }


        /*:root {
            --xime-red: #d32f2f;
        }*/

        .batch-card {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(0,0,0,0.08);
        }

        /* Hover effect to lift the card and change border color */
        .batch-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(211, 47, 47, 0.1) !important;
            border-color: #d32f2f;
        }

        .btn-view-pdf {
            background-color: #d32f2f;
            color: white !important;
            border: none;
            transition: 0.3s;
        }

        .btn-view-pdf:hover {
            background-color: #b71c1c;
            letter-spacing: 1px;
        }

        .section-header::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #d32f2f;
            margin: 20px auto;
        }

       <!-- @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');-->

      

        .section-tag {
            color: #dc3545;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 15px;
        }

        .header-line {
            width: 80px;
            height: 4px;
            background-color: #dc3545;
            margin-bottom: 30px;
        }

        /* Profile Card Styling */
        .leader-card {
            border: none;
            transition: all 0.4s ease;
            background: transparent;
        }

        .leader-img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin-bottom: 20px;
        }

        .leader-img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            filter: grayscale(100%);
            transition: all 0.5s ease;
        }

        .leader-card:hover .leader-img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .leader-socials {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            background: rgba(220, 53, 69, 0.9);
            padding: 15px;
            transition: all 0.4s ease;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .leader-card:hover .leader-socials {
            bottom: 0;
        }

        .social-link {
            color: white;
            font-size: 1.2rem;
            transition: 0.3s;
        }

        .social-link:hover {
            color: rgba(255,255,255,0.7);
        }

        .leader-info h4 {
            font-weight: 700;
            margin-bottom: 5px;
            color: #212529;
        }

        .leader-info p {
            color: #dc3545;
            font-size: 16px
            font-weight: 600;
           
        }

      <!--  @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');-->

    

        .impact-section {
            background: linear-gradient(135deg, #ffffff 70%, #fcfcfc 30%);
            overflow: hidden;
            padding: 100px 0;
        }

        /* Side Branding Box */
        .red-accent-box {
            background: #dc3545;
            color: white;
            padding: 80px 60px;
            border-radius: 0 120px 120px 0;
           
            box-shadow: 25px 25px 50px rgba(220, 53, 69, 0.1);
        }

        /* Image Stack Design */
        .img-stack {
            position: relative;
            height: 450px;
            margin-top: 50px;
        }

        .img-main {
            width: 85%;
            height: 350px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
            filter: grayscale(100%);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .img-sub {
            position: absolute;
            bottom: 20px;
            right: 0;
            width: 55%;
            height: 220px;
            object-fit: cover;
            border: 10px solid white;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            transition: all 0.6s ease;
        }

        .img-stack:hover .img-main {
            filter: grayscale(0%);
            transform: scale(1.02);
        }

        .img-stack:hover .img-sub {
            transform: translateY(-20px);
        }

        /* Content List */
        .feature-item {
            transition: all 0.4s ease;
            border-left: 4px solid transparent;
            background: transparent;
        }

        .feature-item:hover {
            border-left: 4px solid #dc3545;
            background: rgba(220, 53, 69, 0.04);
            transform: translateX(12px);
        }

        .icon-circle {
            width: 64px;
            height: 64px;
            background: #dc3545;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            font-size: 26px;
            flex-shrink: 0;
            transition: 0.3s;
        }

        .feature-item:hover .icon-circle {
            background: #b02a37;
            transform: rotate(-8deg);
        }

        .btn-custom {
            padding: 14px 40px;
            border-width: 2px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }
.dep-hdd-lnding {
    position: absolute;
    bottom: 38px;
    left: 0;
    text-align: center;
    color: #fff;
    right: 0;}
        @media (max-width: 991px) {
            .red-accent-box {
                margin-left: 0;
                border-radius: 40px;
                padding: 40px;
            }
            .img-stack {
                height: auto;
                margin-bottom: 40px;
            }
        }
@media (max-width: 992px){
    .owl-carousel .owl-nav .owl-prev{
        left: 0;
    }

    .owl-carousel .owl-nav .owl-next{
        right: 0;
    }
}
body{
    overflow-x: hidden;
}







