:root {
    --primary: #A044FF;
    --secondary: #472e86;
    --accent: #00F5FF;
    --dark: #0A0A1E;
    --darker: #050510;
    --purple-dark: #32135d;
    --purple-very-dark: #1b043a;
    --card-bg: rgba(42, 42, 84, 0.4);
    --text: #FFFFFF;
    --text-muted: #A0A0C8;
    --success: #40bb30;
    --warning: #FFB800;
    --error: #FF3B5C;
    --info: #3be8ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--secondary) 50%, var(--dark) 100%);
    background-attachment: fixed;
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

.flash-message {
  min-width: 300px;
  max-width: 500px;
  background: white;
  position: fixed;
  border-radius: 8px;
  padding-left:5px;
  padding-right:5px;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 90%;
  top: -9%;
  left: 50%;
  z-index: 1000;
} @media (max-width: 768px) {
.flash-message {
  width: 90%;
  top: 2%;
  left: 5%;
  transform: translate(0, -50%);
}
}

.alert-success {
  border-color: #10b981;
  color: var(--success);
}

.alert-danger {
  border-color: #ef4444;
  color: var(--error);
}

.alert-warning {
  border-color: #f59e0b;
  color: var(--warning);
}

.alert-info {
  border-color: #3b82f6;
  color: var(--info);
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.show {
    display: block;
}

.hide {
    display: none;
}


code {
    font-family: 'Space Mono', monospace;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 68, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--text);
}

.btn-secondary:hover {
    background: rgba(160, 68, 255, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
}

.hero-content {
    text-align: left;
    justify-items: center;
    padding-left: 2rem;
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-action-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-action-buttons .btn-primary,
.hero-action-buttons .btn-secondary {
    flex: 1;
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-action-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-action-buttons .btn-primary,
    .hero-action-buttons .btn-secondary {
        flex: 1 1 100%;
    }
}


@media (max-width: 768px) {
    .hero-action-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.cta-section .btn-primary {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}


.hero-visual {
    position: relative;
    padding-top: 3rem;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(160, 68, 255, 0.3));
}

.blockchain-cube {
    width: 400px;
    height: 400px;
    background: none;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.link{
    color: var(--white);
    text-decoration: underline;
}

.link-text{
    color: var(--white);
    text-decoration: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}


/* Features Section */
.features {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 68, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}


/* Quick Actions */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(160, 68, 255, 0.3);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: rgba(160, 68, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(160, 68, 255, 0.3);
}

.action-icon {
    font-size: 2rem;
}


/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
        padding-left: 0;
    }

    .blockchain-cube {
        width: 100%;
        height: 300px;
    }
}
/* Technology Section */
.technology-section {
    margin-top: 120px!important;
    padding: 120px 20px 190px;
    background: linear-gradient(to right, hsl(250, 25%, 10%), hsl(250, 25%, 10%, 0.8), hsl(250, 25%, 10%))!important;
}
.technology-container {
    max-width: 1200px;

    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
..technology-container {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .technology-section {
        padding: 40px 30px 90px;
    }
    .technology-content {
        order: 2;
    }

    .technology-container > div:last-child {
        order: 1;
    }
}

@media (min-width: 769px) {
    .technology-container {
        flex-direction: row;
        gap: 2rem;
    }

    .technology-content,
    .technology-container > div:last-child {
        flex: 1;
        order: initial;
    }
}

@media (min-width: 769px) {
    .technology-container {
        flex-direction: row;
        gap: 2rem;
    }

    .technology-content {
        order: 1;
    }

    .technology-container > div:last-child {
        order: 2;
    }
}

.technology-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.technology-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.technology-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.technology-content p {
    line-height: 1.8;
    color: var(--text, #a0a0a0);
}

@media (max-width: 768px) {
    .technology-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.capsule-badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
.capsule-badge {
display: none;
}
}


/* Navbar */
.navbar {
    background: rgba(10, 10, 30, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(160, 68, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
}

.logo span {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.logo img {
    transform: scale(0.67);
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    color: inherit;
    text-decoration: none;

}

.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0.5rem;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Desktop - always show links horizontally */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
    }

    .navbar-toggler {
        display: none;
    }
}

/* Mobile - hamburger and dropdown */
@media (max-width: 991px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .navbar-collapse {
        flex-basis: 100%;
        background: var(--card-bg);
        border: 1px solid rgba(160, 68, 255, 0.2);
        border-radius: 0.5rem;
        margin-top: 1rem;
        padding: 1rem;
        display: none;
    }

    .navbar-collapse.show {
        display: block;
    }

    .nav-links {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    width: 100%;
    }

    .nav-links a {
        text-align: left;
        width: 100%;

    }
}


/* Footer */
.footer {
    background: rgba(10, 10, 30, 0.9);
    border-top: 1px solid rgba(160, 68, 255, 0.2);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(160, 68, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
}


/* CTA Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: hsl(240, 20%, 95%);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
}

.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
    @media (max-width: 768px) {
        .cta-section  {
         margin-top: -60px;
        padding: 5rem 1rem;
        overflow: hidden;
        }
        .cta-section .container {
        flex-direction: column-reverse;
        padding: 0 1rem;
    }
}
.cta-section .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-section .content-wrapper {
    flex: 1;
}

.cta-section .hero-visual {
    flex: 1;
}

@media (max-width: 768px) {
    .cta-section .container {
        flex-direction: column-reverse;
    }
}


.cta-visual {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}


.cta-background {
    position: absolute;
    inset: 0;
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.content-wrapper {
    max-width: 42rem;
    opacity: 0;
    animation: fade-in 0.8s ease-out forwards;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(250, 25%, 10%, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid hsl(250, 30%, 25%, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    color: hsl(180, 100%, 50%);
}

.badge-text {
    font-size: 0.875rem;
    color: hsl(240, 10%, 60%);
}

.heading {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, hsl(180, 100%, 60%) 0%, hsl(270, 80%, 70%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    color: hsl(240, 10%, 60%);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 36rem;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 28rem;
}

.email-input {
    height: 3rem;
    padding: 0 1rem;
    background: hsl(250, 30%, 15%);
    border: 1px solid hsl(250, 30%, 20%, 0.5);
    border-radius: 0.75rem;
    color: hsl(240, 20%, 95%);
    font-size: 1rem;
    transition: all 0.2s;
}

.email-input::placeholder {
    color: hsl(240, 10%, 60%);
}

.email-input:focus {
    outline: none;
    border-color: hsl(180, 100%, 50%, 0.5);
    box-shadow: 0 0 0 3px hsl(180, 100%, 50%, 0.2);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3rem;
    padding: 0 2rem;
    background: linear-gradient(135deg, hsl(180, 100%, 50%) 0%, hsl(180, 100%, 40%) 100%);
    color: hsl(250, 30%, 6%);
    font-weight: 600;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px hsl(180, 100%, 50%, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.arrow-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.submit-btn:hover .arrow-icon {
    transform: translateX(4px);
}

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: hsl(250, 25%, 10%);
    border: 1px solid hsl(180, 100%, 50%, 0.3);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px hsl(0, 0%, 0%, 0.3);
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: hsl(240, 20%, 95%);
}

.toast-description {
    font-size: 0.875rem;
    color: hsl(240, 10%, 60%);
}

@media (min-width: 640px) {
    .email-form {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .heading {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .heading {
        font-size: 3rem;
    }
}


/* Login Page Styles */
.margin_sides_mobile {
    padding: 0 1rem;
}

.cta-section-registration {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 68, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.text_light {
    color: var(--text);
}

.text-foreground {
    color: var(--text);
}

.text-muted-foreground {
    color: var(--text-muted);
}

.border-border {
    border-color: rgba(160, 68, 255, 0.2);
    margin: 2rem 0;
}

/* Form Styles */

.form-group {
    margin-bottom: 1.5rem;
    border: none;
}

.form-control-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(160, 68, 255, 0.3);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.1);
}

.form-control-lg {
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
}

.is-invalid {
    border-color: var(--error);
}

.invalid-feedback {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

/* Checkbox Styles */
.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(160, 68, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: pointer;
}

/* Action Button */
.action_btn {
    text-align: left;
    margin-bottom: 1.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text);
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 68, 255, 0.4);
}

.btn-sm {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

/* Links */
.cta-section-registration a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.cta-section-registration a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.items-start {
    align-items: flex-start;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.w-full {
    width: 100%;
}

.max-w-lg {
    max-width: 32rem;
}

.text-center {
    text-align: center;
}

.text-left,
.align-left {
    text-align: left;
}

.pb-8 {
    padding-bottom: 2rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pt-3 {
    padding-top: 0.75rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.font-bold {
    font-weight: 700;
}

/* Tooltip */
.tip {
    cursor: help;
}

/* Responsive */
@media (max-width: 768px) {
    .margin_sides_mobile {
        padding: 0 0.5rem;
    }

    .cta-section-registration {
        padding: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .text-3xl {
        font-size: 1.5rem;
    }

    .text-lg {
        font-size: 1rem;
    }
}

/* About Us */
.about-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .about-hero {
        text-align: left;
        padding: 3rem 2rem 0rem !important;
    }

    .about-hero-content h1,
    .about-hero-content p {
        text-align: left;
    }
}


/* Mission Section */
.mission-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.mission-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 68, 255, 0.3);
    border-radius: 16px;
    padding: 2rem 1rem;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Vision & Impact Section */
.vision-impact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.vision-column h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.vision-column p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.values-section .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 68, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.2);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 2rem;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-section .values-grid {
        grid-template-columns: 1fr;
    }
}


/* Contact Page */
.contact-page {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header {
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-hero-content .hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: 0 2rem 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 68, 255, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.contact-form-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.2);
}

.contact-form-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

/* Alert Messages */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(255, 59, 92, 0.1);
    border-color: var(--error);
    color: var(--error);
}

.alert i {
    font-size: 1.25rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(160, 68, 255, 0.3);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.btn-outline {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 68, 255, 0.4);
}

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.btn-outline:hover .btn-arrow {
    transform: translateX(4px);
}

/* Contact Information */
.contact-info {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 68, 255, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.contact-info:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.2);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-details p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.contact-details p:first-child {
    font-weight: 600;
    color: var(--text);
    font-size: 1.1rem;
}

.contact-details-sub-title {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 1.1rem;
}


/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 2rem 2rem;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-hero-content .hero-description {
        font-size: 1rem;
    }

    .contact-form-section {
        padding: 2rem 1rem 4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-card,
    .contact-info {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .btn-outline {
        width: 100%;
        justify-content: center;
    }
}


/* Contact Thank You Page */
.contact-thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 68, 255, 0.3);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.3s;
}

.contact-thank-you-content:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.2);
}

.contact-thank-you-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.contact-thank-you-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-thank-you-content .btn-outline {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-thank-you-content {
        padding: 2rem 1.5rem;
    }

    .contact-thank-you-content h2 {
        font-size: 2rem;
    }

    .contact-thank-you-content p {
        font-size: 1rem;
    }
}

/* TDC Features Section */

.tdc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tdc-feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.tdc-feature-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.tdc-section-divider {
    margin-top: 4rem;
    padding-top: 3rem;
    position: relative;
}

.tdc-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .tdc-features {
        grid-template-columns: 1fr;
    }
}

.tdc-features-container {
    border: 0px solid rgba(160, 68, 255, 0.2);
    background: var(--card-bg);
    border-radius: 16px;
    padding: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.sub-benefits-item {
    color: var(--accent);
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ Section */
.faq-container{
    background: linear-gradient(to right, hsl(250, 25%, 10%), hsl(250, 25%, 10%, 0.8), hsl(250, 25%, 10%))!important;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding-bottom: 10rem;
}

.faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 68, 255, 0.3);
    border-radius: 16px;
    padding: 0.6rem 2rem;
    transition: all 0.3s;
    margin-bottom: 0.6rem;
    display: block;
    align-items: center;
    gap: 12px;
} @ media (max-width: 480px) {
    .faq-item {
        padding: 0rem 0rem!important;
    }
}

.faq-item h2 {
    order: 1;
    margin: 0;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.2);
}

.faq-up{
    width: 2.8rem;
    height: 2.8rem;
    padding-top: 0.6rem;
    display: flex;
    justify-content: right;
    align-items: right;
    flex: 1 1 auto;
}

.faq-answer{
    margin-top: 0.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 300;
}

.faq-item .faq-answer {
  order: 2;
  margin: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

.faq-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
}


.faq-badge p {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
} @ media (max-width: 480px) {
  .faq-badge p {
    font-size: 0.1rem;
    font-weight: 300;
  }
}


.faq-badge .faq-up {
  margin-left: auto;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.faq-badge .faq-up .faq-icon,
.faq-badge .faq-up iconify-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.faq-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
} @ media (max-width: 768px) {
    .faq-hero {
        text-align: left;
        padding: 1rem 1rem 0rem !important;
    }
    .faq-hero-content h1,
    .faq-hero-content p {
        text-align: left;
    }
}

.faq-hero-content {
    margin-bottom: 3rem;
}

.faq-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.faq-hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Home page */

.home-container{
    background: linear-gradient(to right, hsl(250, 25%, 10%), hsl(250, 25%, 10%, 0.8), hsl(250, 25%, 10%))!important;}
    height: 100%;
    min-height: 100vh;
    flex-direction: column;
    margin: 0;
    padding-bottom: 10rem;
}

/* Settings Page */

.settings-container{
    background: linear-gradient(to right, hsl(250, 25%, 10%), hsl(250, 25%, 10%, 0.8), hsl(250, 25%, 10%))!important;
    height: 100%;
    min-height: 100vh;
    flex-direction: column;
    margin: 0;
    padding-bottom: 10rem;
}

