/*  Your Custom CSS Code Goes Here */

@font-face {
  font-family: 'Avenir';
  src: url('https://storage.googleapis.com/websitebuilder/assets/fonts/Avenir.ttc') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Wandery Rough';
  src: url('https://storage.googleapis.com/websitebuilder/assets/fonts/Wandery%20Rough.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Avenir', sans-serif !important;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Wandery Rough', 'Avenir', sans-serif !important;
}

.custom-scroller {
  overflow-y: auto; 
  scrollbar-width: thin; 
  scrollbar-color: #f58220ff #f3f4f6;
  padding-right: 12px;
}

.custom-scroller::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.custom-scroller::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 10px;
}

.custom-scroller::-webkit-scrollbar-thumb {
  background-color: #8b5cf6; 
  border-radius: 10px;
  border: 2px solid #f3f4f6;
}

.custom-scroller::-webkit-scrollbar-thumb:hover {
  background-color: #6b21a8;
}

/* Custom animation for the flag */
    @keyframes flagWave {
      0% { transform: rotate(0deg); }
      25% { transform: rotate(-5deg); }
      50% { transform: rotate(0deg); }
      75% { transform: rotate(5deg); }
      100% { transform: rotate(0deg); }
    }
    
    .flag-animation {
      animation: flagWave 3s ease-in-out infinite;
      transform-origin: bottom center;
    }
    
    /* Bounce animation */
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    .bounce-animation {
      animation: bounce 2s ease-in-out infinite;
    }

	/* Blink animation */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.blink-animation {
  animation: blink 2s ease-in-out infinite;
}

.mosaic-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-template-rows: repeat(3, 120px);
            gap: 62px;
            align-content: center;
            grid-template-rows: repeat(3, 138px);
    row-gap: 115px !important;
    column-gap: 18px !important;
    margin-top: 70px !important;
        }
        .tile-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
        .tile-2 { grid-column: 3 / 5; grid-row: 1 / 2; }
        .tile-3 { grid-column: 5 / 7; grid-row: 1 / 2; }
        .tile-4 { grid-column: 1 / 4; grid-row: 2 / 3; }
        .tile-5 { grid-column: 4 / 7; grid-row: 2 / 3; }
        .tile-6 { grid-column: 1 / 3; grid-row: 3 / 4; }
        .tile-7 { grid-column: 3 / 7; grid-row: 3 / 4; }
        
        /* Flip card styles */
        .flip-card {
            perspective: 1000px;
            width: 100%;
            height: 100%;
            aspect-ratio: 1;
        }
        
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }
        
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        
        .flip-card-back {
            transform: rotateY(180deg);
        }
        
        /* Continuous flip animations - slower */
        @keyframes flipY {
            0%, 100% { transform: rotateY(0deg); }
            50% { transform: rotateY(180deg); }
        }
        
        .flip-continuous-1 {
            animation: flipY 6s ease-in-out infinite;
            animation-delay: 0s;
        }
        
        .flip-continuous-2 {
            animation: flipY 6s ease-in-out infinite;
            animation-delay: 1s;
        }
        
        .flip-continuous-3 {
            animation: flipY 6s ease-in-out infinite;
            animation-delay: 2s;
        }
        
        .flip-continuous-4 {
            animation: flipY 6s ease-in-out infinite;
            animation-delay: 3s;
        }
        
        .flip-continuous-5 {
            animation: flipY 6s ease-in-out infinite;
            animation-delay: 4s;
        }
        
        .flip-continuous-6 {
            animation: flipY 6s ease-in-out infinite;
            animation-delay: 5s;
        }
        
        .flip-continuous-7 {
            animation: flipY 6s ease-in-out infinite;
            animation-delay: 6s;
        }
        
        @media (max-width: 767px) {
            .mosaic-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(4, 100px);
            }
            .tile-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
            .tile-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
            .tile-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
            .tile-4 { grid-column: 1 / 3; grid-row: 3 / 4; }
            .tile-5 { grid-column: 1 / 2; grid-row: 4 / 5; }
            .tile-6 { grid-column: 2 / 3; grid-row: 4 / 5; }
            .tile-7 { display: none; }
        }
        
 .mosaic-grid img{
width: 100%;
    border-radius: 16px;
    height: 220px;
    object-fit: cover;
  
 }       
        
        
          .hero-section {
            height: 100vh;
            width: 100%;
            background: linear-gradient(-45deg, #ff9a9e, #fecfef, #fecfef, #a8edea);
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
 /* Option 7: Morphing Shapes */
        .option-7 {
            background: linear-gradient(45deg, #ff9a9e, #fecfef, #a8edea);
            position: relative;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: morph 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 200px; height: 200px;
            top: 20%; left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 150px; height: 150px;
            bottom: 20%; right: 15%;
            animation-delay: 3s;
        }

        @keyframes morph {
            0%, 100% { border-radius: 50%; transform: rotate(0deg) scale(1); }
            25% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(90deg) scale(1.1); }
            50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; transform: rotate(180deg) scale(0.9); }
            75% { border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%; transform: rotate(270deg) scale(1.1); }
        }
@keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            33% {
                transform: translateY(-20px) rotate(1deg);
            }
            66% {
                transform: translateY(-10px) rotate(-1deg);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 0.6;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }
        
        @keyframes starTwinkle {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                filter: brightness(1);
            }
            25% {
                transform: scale(1.1) rotate(90deg);
                filter: brightness(1.3);
            }
            50% {
                transform: scale(0.9) rotate(180deg);
                filter: brightness(0.8);
            }
            75% {
                transform: scale(1.05) rotate(270deg);
                filter: brightness(1.2);
            }
        }
        
        .gradient-bg {
            background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
        }
        
        .glass-overlay {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .floating-orb {
            animation: float 6s ease-in-out infinite;
        }
        
        .pulsing-orb {
            animation: pulse 4s ease-in-out infinite;
        }
        
        .mouse-star {
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease-out;
            animation: starTwinkle 2s ease-in-out infinite;
        }
        
        .trail-star {
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.6;
            animation: starTwinkle 3s ease-in-out infinite;
        }
        
        .cursor-glow {
            position: fixed;
            pointer-events: none;
            z-index: 9997;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 30%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.2s ease-out;
        }
        
        
 /* Mega menu */ 
  .menu-icon span {
      display: block;
      width: 100%;
      height: 3px;
      transition: all 0.3s ease;
    }
    
    .menu-open .line1 {
      transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-open .line2 {
      opacity: 0;
    }
    
    .menu-open .line3 {
      transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .mobile-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    
    .mobile-menu.open {
      max-height: 1200px;
    }
    
    .mega-menu {
      position: fixed;
      top: auto;
      left: 0;
      right: 0;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 50;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-item:hover .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .mobile-submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    
    .mobile-submenu.open {
      max-height: 600px;
    }
    
    .chevron {
      transition: transform 0.3s ease;
    }
    
    .chevron.rotate {
      transform: rotate(180deg);
    }      
    
    .thumbnail-active {
      border-color: #a855f7;
      opacity: 1;
    }

    .thumbnail-inactive {
      opacity: 0.6;
    }

    .slider-container {
      position: relative;
      overflow: hidden;
    }

    .slider-track {
      display: flex;
      transition: transform 0.3s ease-in-out;
    }

    .slider-slide {
      min-width: 100%;
      flex-shrink: 0;
    } 
    
.swiper-button-next:after, .swiper-button-prev:after{
  font-size:24px !important;
  }  
    