 .main-container {
       
/*             padding: 40px 20px; */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

      

        .seasons-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px;
            max-width: 1200px;
            width: 100%;
        }

        .season-circle {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: transform 0.5s ease;
        }

        .season-circle:hover {
            transform: scale(1.1);
        }

        .season-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: absolute;
            top: 0;
            left: 0;
        }

        .season-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .season-circle:hover .season-overlay {
            transform: translateY(0);
        }

        .season-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
					color:white;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        .season-desc {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Spring Animation */
        .spring {
            animation: springFloat 6s ease-in-out infinite;
        }

        .spring .season-image {
            animation: springBloom 8s ease-in-out infinite;
        }

        /* Summer Animation */
        .summer {
            animation: summerPulse 4s ease-in-out infinite;
        }

        .summer .season-image {
            animation: summerHeat 10s linear infinite;
        }

        /* Autumn Animation */
        .autumn {
            animation: autumnSway 7s ease-in-out infinite;
        }

        .autumn .season-image {
            animation: autumnLeaves 12s ease-in-out infinite;
        }

        /* Winter Animation */
        .winter {
            animation: winterGlow 5s ease-in-out infinite;
        }

        .winter .season-image {
            animation: winterSparkle 15s linear infinite;
        }

        /* Spring Animations */
        @keyframes springFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(2deg); }
            75% { transform: translateY(-10px) rotate(-2deg); }
        }

        @keyframes springBloom {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.05) rotate(1deg); }
        }

        /* Summer Animations */
        @keyframes summerPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes summerHeat {
            0%, 100% { filter: brightness(1) hue-rotate(0deg); }
            50% { filter: brightness(1.2) hue-rotate(10deg); }
        }

        /* Autumn Animations */
        @keyframes autumnSway {
            0%, 100% { transform: translateX(0) rotate(0deg); }
            25% { transform: translateX(-10px) rotate(-1deg); }
            75% { transform: translateX(10px) rotate(1deg); }
        }

        @keyframes autumnLeaves {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.03); }
        }

        /* Winter Animations */
        @keyframes winterGlow {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            }
            50% { 
                transform: scale(1.02);
                box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
            }
        }

        @keyframes winterSparkle {
            0% { filter: brightness(1) contrast(1); }
            50% { filter: brightness(1.1) contrast(1.2); }
            100% { filter: brightness(1) contrast(1); }
        }

        /* Title Animation */
        @keyframes titleGlow {
            0% { text-shadow: 2px 2px 8px rgba(0,0,0,0.3); }
            100% { text-shadow: 2px 2px 20px rgba(255,255,255,0.5); }
        }

        /* Season-specific decorations */
        .spring::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fad0c4, #a1c4fd);
            z-index: -1;
            opacity: 0.7;
            animation: springBorder 4s linear infinite;
        }

        .summer::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ffecd2, #fcb69f, #ff9a9e);
            z-index: -1;
            opacity: 0.7;
            animation: summerBorder 3s linear infinite;
        }

        .autumn::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff9a9e, #fecfef, #fecfef, #f6d365);
            z-index: -1;
            opacity: 0.7;
            animation: autumnBorder 5s linear infinite;
        }

        .winter::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            background: linear-gradient(45deg, #a1c4fd, #c2e9fb, #c2e9fb, #a1c4fd);
            z-index: -1;
            opacity: 0.7;
            animation: winterBorder 6s linear infinite;
        }

        @keyframes springBorder {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes summerBorder {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.05); }
            100% { transform: rotate(360deg) scale(1); }
        }

        @keyframes autumnBorder {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(-360deg); }
        }

        @keyframes winterBorder {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .seasons-container {
                gap: 30px;
            }
            
            .season-circle {
                width: 200px;
                height: 200px;
            }
            
            .page-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .seasons-container {
                gap: 20px;
            }
            
            .season-circle {
                width: 150px;
                height: 150px;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .season-name {
                font-size: 1.4rem;
            }
        }