body{
    margin: 0;
}

.mobile-alert {
    display: none;
    background: #fffbe6;
    color: #6b3fa0;
    font-weight: 600;
    font-size: 1.08rem;
    text-align: center;
    padding: 14px 8px;
    border-bottom: 2px solid #fbbf24;
    box-shadow: 0 2px 8px rgba(251,191,36,0.07);
    position: sticky;
    top: 0;
    z-index: 9999;
}


.header{
  /*  position: fixed; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    box-shadow: 0 2px 4px rgba(37,99,235,0.07), 0 4px 12px rgba(6, 17, 118, .08);
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: #22223b;
    z-index: 100;
}

.logo-wrap {
    position: relative;
    display: inline-block;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    margin-left: 25px;
    font-family: 'Montserrat', Arial, sans-serif;
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding-right: 18px; /* space for badge */
}

.beta-badge {
    position: absolute;
    right: -8px;
    bottom: -15px;
    margin-left: 0;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #2563eb 60%, #6b3fa0 100%);
    border-radius: 12px;
    letter-spacing: 1px;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    z-index: 2;
    cursor: pointer;
}

.nav {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.nav-btn,
.nav .cta {
    background: none;
    border: none;
    color: #22223b;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.nav-btn:hover {
    background: #f1f5f9;
    color: #2563eb;
}

.nav .cta {
    background: #2563eb;
    color: #fff;
    font-weight: bold;
    padding: 8px 22px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    margin-right: 30px;
}

.nav .cta:hover {
    background: #1e40af;
    color: #fbbf24;
}

.custom-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: -105%;
    transform: translateX(-50%);
    background: #22223b;
    color: #fff;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 0.98rem;
    box-shadow: 0 2px 8px rgba(37,99,235,0.12);
    white-space: nowrap;
    transition: opacity 0.2s;
    z-index: 100;
    pointer-events: none;
}

.custom-tooltip-theme {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: -100%;
    transform: translateX(-50%);
    background: #22223b;
    color: #fff;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 0.98rem;
    box-shadow: 0 2px 8px rgba(37,99,235,0.12);
    white-space: nowrap;
    transition: opacity 0.2s;
    z-index: 100;
    pointer-events: none;
}

.nav-btn:hover .custom-tooltip,
.nav-btn:focus .custom-tooltip {
    visibility: visible;
    opacity: 1;
}

.nav-btn:hover .custom-tooltip-theme,
.nav-btn:focus .custom-tooltip-theme {
    visibility: visible;
    opacity: 1;
}


.paths-btn {
    position: relative;
    background: #fff;
    color: #2563eb !important;
    border: 2px solid #2563eb;
    font-weight: bold;
    border-radius: 3px;
    padding: 8px 20px;
    margin-left: 18px;
    margin-right: 8px;
    border: 1.5px solid #2563eb;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.paths-btn:hover {
    background: #2563eb;
    color: #f9f9f9 !important;
    border: 1.5px solid #2563eb;
}

.home-btn {
    display: none;
    background: none;
    border: none;
    margin-right: 8px;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}
.home-btn:hover {
    background: #f1f5f9;
}


/* dropdown for our word */

.our-word{
    position: relative;
}

.our-word-dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: -113%;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    border-radius: 6px;
    height: 200px;
    width: 300px;
    z-index: 10;
    padding: 6px 0;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none; /* Prevent interaction when hidden */
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.our-word:hover .our-word-dropdown,
.our-word:focus-within .our-word-dropdown{
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.our-word-dropdown p {
    color: rgb(0, 0, 0);
    margin-top: 10px;
    margin-bottom: 90px;
    font-weight: bold;
}

.our-word-dropdown {
 border-radius: 6px;
}

.our-word-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px 6px 6px 6px;
    object-fit: cover;
    z-index: -1;
}

.explore-btn-our-word {
  display: inline-block;
  margin-top: 0px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #000000;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.3s ease;
  opacity: 0.6;
}

.explore-btn-our-word:hover {
  background-color: #ffffff;
  color: black;
  transform: scale(1.05);
  opacity: 1;
}



/* drop downs for language button */

.choose-language {
    position: relative;
}
.theme-button {
    position: relative;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    border-radius: 6px;
    min-width: 120px;
    z-index: 10;
    padding: 6px 0;
}


.language-dropdown a {
    display: block;
    padding: 8px 18px;
    color: #22223b;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.language-dropdown a:hover {
    background: #f1f5f9;
    color: #2563eb;
}

.choose-language:hover .language-dropdown,
.choose-language:focus-within .language-dropdown {
    display: block;
}

/* dropdown for paths button */

.paths-dropdown {
    display: block;
    position: absolute;
    top: 110%;
    left: -113%;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    border-radius: 6px;
    height: 282px;
    width: 300px;
    z-index: 10;
    padding: 6px 0;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none; /* Prevent interaction when hidden */
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.paths-btn:hover .paths-dropdown,
.paths-btn:focus-within .paths-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.paths-dropdown p {
    color: black;
    padding: 0 20px;
    margin-top: 0px;
}



.paths-img{
    height: 110px;
    width: 315px;
    object-fit: contain;
    margin-bottom: 0;
}

.explore-btn {
  display: inline-block;
  margin-top: 0px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #000000;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.explore-btn:hover {
  background-color: #ffffff;
  color: black;
  transform: scale(1.05);
}


/* dropdown for FAQ button */

.faq-btn{
    position: relative;
}

.faq-dropdown {
    display: block;
    position: absolute;
    top: 110%;
    left: -185%;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    border-radius: 6px;
    height: 235px;
    width: 265px;
    z-index: 10;
    padding: 6px 0;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none; /* Prevent interaction when hidden */
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.faq-btn:hover .faq-dropdown,
.faq-btn:focus-within .faq-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.faq-dropdown p {
    color: black;
    padding: 0 20px;
    margin-top: 0px;
    font-weight: bold;
}


.faq-img{
    height: 110px;
    width: 140px;
    object-fit: contain;
    margin-bottom: 0;
}

.findout-btn {
  display: inline-block;
  margin-top: 0px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #000000;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.findout-btn:hover {
  background-color: #ffffff;
  color: black;
  transform: scale(1.05);
}


/* dropdown for Start now button */

.cta{
    position: relative;
}

.start-now-dropdown {
    display: block;
    position: absolute;
    top: 110%;
    left: -107%;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    border-radius: 6px;
    height: 257px;
    width: 265px;
    z-index: 10;
    padding: 6px 0;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none; /* Prevent interaction when hidden */
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.cta:hover .start-now-dropdown,
.cta-now-btn:focus-within .start-now-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.start-now-dropdown p {
    color: black;
    padding: 0 20px;
    margin-top: 0px;
}


.start-now-img{
    height: 110px;
    width: 140px;
    object-fit: contain;
    margin-bottom: 0;
}

.start-btn {
  display: inline-block;
  margin-top: 0px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #000000;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.start-btn:hover {
  background-color: #ffffff;
  color: #fbbf24;
  transform: scale(1.05);
}


/* ...style for search bar... */

.search-container {
    position: relative;
    display: inline-block;
    margin-left: 24px;
    margin-right: 24px;
}

.search-icon {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    font-size: 22px;
    pointer-events: none;
}

.search-bar {
    padding: 13px 18px;
    padding-left: 40px;
    border: 1px solid grey;
    border-radius: 30px;
    font-size: 1rem;
    margin-left: 24px;
    margin-right: -50px;
    outline: none;
    transition: border 0.2s;
    width: 420px; /* wider search bar */
    max-width: 100%;
}
.search-bar:focus {
    border: 1.5px solid #2563eb;
}



                                    /*code for introduction*/




.introduction {
    padding-top: 110px; /* space for fixed header */
    text-align: center;
    background: linear-gradient(90deg, #f1f5f9 0%, #e0e7ff 100%);
    padding-bottom: 60px;
}

.intro-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #6b3fa0;
    margin-bottom: 18px;
}

.intro-subtitle {
    font-size: 1.3rem;
    color: #22223b;
    margin-bottom: 32px;
}

.intro-cta {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    transition: background 0.2s;
}

.intro-cta:hover {
    background: #6b3fa0;
}



                                    /*code for who are we ? */


                                
.who-we-are {
    position: relative;
    background: linear-gradient(90deg, #f1f5f9 60%, #e0e7ff 100%);
    padding: 80px 0 0px 0;
    padding-top: 0;
    text-align: center;
    overflow: hidden;
}

.who-title {
    position: relative;
    font-size: 2.4rem;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #2563eb;
    margin-bottom: 18px;
    font-weight: 900;
    position: relative;
    z-index: 2;
    
}

.who-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, #2563eb 0%, #6b3fa0 100%);
    border-radius: 3px;
    margin: 12px auto 0 auto;
}

.who-desc {
    font-size: 1.18rem;
    color: #22223b;
    margin-bottom: 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.who-highlight {
    color: #6b3fa0;
    font-weight: bold;
    background: #e0e7ff;
    padding: 2px 8px;
    border-radius: 6px;
}

.who-real {
    font-weight: 900;
    background: linear-gradient(90deg, #2563eb 0%, #6b3fa0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 8px rgba(37,99,235,0.10);
    padding: 0 4px;
    border-radius: 4px;
    font-size: 1.18em;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.member-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(37,99,235,0.10);
    padding: 28px 24px 46px 24px;
    width: 220px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.member-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(37,99,235,0.18);
}

.member-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0px;
    border: 3px solid #2563eb33;
}

.member-name {
    font-size: 1.15rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 4px;
    margin-top: 10px;
}

.member-role {
    font-size: 1rem;
    color: #6b3fa0;
    margin-bottom: 12px;
}

.member-social a {
    color: #2563eb;
    margin: 0 0.5px;
    font-size: 22px;
    vertical-align: middle;
    transition: color 0.2s;
}
.member-social a:hover {
    color: #6b3fa0;
}



.whats-special {
    background: linear-gradient(90deg, #f1f5f9 60%, #e0e7ff 100%);
    padding: 20px 0 60px 0;
    text-align: center;
}

.special-title {
    font-size: 2.2rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.special-desc {
    font-size: 1.18rem;
    color: #22223b;
    margin-bottom: 40px;
}

.special-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.feature-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(37,99,235,0.10);
    padding: 32px 22px 24px 22px;
    width: 220px;
    min-width: 180px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(37,99,235,0.18);
}

.feature-icon {
    font-size: 2.2rem;
    color: #6b3fa0;
    margin-bottom: 14px;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 8px;
}

.special-title {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(90deg, #e0e7ff 60%, #f1f5f9 100%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
}



@media (max-width: 900px) {
    .special-features {
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .special-features {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .feature-card {
        width: 90vw;
        max-width: 320px;
    }
}


                                /* invitation to social media */


.social-invite {
    background: linear-gradient(90deg, #e0e7ff 60%, #f1f5f9 100%);
    padding: 10px 0 70px 0;
    text-align: center;
}

.social-title {
    font-size: 2rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 12px;
}

.social-desc {
    font-size: 1.15rem;
    color: #22223b;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #2563eb;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.social-btn i {
    font-size: 1.4rem;
}

.social-btn.x:hover { color: #000; background: #e0e7ff; }
.social-btn.instagram:hover { color: #e1306c; background: #e0e7ff; }
.social-btn.facebook:hover { color: #1877f3; background: #e0e7ff; }
.social-btn.tiktok:hover { color: #000; background: #e0e7ff; }

@media (max-width: 600px) {
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .social-btn {
        width: 90vw;
        max-width: 320px;
        justify-content: center;
    }
}


                                /* telegram group */


.telegram-invite {
    background: linear-gradient(90deg, #e0e7ff 60%, #f1f5f9 100%);
    padding: 30px 0 0px 0;
    text-align: center;
}

.telegram-title {
    font-size: 2rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 12px;
}

.telegram-desc {
    font-size: 1.15rem;
    color: #22223b;
    margin-bottom: 32px;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #229ED9;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    transition: background 0.2s, box-shadow 0.2s;
}

.telegram-btn i {
    font-size: 1.5rem;
}

.telegram-btn:hover {
    background: #2563eb;
    box-shadow: 0 8px 32px rgba(37,99,235,0.18);
}

                                /* style for footer */

.footer {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: #6b3fa0;
    background: linear-gradient(90deg, #e0e7ff 60%, #f1f5f9 100%);
    margin: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 -2px 8px rgba(107,63,160,0.04);
    width: 100%;
    height: 50px;
    letter-spacing: 1px;
    padding-bottom: 8px;
    padding-top: 16px;
}

.footer-text{
    text-align: center;
    margin-top: 10px;
    display: inline-block;
    font-weight: 900;
    background: linear-gradient(90deg, #2563eb 0%, #6b3fa0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 8px rgba(37,99,235,0.10);
    padding: 0 4px;
    border-radius: 4px;
    font-size: 1.18em;
;
}

.separator-last {
    width: 100%;
    height: 3px;
    border: none;
    margin: 0;
    opacity: 0.7;
    border-radius: 2px;
    display: block;
    background: linear-gradient(90deg, #2563eb 0%, #6b3fa0 100%);
}




.more-features.transition-style {
    background: linear-gradient(90deg, #f1f5f9 60%, #e0e7ff 100%);
    box-shadow: 0 2px 24px rgba(37,99,235,0.25);
    padding: 38px 0 48px 0;
    text-align: center;
    position: relative;
    margin-bottom: 0px;
}

.more-title {
    font-size: 2rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    color: #6b3fa0;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.more-desc {
    font-size: 1.18rem;
    color: #22223b;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    margin-bottom: 21px;
}