@font-face {
    font-family: 'MyModernFont';
    src: url("BebasNeue\ Regular.otf");
}

@font-face {
    font-family: 'MyModernFont';
    src: url("BebasNeue\ Bold.otf");
    font-weight: bold;
}

* {
    margin: 00;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'MyModernFont', sans-serif !important;
}

:root {
    --white-color: #ffffff;
}

.navbar {
    -webkit-box-shadow: 0 8px 6px -6px #999;
    -moz-box-shadow: 0 8px 6px -6px #999;
    box-shadow: 0 8px 6px -6px #999;

    /* the rest of your styling */
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    background: radial-gradient(ellipse at right center, #ffffff, #16a5fd);

    left: 100px;
    min-height: 50vw;
}

.hero-section .section-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #ffffff;
    min-height: 50vw;
    justify-content: space-between;
}

.hero-section .hero-details {
    max-width: 60vw;
}

.hero-section .hero-details .title {
    font-size: 3.5vw;
    color: black;
}

.hero-section .hero-details .description {
    font-size: 1vw;
    color: black;
}

.hero-section .genie-image {
    height: 28vw;
    width: auto;
    /* padding-right: 100px; */
    padding: 53px;
}

.hero-section .hero-details .buttons {
    display: flex;
    gap: 12px;
}

@media screen and (max-width: 800px) {
    .hero-section {
        padding-top: 100px;
    }

    .hero-section .section-content {
        flex-direction: column-reverse;
        justify-content: start;
        min-height: 80vh;
    }

    .hero-section .hero-details {
        max-width: 80vw;
        margin-bottom: 10vw;
    }

    .hero-section .hero-details .title {
        font-size: 5vw;
    }

    .hero-section .hero-details .description {
        font-size: 2.5vw;
        color: black;
    }

    .hero-section .genie-image {
        height: 60vw;
        margin-bottom: 40px;
        padding: 0;
    }
}

.wish {
    background: #ffffff;
    padding: 40px 0;
}

.wish-text {
    font-size: 48px;
    text-align: center;
    background: radial-gradient(ellipse at right, #ffffff, #16a5fd);

   
    color: black;
    padding: 20px;
}

/* Infinite Scrolling Section */
.infinite-scrolling {
    height: 250px;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: grid;
    place-items: center;
}

/* Scrolling Container */
.scrolling-container {
    display: flex;
    width: calc(250px * 34);
    height: 100%;
    animation: scroll 40s linear infinite;
}

/* Keyframe for infinite scrolling */
@keyframes scroll {
    100% {
        transform: translateX(-50%);
    }
}

/* Product Images */
.product {
    width: 250px;
    height: 220px;
    display: flex;
    align-items: center;
    padding: 15px;
    flex-direction: column;
}

.product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 5px;
}

/* How to Use Section */
/* General Styles (kept as in the previous code) */

/* How to Use Section (Updated for Alternating Layout) */
.how-to-use {
    padding: 20px 20px;
    font-size: em;
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: auto;
}

.step {
    display: flex;
    align-items: center;
    margin: 30px 0;
    height: 90vh;
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
   
    background: radial-gradient(ellipse at right center, #ffffff, #16a5fd);
}

.step .step-details {
    display: flex;
    flex-direction: column;
    padding: 5px 10px;
    align-items: start;
    text-align: start;
    color: #ffffff;
}

/* Screenshot on the Left */
.step:nth-child(odd) {
    flex-direction: row-reverse;
    background: radial-gradient(ellipse at right center, #ffffff, #16a5fd);
   


}

.step:nth-child(odd) .step-details {
    align-items: end;
    text-align: end;
}

.step img {
    width: auto;
    height: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.step:nth-child(odd) h3 {
    text-align: right;
}

.dream-text {
    font-size: 2em;
    margin-top: 30px;
}

@media screen and (max-width: 800px) {

    .steps{
        width:100%;
    }

    .step {
        flex-direction: column;
        /* background: linear-gradient(to bottom, #00008B, #000000 45%); */
    }

    .step:nth-child(odd) {
        flex-direction: column;
        /* background: linear-gradient(to bottom, #00008B, #000000 45%); */
    }

    .step:nth-child(odd) .step-details {
        align-items: start;
        text-align: left;
    }

    .step:nth-child(odd) h3 {
        text-align: left;
    }

    .wish-text {
        font-size: 36px;
    }

    .dream-text {
        font-size: 1.25em;
        margin-top: 10px;
    }

    .step img {
        width: auto;
        height: 100%;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .wish-description{
        background-color: #16a5fd36;
        border: 1px solid #16a5fd03;
        border-radius: 30px;
        color: black;
        padding: 10px !important;
        font-size: 12px !important;
        margin: 2px 0 !important;
    }

    .hero-section {
        padding: 60px 0;
        clip-path: polygon(0 0, 100% 0%, 100% 91%, 0% 100%) !important;

    
      }
}


/* Wish Button */
.wish-button {
    background-color: #0066ff;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.2em;
    margin: 20px 0;
    display: inline-block;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

.content-section {
    margin-top: 50px;
    min-height: 70vh;
    padding: 100px 50px;
    width: 75vw;
    align-items: start;
}

.contact-section {
    margin-top: 50px;
    min-height: 70vh;
    padding: 100px 50px;
    width: 100%;
    align-items: start;
}

.contact-section .contact-item {
    display: flex;
    flex-direction: row;
    text-align: right;
}

.contact-section .contact-item h4 {
    text-align: left;
    margin-right: 50px;

}

@media screen and (max-width: 800px) {
    .text-section {
        width: 100%;
        align-items: center;
    }
}

.navbar-nav .nav-link {
    position: relative;
    padding: 15px 15px;
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
  }
  
  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #16A5FD;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
  }
  
  .navbar-nav .nav-link:hover::after {
    width: 100%;
    cursor: pointer;
  }
  
  .navbar-nav .nav-link:hover {
    color: #16A5FD;
  }

  .logoaur{
    color: #16A5FD;
  }

  .container-fluid{
    padding: auto;
  }


  /* Info section */

  .hero-section {
    padding: 60px 0;
    clip-path: polygon(0 0, 100% 0%, 100% 75%, 0 97%);

  }
  
  .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .hero-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .genie-image {
    width: 300px; /* Adjust size as needed */
    height: 300px; 
    /*border-radius: 50%;*/
    position: relative;
    /* Solar system-style rings using shadows */
    box-shadow: 
      0 0 0 10px rgba(0, 123, 255, 0.4),   ;  /* Farthest ring */
      animation: shake 0.5s ease-in-out infinite; /* Add shaking effect */
  }

  @keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
  }
  
  .hero-image-wrapper {
    text-align: right;
  }

  /* 
   */


   .infinite-scrolling {
    padding: 10px 0;
  }
  
  .scrolling-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; 
  }
  
  .product {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    position: relative;
  }
  
  .product img {
    width: 150px; 
    height: auto; 
    border-radius: 8px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
  }
  
  .product h5 {
    margin-top: 10px;
  }
  
  /* Hover Effects */

  .product img:hover {
    transform: scale(1.05); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
  }
  

  /*  */

  .logo-font{
    font-size: 29px !important;
  }

  .wish-header{
    color: black;
  }

  .wish-description {
    background-color: #16a5fd36;
    border: 2px solid #16a5fd03;
    border-radius: 30px;
    color: black;
    padding: 4px;
    font-size: 13px;
    margin: 10px 0;
  }
  

  


  
  
  
  
  