.abs-card{
    background-color: #fff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      height: auto;
    padding: 0px 40px;
}

.abc-img{
    padding: 10px;
     transition: all 0.4s cubic-bezier(0.155, 0.885, 0.32, 1.275);
            cursor: pointer;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     margin-top: 135px;
     border-radius: 7px;
}
.abc-img img{

}
 .abc-img img:hover {
            transform: scale(1.02) rotateZ(-1deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

.sponsor-card {
            background: white;
            padding: 20px 20px;
            /* margin: 40px 0; */
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            animation: fadeIn 0.8s ease-out;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .sponsor-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .sponsor-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .sponsor-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .sponsor-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .sponsor-card:nth-child(even) {
            grid-template-columns: 1fr 1fr;
            direction: rtl;
        }

        .sponsor-card:nth-child(even)>* {
            direction: ltr;
        }

        .content {
            animation: slideIn 0.8s ease-out forwards;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .sponsor-name {
            font-size: 25px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #1a1a1a;
            animation: titleSlide 0.5s ease-out;
        }

        @keyframes titleSlide {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .sponsor-description {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            text-align: justify;
        }

        .tier-badge {
            display: inline-block;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            color: white;
             background: linear-gradient(135deg, #8b0000 0%, #240b36 100%);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: bounce 0.8s ease-out;
        }

        @keyframes bounce {
            0% {
                opacity: 0;
                transform: scale(0.5);
            }

            70% {
                transform: scale(1.1);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            /* min-height: 250px; */
            animation: zoomIn 0.8s ease-out forwards;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* .logo-placeholder {
           
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.155, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        .logo-placeholder:hover {
            transform: scale(1.02) rotateZ(-1deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        } */

       

        .header {
            background: linear-gradient(135deg, #240b36 0%, #8b0000 100%);
            /* background: linear-gradient(to right, #8b0000, #240b36); */
            color: white;
            padding: 50px 40px;
            text-align: center;
            animation: slideDown 0.8s ease-out;
            margin-top: 80px;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .header h1 {
            font-size: 48px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .header p {
            font-size: 18px;
            opacity: 0.95;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .sponsors-wrapper {
            padding: 30px 0;
        }

        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #ddd, transparent);
            margin: 20px 0;
            animation: expandWidth 1s ease-out;
        }

        @keyframes expandWidth {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        .highlight {
            background: linear-gradient(120deg, #8b0000 0%, #8b0000 100%);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
            color: #fff;
        }

        @media (max-width: 768px) {
            .sponsor-card {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 40px 25px;
            }

            .sponsor-card:nth-child(even) {
                grid-template-columns: 1fr;
                direction: ltr;
            }

            .sponsor-name {
                font-size: 24px;
            }

            .sponsor-description {
                font-size: 14px;
            }

            .header h1 {
                font-size: 32px;
            }

            .logo-placeholder {
                width: 150px;
                height: auto;
                font-size: 60px;
            }
        }