@font-face {
    font-family: 'SoraFont';
    src: url('/stuff/Sora-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* --- Navigation Ribbon --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    box-sizing: border-box;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #6210c6;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links li a:hover {
    opacity: 0.6;
}

.lang-current {
    color: #6210c6;
    font-weight: 300;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-contact {
    background-color: #6210c6;
    color: white !important;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease !important;
}

.btn-selected {
    background-color: #d5b8f9;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease !important;
}


/* Styling to match the info-text section */
.hero-description {
    font-size: clamp(1rem, 1.5vw, 2rem); /* Matches .info-text */
    font-weight: 600;                 /* Matches .info-text */
    line-height: 1.5;
    color: #52448e;                   /* Keeps the purple theme */
    max-width: 1100px;                /* Keeps line length readable */
    margin-left: 10%;                 /* Aligns with your accent line */
    margin-right: 10%;
    font-family: 'Inter', sans-serif;
}

/* Optional: adjust the hero-content padding if the text feels too high */
.hero-content {
    padding-top: 100px;
    padding-bottom: 40px;
}


/* --- Vanta Sections --- */
.vanta-section {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    z-index: 1;
}

.vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    padding-top: 80px;
}

.info-section {
    background-color: #ffffff;
    color: #52448e;
    padding: 50px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 25vh;
    position: relative;
    z-index: 1;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

.info-text {
    font-size: clamp(1rem, 1.5vw, 2rem);
    font-weight: 600;
    line-height: 1.5;
    max-width: 1100px;
    margin: 0 auto;
}

.services-section {
    /*background-color: #f8f9fa; */
    background-color: #61418b;
    padding: 80px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #52448e;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
}

h4 {
    color: #52448e;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-card ul {
    padding-left: 18px;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.service-card li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #4a5568;
}

.service-header {
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #4a5568;
}

.service-wrap-up {
    font-weight: 600;
    font-size: 1rem;
    color: #6210c6;
    border-top: 1px solid #edf2f7;
    padding-top: 20px;
    line-height: 1.4;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin: 0 0 0 10%;
    font-family: 'SoraFont', sans-serif;
    color: #6210c6;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 0;
    font-family: 'SoraFont', sans-serif;
    color: #6210c6;
}

.accent-line {
    width: 50px;
    height: 4px;
    background-color: #6210c6;
    margin-bottom: 10px;
    margin-left: 10%;
}

/* --- Contact Grid Styles --- */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 0 10%;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    min-width: 300px;
}

.contact-left p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #52448e;
    margin-top: 20px;
}

.contact-right {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    resize: none;
}

.contact-form button {
    background-color: #6210c6;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .contact-grid {
        flex-direction: column;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
    }
}

/* AI part */
/* --- Collapsible Accordion Styles --- */
.collapsible-container {
    padding: 40px 8%;
    background-color: #e1dce5;
}

details {
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 10px;
}

summary {
    font-family: 'SoraFont', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #52448e;
    padding: 20px 0;
    cursor: pointer;
    list-style: none; /* Removes default arrow in some browsers */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
}

details[open] summary::after {
    content: '-';
}

/* Container for the content inside details */
.content-wrapper {
    padding: 20px 0 40px 0;
}

/* Grid adjustment for being inside the details tag */
.agent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.agent-box {
    background: rgba(248, 249, 250, 0.7);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(98, 16, 198, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .agent-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .agent-grid { grid-template-columns: 1fr; }
    summary { font-size: 1.4rem; }
}

/* --- Hamburger Icon Styling --- */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #6210c6;
    border-radius: 3px;
    transition: 0.3s;
}

/* --- Mobile Menu Styles --- */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex; /* Show hamburger on mobile */
    }

    .nav-links {
        display: none; /* Hide standard links */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Sits right under the navbar */
        left: 0;
        width: 100%;
        /*background-color: #401f68;*/
	background-color: #402b59;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        gap: 20px;
    }

    .nav-links.active {
        display: flex; /* Show when 'active' class is added via JS */
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
	color: white;
	font-weight: 100;
    }

    .btn-contact {
        display: inline-block;
        width: auto;
    }
}

/* --- Language Picker Styles --- */
.lang-picker {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 1.5rem; /* Makes the flag a good size */
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 140px;
    z-index: 1001;
}

.lang-dropdown li {
    padding: 0;
    text-align: left;
}

.lang-dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem !important;
    color: #52448e !important;
    text-decoration: none;
    transition: background 0.2s;
}

.lang-dropdown li a:hover {
    background-color: #f3f0ff;
    opacity: 1 !important;
}

/* Show dropdown on hover (Desktop) */
.lang-picker:hover .lang-dropdown {
    display: block;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .lang-picker {
        justify-content: center;
        padding: 15px 0;
    }
    .lang-dropdown {
        position: static; /* Stack inside the mobile menu */
        box-shadow: none;
        background: transparent;
        text-align: center;
        display: block; /* Always show or toggle separately on mobile */
    }
    .lang-dropdown li a {
        color: white;/*inherit !important;*/
    }
}

