:root {
    --electric-blue: #3498db;
    --vibrant-purple: #8e44ad;
    --spark-yellow: #f1c40f;
    --clean-white: #ffffff;
    --soft-cream: #faf5ee;
    --charcoal-black: #1b1c20;
    --slate-gray: #7f8c8d;
    --deep-indigo: #5c6bc0;
    --electric-indigo: #6a11cb;
    --bright-blue: #2575fc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--charcoal-black);
    line-height: 1.6;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--slate-gray);
}

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

/* Header Styles */
header {
    background: linear-gradient(0deg, var(--charcoal-black) 0%, var(--slate-gray) 15%);
    color: var(--clean-white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 100;
}

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--clean-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 80px;
    width: auto;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-text span {
    color: var(--spark-yellow);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--clean-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--spark-yellow);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--electric-indigo), var(--electric-blue));
    color: var(--clean-white);
    padding: 10rem 0 6rem;
    text-align: center;

}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--clean-white);
}

.btn {
    display: inline-block;
    background-color: var(--spark-yellow);
    color: var(--charcoal-black);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--electric-blue);
    color: var(--clean-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    background-color: var(--soft-cream);
    padding: 5rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    display: flex;
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    background-color: var(--clean-white);
    padding: 5rem 0;
    text-align: center;
}

.features-title {
    /*margin-bottom: 3rem;*/
}

.features-grid {
    display: grid;
    margin-top: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--clean-white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 200px;
    height: 70px;
    background-color: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon img {
    object-fit: cover;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--vibrant-purple);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--deep-indigo);
    color: var(--clean-white);
    padding: 5rem 0;
    text-align: center;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    padding: 2rem;
}

.testimonial-text {
    color: var(--soft-cream);
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-author {
    font-weight: 500;
    color: var(--soft-cream);
}

/* Call to Action Section */
.cta {
    background-color: var(--electric-blue);
    color: var(--clean-white);
    padding: 5rem 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--clean-white);
}

/* Footer */
footer {
    background-color: var(--charcoal-black);
    color: var(--slate-gray);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    color: var(--clean-white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--slate-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--spark-yellow);
}

.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .about-content {
        flex-direction: column;
    }

    /* Mobile Navigation - Softer Version */
    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 102;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        padding: 10px;
        transition: all 0.3s;
    }

    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        margin: 6px 0;
        background-color: var(--clean-white);
        transition: all 0.3s;
        border-radius: 2px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, var(--deep-indigo) 0%, var(--bright-blue) 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 101;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
#topBtn {
    width: 50px;
    height: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    opacity: .6;
    font-size: 25px !important;
    color: var(--electric-blue);
    cursor: pointer;
    padding: 10px 10px 10px 11px;
    border-radius: 50%;
    box-shadow: 1px 1px 5px #000;
    background-color: #a4a4a4;
}

#topBtn:hover {
    opacity: 1;
    background-color: #aeaeae;
}

.dates {

    margin-bottom: 0.1rem !important;
}
