 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

      /* Hero Section */
.game-intro-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 8%;
  background-color: #ffffff;
  flex-wrap: wrap;
}

.intro-content {
  max-width: 50%;
}

.intro-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.intro-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #444;
}

.magic-button {
  background-color: #ff6c3e;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.magic-button:hover {
  background-color: #e65929;
}

/* Robot Image */
.intro-robot img {
  max-width: 400px;
  animation: floatRobot 3s ease-in-out infinite;
}

@keyframes floatRobot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.partner-carousel-section{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:60px ;
}

.partner-carousel-track{
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
/* our games into */

        .Our-games {
           padding: 40px 0px;
        }

        .Our-games .header,
        .learning .header {
            text-align: center;
            margin-bottom: 40px;
            display: flex;
            align-items: baseline;
            justify-content: center;
        }

        .Our-games .header img,
         .learning .header img{
            width: 50px;
        }
        .Our-games .header h1,
         .learning .header h1 {
            font-size: 1.5rem;
           color: #F5864A;
            font-weight: 800;
            
        }

        .games-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        .game-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 250px;
        }

        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .game-card.large {
            height: 300px;
        }

        .game-card.small {
            height: 200px;
        }

        .game-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .game-card:hover .game-image {
            transform: scale(1.05);
        }

        .explore-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            color: #281F1F;
            padding: 5px 16px;
            border-radius: 30px;
            font-size: 10px;
            border: 1px solid #000000;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .explore-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.05);
        }

        .first-button{
            padding: 10px 30px;
            font-size: 14px;
        }

        .game-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 30px 20px 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .game-card:hover .game-overlay {
            opacity: 1;
        }

        .game-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .game-description {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Game-specific backgrounds */
        .game-1 {
            background: linear-gradient(45deg, #ffd89b 0%, #19547b 100%);
        }

        .game-2 {
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
        }

        .game-3 {
            background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        }

        /* Responsive design */
        @media (min-width: 768px) {
            .games-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto;
            }

            .game-card:first-child {
                grid-column: 1 / -1;
                height: 350px;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .game-card {
                height: 200px;
            }
            
            .game-card.large {
                height: 220px;
            }
        }

        /* Placeholder content for images */
        .placeholder-content {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
            padding: 20px;
        }

        /* learning */

        .learning{
            padding: 60px 0px;
           
           
        }

        .custom-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        
        .slider-title {
            display: flex;
            flex-direction: column;
            max-width: 80%;
            margin-bottom: 30px;
            text-align: center;
        }

        .slider-title h1 {
            color: #F5864A;
            font-size: 25px;
            margin-bottom: 15px;
        }

        .slider-title p {
            color: black;
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .slider-container {
            width: 100%;
            max-width: 1200px;
            margin: 50px;
        }

        .slider-row {
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 15px;
            height: 250px;
            position: relative;
        }

        .slider-track {
            display: flex;
            height: 100%;
            animation-duration: 25s;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        .slider-track.left-to-right {
            animation-name: slideLeftToRight;
        }

        .slider-track.right-to-left {
            animation-name: slideRightToLeft;
        }

        .slider-track:hover {
            animation-play-state: paused;
        }

        .slide {
            flex: 0 0 350px;
            height: 100%;
            margin-right: 20px;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .slide:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            z-index: 10;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
            filter: brightness(0.9);
        }

        .slide:hover img {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 107, 71, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            text-align: center;
            padding: 20px;
        }

        .slide:hover .slide-overlay {
            opacity: 1;
        }

        .cta-button {
            background: linear-gradient(45deg, #ff6b47, #ff8e53);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 71, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 30px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 71, 0.4);
            background: linear-gradient(45deg, #ff8e53, #ff6b47);
        }

        @keyframes slideLeftToRight {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(0%);
            }
        }

        @keyframes slideRightToLeft {
            0% {
                transform: translateX(0%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .slider-title p {
                font-size: 14px;
            }
            
            .slide {
                flex: 0 0 280px;
            }
            
            .slider-row {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .slider-container {
                padding: 0 10px;
            }
            
            .slide {
                flex: 0 0 220px;
            }
            
            .slider-row {
                height: 180px;
            }
        }

        /* our story */
          .our-story-section {
            position: relative;
            min-height: 100vh;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
        }

        .content-wrapper {
            text-align: center;
            z-index: 10;
            position: relative;
        }

        h1 {
            font-size: 5.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            line-height: 0.9;
        }

        .story-text {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 420px;
            margin-left: auto;
            margin-right: auto;
        }

        .BookNow-button {
            background: #ff6b35;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .BookNow-button:hover {
            background: #e55a2e;
            transform: translateY(-1px);
        }

        /* Photo positioning and animation styles */
        .photo {
            position: absolute;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Animation class that gets added when in view */
        .photo.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered animation delays */
        .photo-1 { animation-delay: 0.1s; }
        .photo-2 { animation-delay: 0.2s; }
        .photo-3 { animation-delay: 0.3s; }
        .photo-4 { animation-delay: 0.4s; }
        .photo-6 { animation-delay: 0.5s; }
        .photo-7 { animation-delay: 0.6s; }

        /* When fade-in class is added, respect the delays */
        .photo.fade-in.photo-1 { transition-delay: 0.1s; }
        .photo.fade-in.photo-2 { transition-delay: 0.2s; }
        .photo.fade-in.photo-3 { transition-delay: 0.3s; }
        .photo.fade-in.photo-4 { transition-delay: 0.4s; }
        .photo.fade-in.photo-6 { transition-delay: 0.5s; }
        .photo.fade-in.photo-7 { transition-delay: 0.6s; }

        /* Photo positioning */
        .photo-1 {
            width: 200px;
            height: 150px;
            top: 12%;
            left: 12%;
        }

        .photo-2 {
            width: 170px;
            height: 105px;
            top: 40%;
            left: 8%;
        }

        .photo-3 {
            width: 170px;
            height: 105px;
            bottom: 20%;
            left: 18%;
        }

        .photo-4 {
            width: 180px;
            height: 120px;
            top: 15%;
            right: 15%;
        }

        .photo-6 {
            width: 160px;
            height: 100px;
            top: 45%;
            right: 10%;
        }

        .photo-7 {
            width: 160px;
            height: 100px;
            bottom: 25%;
            right: 20%;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            h1 {
                font-size: 3rem;
            }
            
            .photo {
                width: 120px !important;
                height: 80px !important;
            }
            
            .photo-1, .photo-4 {
                width: 140px !important;
                height: 100px !important;
            }
        }
