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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 70px;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #51bcda;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #51bcda;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #51bcda;
    color: white;
    border: none;
}

.btn-primary:hover {
    background:  #51bcda;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    text-align: center;
}

.hero-content {
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.services-heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: #333;
    font-size: 2.5rem;
}

.services-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color:  #51bcda;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    background:  #51bcda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon {
    color: #51bcda;
    margin-bottom: 1.5rem;
}

.icon i {
    font-size: 2rem;
}
.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: #51bcda;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color:  #51bcda;
}


/* About Section */
.about {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.about-heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: #333;
    font-size: 2.5rem;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #51bcda;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #51bcda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        margin: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

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

.contact-image img {
    width: 100%;
    height: auto;
}

/* Footer */
footer {
    background-color: #51bcda;
    padding: 50px 0 20px;
    border-top: 1px solid #40a7c3;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-about {
    color: white;
    letter-spacing: -0.025rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    padding-right: 50px;
}

.footer-links {
    margin-left: 15px;
}

.footer-contact {
    color: white;
    letter-spacing: -0.025rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-column h4:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: white;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-column p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f0f0f0;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    letter-spacing: -0.025rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.language-selector a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.language-selector a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .footer-column {
        width: 100% !important;
        margin-bottom: 25px !important;
        text-align: left !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        color: white !important;
        letter-spacing: normal !important;
    }
    
    .footer-about, 
    .footer-links, 
    .footer-account, 
    .footer-social, 
    .footer-contact {
        padding-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .footer-column h4 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
        color: white !important;
    }
    
    .footer-column p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        color: white !important;
        letter-spacing: normal !important;
    }
    
    .footer-column ul {
        padding-left: 0 !important;
    }
    
    .footer-column ul li {
        margin-bottom: 8px !important;
    }
    
    .footer-column ul li a {
        font-size: 14px !important;
        color: white !important;
    }
    
    .app-buttons p {
        font-size: 14px !important;
        color: white !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .footer-bottom p, 
    .language-selector div {
        font-size: 12px !important;
        line-height: 1.4 !important;
        color: white !important;
        letter-spacing: normal !important;
        margin-bottom: 5px !important;
    }
    
    .language-selector {
        margin-top: 8px;
        text-align: center;
    }
    
    .language-selector a {
        color: white !important;
        font-weight: bold !important;
    }
}

/* Optional hover effects for better interactivity */
.footer-column ul li a {
    position: relative;
}

.footer-column ul li a:before {
    content: "›";
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-column ul li a:hover:before {
    opacity: 1;
    transform: translateX(5px);
}

/* howitworks */
.how-it-works {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.section-heading {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 20px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #51bcda;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-heading:hover::after {
    width: 150px;
}

.section-subheading {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.step-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
    transform-origin: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: flex-start;
    min-height: 120px;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 32px;
    height: 32px;
    background: #51bcda;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.step-card:hover .step-number {
    transform: rotate(360deg);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.step-content p {
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .step-card {
        margin-bottom: 1rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .section-subheading {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.round-image {
    border-radius: 80%;
    object-fit: cover;
    border: 3px solid white;  /* optional: adds a white border */
    box-shadow: 0 0 8px rgba(0,0,0,0.1);  /* optional: adds subtle shadow */
    width: 100px;  /* smaller size to match your design */
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    padding: 20px;
    margin-bottom: 1rem;
    text-align: center; 
}


@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        margin: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        height: 60px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
    }

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

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .auth-buttons {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }

    .auth-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 60px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-image {
        display: none;
    }
}

.section-title {
    color: #333;
    font-size: 18px;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.faq-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.faq-list {
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    padding: 15px;
    background: #f8f9fa;
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.faq-answer {
    padding: 15px;
    background: white;
    border: 1px solid #eee;
    border-top: none;
    color: #666;
    display: none;
}

.faq-answer.show {
    display: block;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-question.active .arrow {
    transform: rotate(-135deg);
    margin-top: 5px;
}

/* Links styling */
.faq-content a {
    color: #51bcda;
    text-decoration: none;
}

.faq-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .card {
        margin-top: 60px;
        padding: 15px;
    }

    .card-header h2 {
        font-size: 1.5rem;
    }

    .faq-content {
        font-size: 13px;
    }

    .faq-question {
        padding: 12px;
    }

    .faq-answer {
        padding: 12px;
    }
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.card {
    margin: 0 15px; 
    border-radius: 8px;
    /* background: white; */
    margin-top: 20px;
    margin-bottom: 50px;
    box-shadow: 0 1px 20px 0 rgba(0,0,0,0.1);
    border: none;
}

.card-header {
    /* background: white; */
    background-color: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
}

.card-header h2 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 500;
}

.card-body {
    padding: 20px;
}
