* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    min-height: 100vh;
}
::selection {
    background: #5128F5;
    color: #fff;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fff;
}
::-webkit-scrollbar-thumb {
    background: #5128F5;
}
::-webkit-scrollbar-thumb:hover {
    background: #341c75;
}
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
}
.header {
    background-color: #000;
    border-radius: 55px;
    border-bottom: 2px solid #5128F5;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1% 3%;
}
.home-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
.home-links span {
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
}
.home-links span:hover {
    color: #ffdfff;
}
.right-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
.btn-header {
    background: linear-gradient(135deg, #f81fff 0%, #5128F5 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 55px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
}
.btn-header:hover {
    filter: brightness(1.2);
}
.btn-phone {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 55px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.btn-phone:hover {
    background-color: #fff;
    color: #5128F5;
}
.burger-icon {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    z-index: 99999;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobile-nav-overlay.show {
    left: 0;
}
.mobile-nav-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}
.mobile-nav-overlay a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px;
    display: block;
    text-align: center;
}
.mobile-nav-overlay a:hover {
    color: #ffdfff;
}
.language-switch {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 55px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.language-switch:hover {
    background-color: #fff;
    color: #5128F5;
}
.hero-section {
    background: linear-gradient(135deg, #5128F5 40%, #341c75 100%);
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 120px 20px 140px;
    position: relative;
}
.hero-text {
    flex: 1 1 400px;
    z-index: 2;
    margin: 0 20px;
    color: white;
}
.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero-text p {
    max-width: 600px;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}
.btn-hero {
    background: linear-gradient(135deg, #f81fff 0%, #5128F5 100%);
    color: #fff;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.btn-hero:hover {
    filter: brightness(1.2);
}
.hero-animation {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    position: relative;
}
.hero-animation-container {
    width: 500px;
    height: 500px;
    position: relative;
    z-index: 2;
}
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: float 6s infinite ease-in-out;
    z-index: 1;
}
.circle:nth-child(1) {
    width: 260px; height: 260px;
    top: -50px; left: -50px;
}
.circle:nth-child(2) {
    width: 320px; height: 320px;
    bottom: -80px; right: 10%;
}
.circle:nth-child(3) {
    width: 180px; height: 180px;
    top: 20%; left: 45%;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
}
.countup {
    background: #fff;
    color: #000;
    padding: 20px 20px 60px;
    text-align: center;
}
.countup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.countup-item {
    border-radius: 10px;
    padding: 50px;
    color: #5128F5;
    background: #fefefe;
    transition: 0.3s;
}
.countup-item:hover {
    transform: translateY(-5px);
}
.countup-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    align-items: baseline;
}
.countup-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}
.countup-symbol {
    font-size: 2.5rem;
    font-weight: 700;
    color: inherit;
}
.countup-text {
    font-size: 1.2rem;
    color: #444;
    text-align: center;
}
.services-section {
    background: #000;
    color: #fff;
    padding: 80px 20px 100px;
    text-align: center;
}
.services-section h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.services-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    margin: 0 5%;
}
.services-cards::-webkit-scrollbar {
    height: 6px;
}
.services-cards::-webkit-scrollbar-thumb {
    background: #5128F5;
}
.service-card-white {
    flex: 0 0 auto;
    background-color: #fff;
    color: #000;
    padding: 20px 30px;
    border-radius: 30px;
    transition: 0.3s;
    min-width: 280px;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.service-card-white:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.service-icon {
    font-size: 2em;
    margin-bottom: 15px;
    color: #5128F5;
}
.service-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 700;
}
.service-text {
    font-size: 1em;
    line-height: 1.5;
}
.btn-learn {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}
.btn-learn:hover {
    color: #5128F5;
}
.scroll-animations-section {
    position: relative;
    display: flex;
    height: 60vh;
    overflow: hidden;
    background: linear-gradient(135deg, #5128F5 40%, #341c75 100%);
    color: #fff;
}
.scroll-animations-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex: 1;
}
.left-fixed-text {
    flex: 0 0 300px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 2.5rem;
    line-height: 2.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.animation-right {
    flex: 1 1 auto;
    overflow-y: auto;
    max-height: 100vh;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    scrollbar-width: none; /* Firefox: hide */
}
.animation-right::-webkit-scrollbar {
    display: none; /* Chrome/Safari: hide */
}
.animation-block {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 200px 200px;
    transition: transform 0.3s;
}
.animation-block:hover {
    transform: scale(1.02);
}
.why-wrapper {
    background: #fff;
    color: #000;
    padding: 80px 20px 100px;
    text-align: center;
}
.why-wrapper h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.why-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}
.why-card {
    background: #fff;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex: 1 1 280px;
    max-width: 320px;
    transition: 0.3s;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.why-card i {
    font-size: 2rem;
    color: #5128F5;
    margin-bottom: 10px;
}
.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.why-card p {
    font-size: 1rem;
    line-height: 1.4;
    color: #444;
}
.cta-offer {
    background: #000;
    color: #fff;
    padding: 80px 20px 100px;
    text-align: center;
}
.cta-offer h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.cta-offer p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.5;
}
.btn-offer {
    padding: 10px 20px;
    background: linear-gradient(135deg, #f81fff 0%, #5128F5 100%);
    border: none;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
    font-size: 1rem;
}
.btn-offer:hover {
    filter: brightness(1.1);
}
.timeline-section {
    background: #fff;
    color: #000;
    padding: 80px 20px 100px;
    text-align: center;
}
.timeline-section h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.timeline {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.timeline ul {
    padding: 50px 0;
    position: relative;
}
.timeline ul li {
    list-style-type: none;
    position: relative;
    width: 6px;
    margin: 0 auto;
    padding-top: 50px;
    background: #5128F5;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 1s, opacity 1s;
}
.timeline ul li.in-view {
    transform: translateY(0);
    opacity: 1;
}
.timeline ul li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    z-index: 1;
    transition: background 0.5s ease-in-out;
}
.timeline ul li.in-view::after {
    background: #5128F5;
}
.timeline ul li div {
    position: relative;
    bottom: 0;
    width: 400px;
    padding: 15px;
    background: #fefefe;
    color: #444;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.5s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
.timeline ul li:nth-child(odd) div {
    left: 45px;
}
.timeline ul li:nth-child(even) div {
    left: -439px;
}
.timeline ul li div time {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #5128F5;
}
.timeline ul li div::before {
    content: "";
    position: absolute;
    bottom: 7px;
    width: 0;
    height: 0;
    border-style: solid;
}
.timeline ul li:nth-child(odd) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #fefefe transparent transparent;
}
.timeline ul li:nth-child(even) div::before {
    right: -15px;
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent #fefefe;
}
.timeline ul li.in-view div {
    visibility: visible;
    opacity: 1;
    transform: none;
}
@media (min-width: 1440px) {
    .timeline ul li div {
        width: 400px;
    }
}
@media (max-width: 900px) {
    .timeline ul li div {
        width: 250px;
    }
    .timeline ul li:nth-child(even) div {
        left: -289px;
    }
}
@media (max-width: 600px) {
    .timeline ul li {
        margin-left: 20px;
    }
    .timeline ul li div {
        width: calc(100vw - 91px);
    }
    .timeline ul li:nth-child(even) div {
        left: 45px;
    }
    .timeline ul li:nth-child(even) div::before {
        left: -15px;
        border-width: 8px 16px 8px 0;
        border-color: transparent #fefefe transparent transparent;
    }
}
.faq {
    background: #000;
    color: #fff;
    padding: 80px 20px 100px;
    text-align: center;
}
.faq h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.faq-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    border-bottom: 1px solid #555;
    padding: 10px 0;
    margin-bottom: 15px;
}
.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 5px;
    color: #ddd;
}
.faq-answer {
    display: none;
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    padding-left: 5px;
}
.faq-answer.show {
    display: block;
    animation: faqSlideDown 0.4s ease forwards;
}
@keyframes faqSlideDown {
    0% { max-height: 0; opacity: 0; }
    100% { max-height: 500px; opacity: 1; }
}
.contact-form {
    background: linear-gradient(135deg, #5128F5 40%, #341c75 100%);
    color: #fff;
    padding: 80px 20px 100px;
    text-align: center;
}
.contact-form h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.contact-form p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.5;
}
.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: rgba(255,255,255,0.07);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 20px 30px;
    backdrop-filter: blur(5px);
}
.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 1rem;
}
.form-group input,
.form-group select {
    height: 40px;
}
.form-group textarea {
    height: 120px;
    resize: vertical;
}
.submit-btn {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(135deg, #f81fff 0%, #5128F5 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}
.submit-btn:hover {
    filter: brightness(1.1);
}
.submit-btn:active {
    transform: scale(0.98);
}
.submit-btn.loading {
    pointer-events: none;
    background: #5128F5;
    color: transparent;
}
.submit-btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner 0.7s linear infinite;
}
@keyframes spinner {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.footer p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.footer a {
    color: #fff;
    text-decoration: underline;
}
.footer a:hover {
    color: #5128F5;
}
.chatbot-dummy {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    animation: pulsate 2s infinite;
}
@keyframes pulsate {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.chatbot-dummy i {
    color: #5128F5;
    font-size: 1.5rem;
}
.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}
.chatbot-header {
    background: #5128F5;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    position: relative;
}
.close-chatbot {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.chatbot-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    position: relative;
}
.chatbot-input button.chatbot-loading {
    position: relative;
    color: transparent;
    background: #5128F5;
}
.chatbot-input button.chatbot-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner 0.7s linear infinite;
}
.chatbot-input input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 8px;
    outline: none;
}
.chatbot-input button {
    background: #5128F5;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.chatbot-input button:hover {
    filter: brightness(1.1);
}
@media (max-width: 576px) {
    .hero-section {
        flex-direction: column-reverse;
        padding: 40px 15px 80px;
        background-attachment: scroll;
    }
    .hero-text {
        margin-top: 30px;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-text p {
        font-size: 0.9rem;
    }
    .hero-animation-container {
        width: 90%;
        height: auto;
    }
    .burger-icon {
        display: block;
    }
    .home-links {
        display: none;
    }
}
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column-reverse;
        padding: 60px 20px 100px;
        background-attachment: scroll;
    }
    .hero-text {
        margin-top: 40px;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .hero-animation {
        margin-top: 10px;
    }
    .hero-animation-container {
        width: 80%;
        height: auto;
    }
    .scroll-animations-container {
        flex-direction: column;
    }
    .left-fixed-text {
        position: static;
        margin-bottom: 30px;
        text-align: center;
    }
    .animation-right {
        margin-left: 0;
        max-height: auto;
        overflow-y: visible;
        padding: 20px;
    }
    .burger-icon {
        display: block;
    }
    .home-links {
        display: none;
    }
}
@media (max-width: 992px) {
    .burger-icon {
        display: block;
    }
    .home-links {
        display: none;
    }
    .services-cards {
        margin: 0 2%;
    }
}
@media (min-width: 1200px) and (max-width: 1439px) {
    .hero-section {
        padding: 80px 50px 120px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    .hero-text {
        max-width: 550px;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .hero-text p {
        font-size: 1.2rem;
    }
    .hero-animation-container {
        width: 500px;
        height: 500px;
    }
}
@media (min-width: 1440px) {
    .hero-section {
        padding: 100px 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }
    .hero-text {
        max-width: 600px;
    }
    .hero-text h1 {
        font-size: 3.5rem;
    }
    .hero-text p {
        font-size: 1.3rem;
    }
    .hero-animation-container {
        width: 600px;
        height: 600px;
        margin: 0;
    }
    .services-section {
        padding: 100px 40px;
    }
    .services-cards {
        margin: 0 10%;
    }
    .service-card-white {
        min-width: 320px;
        max-width: 420px;
    }
}
/* Popup Container */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.popup-container.show {
    display: flex;
    opacity: 1;
}
.popup-inner {
    background-color: #fff;
    color: #000;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 80%;
    text-align: center;
    position: relative;
    animation: scaleIn 0.3s ease;
}
@keyframes scaleIn {
    0% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    background: none;
    border: none;
    outline: none;
    color: #333;
}
.popup-content {
    font-size: 1rem;
    margin-top: 20px;
}
.social-sharing {
    margin-top: 20px;
}

.social-sharing a {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.social-sharing a:hover {
    color: #5128F5;
}
