/*overlay-view styles----*

  /* FAQ styles*/

#bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire screen without stretching */
    background-color: #007BFF;
}


/* Basic styles for landing div */
.landing-pop {
    background-color: #fefefe;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #c4c4c4;
    width: 80%;
    max-width: 900px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.171);
    margin-top: 60px; /* Adjust the top margin for the content */
    margin-bottom: 60px; /* Adjust the top margin for the content */
    border-radius: 30px;
}

/* Container for the content */
.content-container {
    padding: 20px;
    text-align: left;
}
.typing-text {
    font-size: 15px;
    font-weight: bold;
    color: #007BFF;
    display: inline-block;
    border-right: 3px solid #007BFF; /* Cursor effect */
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
}
/* Styling for Q&A Section */
.faq {
    margin-top: 20px;
}

.faq-question {
    background-color: #cccccc;
    color: rgb(71, 71, 71);
    padding: 10px;
    margin: 5px 0;
    width: 100%;
    text-align: left;
    border: 1px solid #ffffff;
    font-size: 15px;
    cursor: pointer;
    border-radius: 15px;
    transition: background-color 0.3s;    
    box-shadow: 0px 8px 6px rgba(0, 0, 0, 0.144);
}

.faq-question:hover {
    background-color: #e6f2ff;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #f1f1f1;
    margin: 5px 0;
    border-radius: 5px;
    font-size: 16px;
}

/* Styling for CTA Button */
.cta-container {
    margin-top: 20px;
    text-align: center;
}

.cta-button {
    background-color: #0e5aff;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s;
    border: solid 1px #f0f0f0;
    box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.363);
}

.cta-button:hover {
    background-color: #1077d8;
}

/* Adjustments to make the content more centered on the page */

/**----Animaitons ---**/
/* Adding animation for cursor blinking */
@keyframes blink {
    0% { border-color: transparent; }
    50% { border-color: #007BFF; }
    100% { border-color: transparent; }
}

.typing-text {
    animation: blink 0.7s step-end infinite;
}

*/---cta buttons */
    
.cta-button {
    background-color: #0e5aff;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s;
    border: solid 1px #f0f0f0;
    box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.363);
}

.cta-button:hover {
    background-color: #1077d8;
}


      body.dark-mode {
        background-color: #2b2b2b;
        color: #fff;
      }

      .dark-mode .modal {
        background-color: #444;
      }

      /* Additional styles for dark mode if needed */
  /* resource section */
       
            /* General Container */
    .container {
      font-family: Arial, sans-serif;
      padding: 20px;
    }

    /* Section 1 */
    .section-1 header {
      text-align: center;
      margin-bottom: 20px;
    }

    .section-1 h1 {
      font-size: 32px;
      font-weight: bold;
      margin: 0;
    }

    .search-bar input {
      width: 100%;
      padding: 10px;
      margin-top: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
    }

    .hero-image img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 8px;
      margin-top: 20px;
    }

    .image-description p {
      font-size: 16px;
      text-align: center;
      margin-top: 10px;
      color: #555;
    }

    /* Section 2: Resources */
    .section-2 {
      text-align: center;
      margin-top: 40px;
    }

    .section-2 h2 {
      font-size: 28px;
      font-weight: bold;
    }

    .section-2 p {
      font-size: 16px;
      color: #555;
      margin-top: 10px;
    }

    /* Section 3: Markers and Sponsors */
    .section-3 {
      margin-top: 40px;
    }

    .markers h3, .sponsors h3 {
      font-size: 24px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 20px;
    }

    .marker-item, .sponsor-item {
      display: flex;
      align-items: center;
      border-radius: 22px;
      background-color: #f7f7f7;
      margin-bottom: 20px;
      padding: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .marker-item img, .sponsor-item img {
      width: 40px;
      height: 40px;
      margin-right: 20px;
    }

    .marker-info h4, .sponsor-info h4 {
      font-size: 18px;
      margin: 0;
      font-weight: bold;
    }

    .marker-info p, .sponsor-info p {
      font-size: 14px;
      color: #777;
    }

    .sponsor-item {
      border-radius: 30px;
      background-color: #e9f7fb;
    }

    .marker-item:last-child, .sponsor-item:last-child {
      margin-bottom: 0;
    }

.cta-button {

}

.cta-button:hover {
    background-color: #1077d8;
}

#install-button {

background-color: #0e5aff; width:95%;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s;
    border: solid 1px #f0f0f0;
    box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.363);


  cursor: pointer;
}

#install-button:hover {
  background-color: #0056b3;
}

 /* carousel section */
    
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden;
        }

        #overlay-main {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background: rgba(255, 255, 255, 0.9);
            transition: transform 0.3s ease;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
        }
.side-logo {
            display: flex;
            align-items: center;
        }
        .logo img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
  .side-logo img {
            width: auto;
            height: 50px;
            border-radius: 5%;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        #guest-button {
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            border: none;
            cursor: pointer;
        }

        .hero-section {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
            height: 100%;
        }

        .carousel-item {
            min-width: 300px;
            margin: 0 10px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            padding: 15px;
            box-sizing: border-box;
            flex-shrink: 0;
        }

        .carousel-item img {
            width: 100%;
            border-radius: 8px;
        }

        .carousel-item h3 {
            margin: 10px 0;
            font-size: 18px;
        }

        .carousel-item p {
            font-size: 14px;
            color: #555;
        }

        .carousel-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
        }

        .carousel-controls button {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
        }

        .carousel-controls button:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .video-section, .faq-section {
            padding: 20px;
        }

        #show-overlay {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none;
        }
   