body{
    margin: 0;
        background: linear-gradient(90deg, #e0e7ff 60%, #f1f5f9 100%);
}

.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: 60px; /* space for fixed header */
    text-align: center;
    background: linear-gradient(90deg, #f1f5f9 0%, #e0e7ff 100%);
    padding-bottom: 60px;
    position: relative; /* allow absolute positioning of intro controls */
    margin-top: 70px;
}


.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;
}


/*add popup*/

.ads-popup {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(37,99,235,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.ads-popup-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(37,99,235,0.18);
    padding: 38px 28px 28px 28px;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.ads-popup-icon {
    font-size: 30px;
    color: #2563eb;
}

.ads-popup-title {
    font-size: 1.3rem;
    color: #2563eb;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    margin-bottom: 10px;
}

.ads-popup-desc {
    font-size: 1.08rem;
    color: #22223b;
    margin-bottom: 18px;
    opacity: 0.92;
}

.ads-popup-btn {
    background: #2563eb;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.ads-popup-btn:hover {
    background: #6b3fa0;
}








/* New partner button style for top-right of introduction */
.partners-btn {
    position: absolute;
   /* top: 115px;
    right: 24px; */
    top: 18px;
    right: 22px;
    padding: 10px 16px;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 999px;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #2563eb, #6b3fa0) border-box;
    color: #2563eb;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37,99,235,0.10);
    transition: transform 0.12s ease, box-shadow 0.12s ease, color 0.12s ease, background 0.12s ease;
    z-index: 5;
   /* height: 100px;
    width: 100px; */
    height: 100px;
    width: 100px;
}

.partners-btn:hover,
.partners-btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37,99,235,0.16);
    color: #ffffff;
    background: linear-gradient(90deg, #2563eb, #6b3fa0) border-box;
    outline: none;
}

        .overlay { position:fixed; inset:0; background:rgba(0,0,0,.45); display:none; z-index:900; }
        .overlay.active { display:block; }
        .partners-modal {
            position:fixed; left:50%; top:50%; transform:translate(-50%,-50%);
            width:92%; max-width:560px; background:#fff; border-radius:10px; padding:18px;
            box-shadow:0 12px 40px rgba(0,0,0,.25); z-index:1000; display:none;
        }
        .partners-modal.active { display:block; }
        .partners-modal .pm-header { display:flex; align-items:center; justify-content:space-between; gap:12px; }
        .partners-modal .pm-title { font-size:18px; font-weight:800; margin:0; }
        .partners-modal .pm-close { background:none; border:none; font-size:20px; cursor:pointer; color:#374151; }
        .partners-list { margin-top:12px; display:flex; flex-direction:column; gap:10px; }
        .partner-item { display:flex; gap:12px; align-items:center; padding:10px; border-radius:8px; background:#f8fafc; }
        .partner-avatar { width:44px; height:44px; border-radius:100px; object-fit:cover; }
        .partner-meta { display:flex; flex-direction:column; }
        .partner-name { font-weight:700; font-size:14px; margin:0; }
        .partner-desc { font-size:13px; color:#6b7280; margin:0; }
        .partner-link { color:#2563eb; text-decoration:none; font-weight:600; font-size:13px; }








/* Partners modal styles (kept inline for quick iteration) */
.overlay { position:fixed; inset:0; background:rgba(0,0,0,.45); display:none; z-index:900; }
.overlay.active { display:block; }
.partners-modal { position:fixed; left:50%; top:50%; transform:translate(-50%,-50%); width:92%; max-width:1000px; background:#fff; border-radius:10px; padding:20px; box-shadow:0 18px 60px rgba(2,6,23,0.35); z-index:1000; display:none; }
.partners-modal.active { display:block; }
.pm-header { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.pm-title { font-size:18px; font-weight:800; margin:0; }
.pm-close { background:none; border:none; font-size:20px; cursor:pointer; color:#374151; }
.partners-filter { display:flex; gap:8px; flex-wrap:wrap; margin:14px 0; }
.filter-btn { background:#f3f4f6; border:1px solid #e6edf7; padding:8px 12px; border-radius:999px; cursor:pointer; font-weight:700; color:#0f172a; }
/* active and hover get the bright gradient; focus uses focus-visible so keyboard users still see a ring */
.filter-btn.active, .filter-btn:hover { background:linear-gradient(90deg,#2563eb,#6b3fa0); color:#fff; border-color:transparent; }
.filter-btn:focus-visible{ outline:3px solid rgba(37,99,235,0.16); outline-offset:3px; }
.partners-list { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:8px; }
.partner-item { display:flex; gap:12px; align-items:center; padding:12px; border-radius:10px; background:#f8fafc; border:1px solid #eef2ff; }
.partner-avatar { width:64px; height:64px; border-radius:32px; object-fit:cover; }
.partner-meta { display:flex; flex-direction:column; }
.partner-name { font-weight:800; font-size:15px; margin:0 0 4px 0; }
.partner-desc { font-size:13px; color:#6b7280; margin:0 0 6px 0; }
.partner-link { color:#2563eb; text-decoration:none; font-weight:700; font-size:13px; }
/* Responsive adjustments */
@media (max-width:1000px){ .partners-list{ grid-template-columns:repeat(2,1fr); } .partners-modal{ max-width:840px } }
@media (max-width:640px){ .partners-list{ grid-template-columns:1fr; } .partners-modal{ width:94%; padding:14px } }


/* Placeholder (when no partners) */
.partners-empty{
    display:none; /* JS toggles this */
    grid-column: 1 / -1; /* span the full partners-list */
    min-height: 160px;
    padding: 28px 22px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #374151;
}
.partners-empty .empty-icon{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    background: linear-gradient(90deg,#2563eb 0%, #6b3fa0 100%);
    box-shadow: 0 8px 24px rgba(37,99,235,0.12);
}
.partners-empty p{ margin:0; }
.partners-empty p.lead{ font-weight:800; font-size:18px; }
.partners-empty p.sub{ color:#6b7280; font-size:14px }

@media (max-width:640px){
    .partners-empty{ min-height:120px; padding:18px; }
    .partners-empty .empty-icon{ width:52px; height:52px; font-size:22px }
}


                        /* style for phone */

@media (max-width: 768px) {
    .nav-btn {
        display: none;
    }
    
    .nav{
        display: none;
    }

    .header {
        height: 150px;
        flex-direction: column;
        justify-content: space-around;
        position: relative;
        position: fixed;
    }

    .logo-wrap{
        margin-top: 14px;
        margin-bottom: -30px;
    }

    .searrch-container {
        margin-top: 40px;
    }

    .search-bar {
        width: 300px;
        margin-left: 0;
        margin-right: 0;
        font-size: 0.91rem;
    }

    .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    font-size: 22px;
    pointer-events: none;
    }

    .intro-title {
        font-size: 1.8rem;
    }

    .intro-cta{
        margin-right: 120px;
    }

    .partners-btn {
        position: absolute;
        display: inline-block;
        top: 235px;
        right: 35px;
        transform: none;
        height: 85px;
        width: 85px;
        font-size: 0.85rem;
    }

    .introduction{
        padding-top: 26px; /* space for fixed header */
        margin-top: 150px;
    }
}

@media (min-width: 768px) {
.side-bar{
    display: none;
}
.bars-button{
    display: none;
}
.bars-img{
    display: none;
}
}

@media (max-width: 767px) {
  .categories-container{
    display: none;
  }



/* Toggle Button */
.side-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 78vw;
  max-width: 200px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 16px #0002;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s;
  display: block;
}

/* Show sidebar when .active is added */
.side-bar.active {
  transform: translateX(0);
}

.bars-button {
  background: none;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 210;
  box-shadow: none;
  transition: background 0.18s;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bars-button:hover,
.bars-button:focus {
  background: #f3eaff;
}

.bars-img {
  width: 28px;
  height: 28px;
  display: block;
}

/* style for the categories inside the sidebar */

.sidebar-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 85px;
  align-items: flex-start;
  width: 100%;
  padding: 0 12px;
}

.sidebar-categories .categories {
  width: 120px;
  border-radius: 6px;
  padding: 13px 24px;
  font-size: 1.15rem;
  background: #2563eb !important;
  color: #fff;
  margin: 0 0 4px 0;
  text-align: left;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #2563eb55;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  text-decoration: none;
  text-align: center;
}



/* Overlay for the rest of the page when sidebar is open */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.25);
  z-index: 199;
}
.sidebar-overlay.active {
  display: block;
}

.theme-button{
    display: inline;
}

.choose-language{
    display: inline;
}

.custom-tooltip-theme{
    left: 170% !important;
}

.special-title {
    font-size: 1.8rem;
    width: 300px;
}

}

/* Ads Warning Banner */
.ads-warning-banner {
    display: flex;
    justify-content: center;
    padding: 10px 14px;
    margin: 36px 0 18px 0;
    position: relative;
    z-index: 5;
    margin-bottom: 120px;
    align-items: center;
    vertical-align: middle;
    text-align: center;
}



.ads-warning-banner .warning-content {
    width: 100%;
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(90deg, #fffbeb 0%, #fff7ed 100%);
    border-radius: 999px;
    padding: 10px 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
    border: 1px solid rgba(245,158,11,0.12);
}

.warning-content{
    align-items: center;
    align-content: center;
    vertical-align: middle;
    text-align: center;
    justify-content: center;
    justify-items: center
}

.warning-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111827;
    color: #ffd27a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 6px 18px rgba(251,191,36,0.15);
    flex-shrink: 0;
    transform-origin: center;
    animation: icon-pulse 2.4s ease-in-out infinite;
}

.warning-text {
    font-size: 1rem;
    font-weight: 800;
    color: #92400e;
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 0.6px;
}

.warning-subtle {
    font-size: 0.86rem;
    font-weight: 600;
    color: #7c2d12;
    opacity: 0.95;
    margin-left: auto;
}

@keyframes icon-pulse {
    0% { transform: scale(1); filter: drop-shadow(0 6px 10px rgba(251,191,36,0.06)); }
    50% { transform: scale(1.06); filter: drop-shadow(0 10px 20px rgba(251,191,36,0.12)); }
    100% { transform: scale(1); filter: drop-shadow(0 6px 10px rgba(251,191,36,0.06)); }
}

/* Ad Space Banner - TV News Style */
.ad-space-banner {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    border-top: 4px solid #fbbf24;
    border-bottom: 4px solid #fbbf24;
    padding: 0;
    margin: 40px 0 30px 0;
    position: relative;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 40px rgba(251, 191, 36, 0.15);
    overflow: hidden;
}

.ad-space-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.02) 2px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* Ticker Header */
.ad-space-ticker {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    padding: 12px 0;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
}

.ticker-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #1a1a2e;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', Arial, sans-serif;
    animation: pulse-text 2s ease-in-out infinite;
}

.ticker-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e53e3e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(229, 62, 62, 0.6);
    animation: blink 1s ease-in-out infinite;
}

.ticker-dot:nth-child(3) {
    animation-delay: 0.3s;
}

.ticker-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e53e3e, transparent);
    animation: slide-line 2s ease-in-out infinite;
}

/* Ad Container */
.ad-space-container {
    min-height: 140px;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #0f3460 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    border-left: 8px solid #fbbf24;
    border-right: 8px solid #fbbf24;
}

/* Corner Decorations */
.ad-space-decoration {
    position: relative;
    z-index: 0;
}

.decoration-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #fbbf24;
}

.decoration-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
    box-shadow: inset 0 0 10px rgba(251, 191, 36, 0.3);
}

.decoration-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
    box-shadow: inset 0 0 10px rgba(251, 191, 36, 0.3);
}

.decoration-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
    box-shadow: inset 0 0 10px rgba(251, 191, 36, 0.3);
}

.decoration-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
    box-shadow: inset 0 0 10px rgba(251, 191, 36, 0.3);
}

/* Animations */
@keyframes blink {
    0%, 49%, 100% {
        opacity: 1;
    }
    50%, 99% {
        opacity: 0;
    }
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.02);
    }
}

@keyframes slide-line {
    0%, 100% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}



/* Hide sidebar on desktop */
@media (min-width: 768px) {
  .side-bar, .sidebar-overlay {
    display: none;
  }
}

/* Remove footer rounding on small screens so it sits flush with device edges */
@media (max-width: 800px) {
    .footer {
        border-radius: 0 !important;
        box-shadow: none;
        padding-bottom: 30px;
    }
}