:root {
  --accent: #7c6bff;
  --accent-light: #a899ff;
  --text-muted: rgba(200, 200, 230, 0.55);
  --border: rgba(255, 255, 255, 0.08);
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

body {
    min-height: 100vh;
    background-color: #080312;
    background-image: linear-gradient(rgba(18, 10, 43, 0.4), rgba(13, 22, 59, 0.5)), url(../images/bga.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

a:hover {
    color: rgb(150, 150, 245);
}

/* ====== HEADER ====== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar {
    width: 100%;
    height: 80px;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}

.navbar .logo span {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
}

.logo {
  width: auto;
}

.logo:hover {
  transform: scale(1.04);
  display: inline-block;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}

.navbar .toggle_btn {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn {
    background-color: rgb(150, 150, 245);
    color: #fff;
    padding: 0.8rem 2.5rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2s ease;
    white-space: nowrap;
}

.action_btn:hover {
    scale: 1.05;
    color: #5017d3;
}

.action_btn:active {
    scale: 0.95;
}

/* DROPDOWN MENU */
.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    width: 300px;
    background: rgba(255, 255, 255, 0.1) transparent;
    backdrop-filter: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
    height: 240px;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}


/* ====== MOBILE DROPDOWN MENU ====== */
.dropdown_menu {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 2rem;
    top: 80px;
    width: 240px;
    background: rgba(10, 10, 25, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
    z-index: 999;
}

.dropdown_menu.open {
    max-height: 800px;
}

.dropdown_menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown_menu li:last-child {
    border-bottom: none;
}

.dropdown_menu a {
    display: block;
    padding: 0.65rem 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.dropdown_menu a:hover {
    color: rgb(150, 150, 245);
    background: rgba(150, 150, 245, 0.08);
    padding-left: 1.6rem;
}

/* ====== ABOUT SECTION ====== */
.about-wrapper {
    width: 100%;
    flex: 1;
    /* Pushes footer down */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    box-sizing: border-box;
}

.content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    color: #fff;
    background: rgba(20, 15, 45, 0.65);
    border: 1px solid rgba(150, 150, 245, 0.2);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(23, 121, 255, 0.15);
    box-sizing: border-box;
}

.content h1 {
    font-size: 45px;
    color: #fff;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.content h1:hover {
    text-shadow: 0 0 50px rgba(150, 150, 245, 0.5);
    transform: scale(1.05);
}

.why-choose-heading {
    margin-top: 4rem;
}

.about-desc {
    margin: 20px auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 700px;
}

.features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.features-list p {
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list i {
    color: #4da3ff;
    font-size: 1.4rem;
    background: rgba(77, 163, 255, 0.15);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(77, 163, 255, 0.3);
}

.text600 {
    color: rgb(136, 136, 247);
}

button {
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #009688;
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px #0ef;
}

.butt {
    background: #772dff;
    height: 100%;
    width: 0;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 1.80s;
}

button:hover span {
    width: 100%
}

button:hover {
    border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #04040f;
  border-top: 1px solid var(--border);
  padding: 5rem 1.5rem 0;
  margin-top: auto;
}

.footer-inner {
  max-width: 1160px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-logo {
  font-size: 1.9rem;
  font-weight: 800;
  color: #7c6bff;
  letter-spacing: -1px;
  margin-bottom: 0.8rem;
}

.footer-logo span {
  color: #fff;
}

.footer-brand-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.fsocial-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted) !important;
  transition: all var(--transition);
}

.fsocial-icon:hover {
  background: rgba(124, 107, 255, 0.15);
  border-color: rgba(124, 107, 255, 0.3);
  color: var(--accent-light) !important;
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.footer-nav a i {
  font-size: 0.6rem;
  color: var(--accent);
}

.footer-nav a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
  transition: color var(--transition);
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 0.9rem;
}

.footer-contact-item:hover {
  color: #fff;
}

.footer-bottom-bar {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom-bar p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-bar strong {
  color: var(--accent-light);
}

/* ============================
   RESPONSIVE — TABLET (≤992px)
   ============================ */
@media (max-width: 992px) {

    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: flex;
    }

    /* Hide profile text on smaller screens */
    .profile-name,
    .profile-type,
    .bx-chevron-down {
        display: none;
    }

    .profile-btn {
        padding: 0.3rem;
        background: transparent;
        border-color: transparent;
    }

    .features {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================
   RESPONSIVE — MOBILE (≤768px)
   ============================ */
@media (max-width: 768px) {
    header {
        padding: 0 1rem;
    }

    .dropdown_menu {
        right: 1rem;
        top: 70px;
    }

    .hme {
        min-height: calc(100vh - 70px);
    }

    .about-wrapper {
        padding: 3rem 1rem;
    }

    .content {
        padding: 2rem 1.25rem;
    }

    .content h1 {
        font-size: 32px;
        margin-top: 10px;
        margin-bottom: 1rem;
    }

    .why-choose-heading {
        margin-top: 2.5rem;
    }

    .about-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .features-list {
        margin-top: 1.5rem;
    }

    .features-list p {
        font-size: 0.95rem;
    }

    /* Stack buttons vertically */
    .hero-btns-wrap {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .btnn a,
    .btnn1 a {
        padding: 16px 24px;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .how-it-works {
        padding: 4rem 1.25rem;
    }

    .card {
        width: 100%;
        max-width: 340px;
    }

    .feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .icon i {
        font-size: 28px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================
   RESPONSIVE — SMALL (≤480px)
   ============================ */
@media (max-width: 480px) {
    .navbar {
        height: 64px;
    }

    .navbar .logo a {
        font-size: 1.6rem;
    }

    .dropdown_menu {
        right: 0.75rem;
        left: 0.75rem;
        width: auto;
    }

    .btnn a,
    .btnn1 a {
        padding: 14px 18px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .contentii h3 {
        font-size: 1.15rem;
    }


}