/* Global Styles */
:root {
    --primary-color: #8A3FFC;
    --secondary-color: #6F42C1;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #fff;
    --light-bg: #F5F0FF;
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

#loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid var(--light-bg);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    margin-bottom: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#loading-overlay p {
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Lazy Loading Images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 15px;
    color: var(--light-text);
}

.btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(138, 63, 252, 0.2);
}

/* Button ripple effect */
.btn-ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    transform: scale(0);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Button loading state */
.btn-loading {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    cursor: not-allowed;
}

.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spinner 0.8s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
}

/* Header Styles */
header {
    padding: 20px 0;
    position: fixed;
    width: calc(100% - 40px);
    max-width: 1200px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: -20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 88px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: url("./assets/bg.png") no-repeat center center;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 100vw;
    background-attachment: scroll;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 240, 255, 0.7);
    z-index: 0;
} */

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--text-color);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-color);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.happy-customers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.happy-customers img {
    width: 24px;
    height: 24px;
}

.happy-customers p {
    font-weight: 500;
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-box p {
    margin-bottom: 0;
    font-weight: 500;
}

.partners {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 40px;
}

.partner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner img {
    width: 40px;
    height: 40px;
}

.partner p {
    margin-bottom: 0;
    font-weight: 500;
}

/* CSS for History Section (Replacing Discount Section) */
.history-section {
    padding: 80px 0;
    /* background-color: var(--light-bg); */
    position: relative;
    text-align: left;
}

/* CSS for Replacing the Discount Section */
.discount-section {
    display: none;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    text-align: center;
}

.why-us-section h2 {
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: var(--bg-color);
}

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

.feature-icon {
    background-color: var(--light-bg);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: gold;
    margin: 0 2px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    margin-bottom: 0;
    font-style: normal;
    font-size: 14px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-card {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    transition: var(--transition);
}

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

.blog-date {
    margin-bottom: 15px;
}

.blog-date p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 0;
}

.blog-card > p {
    margin-bottom: 20px;
    min-height: 80px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author .author-info h4 {
    font-size: 16px;
    margin-bottom: 0;
}

.blog-author .author-info p {
    font-size: 12px;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

/* Initial animation for FAQ items */
.faq-item:nth-child(1) {
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.faq-item:nth-child(2) {
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.faq-item:nth-child(3) {
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.faq-item:nth-child(4) {
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.faq-item:nth-child(n+5) {
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(138, 63, 252, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: rgba(138, 63, 252, 0.05);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 18px;
    text-align: left;
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item:hover .faq-icon {
    background-color: rgba(138, 63, 252, 0.2);
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.faq-item.active .faq-icon {
    animation: none;
    background-color: var(--primary-color);
    color: white;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    opacity: 0;
    text-align: left;
    transition: all 0.3s ease-out;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
    opacity: 1;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-answer p {
    transform: translateY(10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer p {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 15px;
}

.contact-section > p {
    max-width: 700px;
    margin: 0 auto 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 50px;
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(138, 63, 252, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--light-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 15px;
    outline: none;
    transition: var(--transition);
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(138, 63, 252, 0.1);
}

.contact-form .btn-primary {
    padding: 15px 30px;
    font-weight: 600;
    margin-top: 10px;
    width: 100%;
    background: var(--primary-color);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
}

.contact-item p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--light-bg);
    padding: 80px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.newsletter {
    max-width: 500px;
}

.newsletter h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.newsletter p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.footer-menu ul {
    display: flex;
    gap: 30px;
}

.social-links ul {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-color);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom ul {
    display: flex;
    gap: 20px;
}

/* Media Queries */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .faq-question h3 {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .partners {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Vision Mission Styles */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.mission, .vision {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.objective {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.mission:hover, .vision:hover, .objective:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission h3, .vision h3, .objective h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vision-mission > div {
    animation: fadeIn 0.8s ease-out forwards;
}

.mission {
    animation-delay: 0.2s;
}

.vision {
    animation-delay: 0.4s;
}

.objective {
    animation-delay: 0.6s;
}

.service {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.service:nth-child(2) {
    animation-delay: 0.6s;
}

/* Services Styles */
.services-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.service {
    border-radius: var(--border-radius);
    background-color: #fff;
    padding: 40px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon img {
    width: 35px;
    height: 35px;
}

.service h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.service ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.service ul li {
    margin-bottom: 8px;
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .objective {
        grid-column: span 1;
    }
    
    
    .services-container {
        grid-template-columns: 1fr;
    }
}

/* Update styles for header logo */
.logo h2 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Footer logo */
.footer-logo h2 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Header Scrolled Class */
header.scrolled {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    top: 20px;
    transition: all 0.3s ease;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 100;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .get-started {
        display: none;
    }

    .nav-links a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    header.scrolled {
        width: calc(100% - 40px);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    nav .btn {
        display: none; /* Hide the Get Started button in the header on mobile */
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
        z-index: 99;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        padding-top: 0;
        padding-bottom: 0;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .nav-links a {
        font-size: 16px;
    }
    
    .nav-links.show {
        display: flex;
        max-height: 100vh;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .nav-links li {
        margin: 10px 0;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        transition-delay: 0s;
    }
    
    .nav-links.show li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.show li:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav-links.show li:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .nav-links.show li:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .nav-links.show li:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    .nav-links.show li:nth-child(5) {
        transition-delay: 0.5s;
    }
    
    .hero-section {
        height: 100vh;
        min-height: 500px;
        background-size: cover;
    }

    .hero-content h1 {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom ul {
        justify-content: center;
    }
}

.title {
  font-size: 38px;
  color: #616161;
  font-style: italic;
  font-weight: 800;
}

.timeline .swiper-container {
  height: 600px;
  width: 100%;
  position: relative;
}
.timeline .swiper-wrapper {
  transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}
.timeline .swiper-slide {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.timeline .swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -115%;
  bottom: -10%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
  border-radius: 100%;
}
.timeline .swiper-slide-content {
  position: absolute;
  text-align: center;
  width: 80%;
  max-width: 310px;
  right: 50%;
  top: 13%;
  transform: translate(50%, 0);
  font-size: 12px;
  z-index: 2;
}
.timeline .swiper-slide .timeline-year {
  display: block;
  font-style: italic;
  font-size: 42px;
  margin-bottom: 50px;
  transform: translate3d(20px, 0, 0);
  color: #d4a024;
  font-weight: 300;
  opacity: 0;
  transition: 0.2s ease 0.4s;
}
.timeline .swiper-slide .timeline-title {
  font-weight: 800;
  font-size: 34px;
  margin: 0 0 30px;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.5s;
}
.timeline .swiper-slide .timeline-text {
  line-height: 1.5;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.6s;
}
.timeline .swiper-slide-active .timeline-year {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.6s;
}
.timeline .swiper-slide-active .timeline-title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.7s;
}
.timeline .swiper-slide-active .timeline-text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.8s;
  color: #fff;
  font-size: 14px;
}
.timeline .swiper-pagination {
  right: 15% !important;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  z-index: 1;
}
.timeline .swiper-pagination::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.timeline .swiper-pagination-bullet {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 1;
  background: transparent;
  color: #d4a024;
  margin: 15px 0 !important;
  position: relative;
}
.timeline .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -32.5px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #d4a024;
  transform: scale(0);
  transition: 0.2s;
}
.timeline .swiper-pagination-bullet-active {
  color: #d4a024;
}
.timeline .swiper-pagination-bullet-active::before {
  transform: scale(1);
}
.timeline .swiper-button-next,
.timeline .swiper-button-prev {
  background-size: 20px 20px;
  top: 15%;
  width: 20px;
  height: 20px;
  margin-top: 0;
  z-index: 2;
  transition: 0.2s;
}
.timeline .swiper-button-prev {
  left: 8%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}
.timeline .swiper-button-prev:hover {
  transform: translateX(-3px);
}
.timeline .swiper-button-next {
  right: 8%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}
.timeline .swiper-button-next:hover {
  transform: translateX(3px);
}
@media screen and (min-width: 768px) {
  .timeline .swiper-slide::after {
    right: -30%;
    bottom: -8%;
    width: 240px;
    height: 50%;
    box-shadow: -230px 0 150px 50vw rgba(0, 0, 0, 0.7);
  }
  .timeline .swiper-slide-content {
    right: 30%;
    top: 50%;
    transform: translateY(-50%);
    width: 310px;
    font-size: 11px;
    text-align: right;
  }
  .timeline .swiper-slide .timeline-year {
    margin-bottom: 0;
    font-size: 32px;
  }
  .timeline .swiper-slide .timeline-title {
      font-size: 46px;
      margin: 0;
      margin-bottom: 10px;
  }
  .timeline .swiper-pagination {
    display: flex;
  }
  .timeline .swiper-button-prev {
    top: 15%;
    left: auto;
    right: 15%;
    transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-button-prev:hover {
    transform: rotate(90deg) translate(-3px, 10px);
  }
  .timeline .swiper-button-next {
    top: auto;
    bottom: 15%;
    right: 15%;
    transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-button-next:hover {
    transform: rotate(90deg) translate(3px, 10px);
  }
}
@media screen and (min-width: 1024px) {
  .timeline .swiper-slide::after {
    right: -20%;
    bottom: -12%;
    width: 240px;
    height: 50%;
    box-shadow: -230px 0 150px 39vw rgba(0, 0, 0, 0.7);
  }
  .timeline .swiper-slide-content {
    right: 25%;
  }
}

/* Form status animation */
#form-status {
    padding: 10px 0;
    font-size: 14px;
    height: 40px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

#form-status:not(:empty) {
    opacity: 1;
    transform: translateY(0);
}

/* Form field focus effects */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(138, 63, 252, 0.1);
    outline: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--primary-color);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff4757;
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
} 