/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FFFFFF;
}

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

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

h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1rem 0 1rem;
}

.logo-img {
    height: 4rem;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1A1A1A;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

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

.nav-links a {
    position: relative;
    color: #1A1A1A;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00B4FF;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #dccdf6;
}

.hero-content {
    animation: fadeUp 1s ease-out;

    >img {
        padding: 1rem;
        background-color: white;
        border-radius: 10px;
        width: 10rem;
        height: auto;
    }
}

.hero-logo {
    height: 80px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4A4A4A;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #1A1A1A;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #00B4FF;
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
}

.btn-secondary:hover {
    background-color: #1A1A1A;
    color: #FFFFFF;
}

.qr-code {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #E7E3FA;
}

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

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.about p {
    margin-bottom: 40px;
    text-align: center;
    color: #4A4A4A;
    font-size: 1.1rem;
}

.about-text {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.about-text div {
    flex: 1;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-text div:hover {
    transform: scale(1.05);
}

.about-text img {
    width: 80px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-text p {
    color: #4A4A4A;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #dccdf6;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.feature-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #4A4A4A;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: #E7E3FA;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.step {
    text-align: center;
    max-width: 200px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: black;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step p {
    color: #4A4A4A;
    font-size: 0.9rem;
}

.step-divider {
    width: 80px;
    height: 2px;
    background-color: black;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #dccdf6;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: #F7F7F7;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card cite {
    color: #4A4A4A;
    font-weight: 500;
}



/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #E7E3FA;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    text-align: center;
    color: #4A4A4A;
    margin-bottom: 60px;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #1A1A1A;
}

.contact-info p {
    margin-bottom: 10px;
    color: #4A4A4A;
}

.contact-links {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.contact-links h3 {
    margin-bottom: 20px;
    color: #1A1A1A;
}

.contact-links ul {
    list-style: none;
    padding: 0;
}

.contact-links li {
    margin-bottom: 10px;
}

.contact-links a {
    color: #00B4FF;
    text-decoration: none;
}

.contact-links a:hover {
    text-decoration: underline;
}

.map {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 16px;
}

.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* Footer */
.footer {
    background-color: #F7F7F7;
    text-align: center;
    padding: .8rem 0;
}

footer p {
    margin: 0;
    font-size: 0.8rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #1A1A1A;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: #00B4FF;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

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

    .hero {
        height: auto;
        min-height: 80vh;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-content > img {
        width: 8rem;
    }

    .about {
        padding: 60px 0;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about-text {
        flex-direction: column;
        gap: 20px;
    }

    .about-text div {
        padding: 20px;
    }

    .features {
        padding: 60px 0;
    }

    .features h2 {
        font-size: 2rem;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .how-it-works h2 {
        font-size: 2rem;
    }

    .steps {
        flex-direction: column;
        gap: 20px;
    }

    .step-divider {
        display: none;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 30px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info,
    .contact-links,
    .map {
        padding: 20px;
    }

    .map iframe {
        height: 250px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 20px 0;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-content > img {
        width: 6rem;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about p {
        font-size: 1rem;
    }

    .features h2 {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .how-it-works h2 {
        font-size: 1.8rem;
    }

    .testimonials h2 {
        font-size: 1.8rem;
    }

    .testimonial-card p {
        font-size: 1.1rem;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact p {
        font-size: 1rem;
    }

    .map iframe {
        height: 200px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}
