:root {
    --primary: #7B2CBF;
    --secondary: #3A0CA3;
    --accent: #4CC9F0;
    --light: #F8F9FA;
    --dark: #212529;
    --success: #4CAF50;
    --gradient-1: #7209B7;
    --gradient-2: #3F37C9;
    --gradient-3: #4CC9F0;
    --font-family: 'Space Grotesk', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--dark);
    overflow-x: hidden;
    background-color: #f9f9ff;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

section {
    padding: 100px 0;
    position: relative;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gradient-1), var(--gradient-2));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--gradient-2), var(--gradient-1));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(123, 44, 191, 0.2);
}

.btn-outline-secondary {
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(58, 12, 163, 0.2);
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, var(--gradient-1), var(--gradient-2));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(45deg, var(--gradient-1), var(--gradient-3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-divider .shape-fill {
    fill: #f9f9ff;
}

.shape-divider-bottom {
    transform: rotate(0);
    top: 0;
}

.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, var(--gradient-1), var(--gradient-3));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.offcanvas {
    max-width: 300px;
}

.offcanvas-header {
    padding: 20px;
}

.offcanvas-title {
    font-size: 24px;
}

.offcanvas .nav-link {
    padding: 12px 20px;
    border-radius: 5px;
    margin: 5px 0;
}

.offcanvas .nav-link:hover {
    background-color: rgba(123, 44, 191, 0.1);
}

.hero-section {
    padding: 180px 0 120px;
    background-color: #f9f9ff;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #6c757d;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-image {
    position: relative;
    margin-top: 30px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-inner {
    display: flex;
    align-items: center;
}

.floating-card i {
    font-size: 24px;
    margin-right: 10px;
    color: var(--primary);
}

.card-1 {
    top: -20px;
    left: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: -30px;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: -20px;
    left: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.features-section {
    background-color: white;
    padding: 120px 0;
}

.feature-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.1);
}

.feature-card.active {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    color: white;
}

.feature-card.active .feature-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(123, 44, 191, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 0;
    color: #6c757d;
}

.feature-card.active p {
    color: rgba(255, 255, 255, 0.8);
}

.how-it-works-section {
    background-color: #f9f9ff;
    padding: 120px 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--gradient-1), var(--gradient-3));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

.timeline-icon i {
    font-size: 24px;
    color: white;
}

.timeline-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.timeline-content p {
    margin-bottom: 0;
    color: #6c757d;
}

.testimonials-section {
    padding: 120px 0;
    background-color: white;
}

.testimonial-card {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.1);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--gradient-2), var(--gradient-3));
    color: white;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-card.featured .testimonial-content p {
    color: white;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border: 2px solid var(--primary);
}

.testimonial-card.featured .testimonial-author img {
    border-color: white;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 14px;
    color: #6c757d;
}

.testimonial-card.featured .testimonial-author p {
    color: rgba(255, 255, 255, 0.8);
}

.faq-section {
    background-color: #f9f9ff;
    padding: 120px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 30px;
    font-weight: 600;
    font-size: 18px;
    background-color: white;
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 30px;
    background-color: white;
}

.namo2 {
    width: 100%;
}

.contact-section {
    padding: 120px 0;
    background-color: white;
}

.contact-info {
    height: 100%;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-card p {
    margin-bottom: 0;
    color: #6c757d;
}

.map-container {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.form-floating > .form-control {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 20px 15px;
    height: calc(3.5rem + 2px);
}

.form-floating > .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(123, 44, 191, 0.25);
}

.form-floating > textarea.form-control {
    height: 150px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.footer {
    background-color: #1a1a2e;
    color: white;
    padding: 80px 0 0;
}

.footer-brand h3 {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-newsletter .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    border-radius: 50px 0 0 50px;
    padding: 12px 20px;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .form-control:focus {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.footer-newsletter .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 25px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 60px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-bottom i {
    color: #ff6b6b;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin-bottom: 0;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: none;
}

.privacy-section {
    padding: 180px 0 100px;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-card h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 28px;
}

.privacy-card h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

.privacy-card p, .privacy-card li {
    color: #6c757d;
    line-height: 1.7;
}

.privacy-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-card li {
    margin-bottom: 10px;
}

.contact-details {
    background-color: rgba(123, 44, 191, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .timeline:before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd) {
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon {
        left: -30px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-icon {
        left: -30px;
    }
    
    .cookie-content {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 80px 0;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn {
        margin: 10px 0;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .feature-card, .testimonial-card, .contact-form-container {
        padding: 25px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .privacy-card {
        padding: 25px;
    }
} 