  

        mcont {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
/*             padding: 20px; */
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

       

        .sections-container {
            display: flex;
            gap: 40px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .section-box {
            width: 100%;
            max-width: 500px;
            height:275px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            position: relative;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px);
        }

        .section-box.mens {
            animation: slideInLeft 0.8s ease-out 0.3s forwards;
        }

        .section-box.womens {
            animation: slideInRight 0.8s ease-out 0.6s forwards;
        }

        .section-box:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .section-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: all 0.8s ease;
            position: relative;
        }

        .section-box:hover .section-image {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        .section-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
            color: white;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease 0.1s;
        }

        .section-box:hover .section-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
/*             margin-bottom: 5px; */
					color:white;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
            transform: translateY(20px);
            transition: transform 0.5s ease 0.2s;
        }

        .section-box:hover .section-title {
            transform: translateY(0);
        }

        .section-description {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 20px;
            transform: translateY(20px);
            transition: transform 0.5s ease 0.3s;
        }

        .section-box:hover .section-description {
            transform: translateY(0);
        }

        .section-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: white;
            color: #333;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.4s ease;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease 0.4s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .section-box:hover .section-button {
            transform: translateY(0);
            opacity: 1;
        }

        .section-button:hover {
            transform: scale(1.1) !important;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        /* Men's section specific styles */
        .mens-section {
            background-color: #1a73e8;
        }

        .mens-section .section-button {
            color: #1a73e8;
        }

        .mens-section .section-button:hover {
            background-color: #1a73e8;
            color: white;
        }

        /* Women's section specific styles */
        .womens-section {
            background-color: #e91e63;
        }

        .womens-section .section-button {
            color: #e91e63;
        }

        .womens-section .section-button:hover {
            background-color: #e91e63;
            color: white;
        }

        /* Floating elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 40px;
            height: 40px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 30px;
            height: 30px;
            top: 20%;
            right: 15%;
            animation-delay: 1s;
        }

        .floating-element:nth-child(3) {
            width: 50px;
            height: 50px;
            bottom: 15%;
            left: 15%;
            animation-delay: 2s;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* Particle effect */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            animation: particle-float 4s ease-in-out infinite;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .sections-container {
                flex-direction: column;
                align-items: center;
            }
            
            .section-box {
                max-width: 100%;
                height: 400px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
   