:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --text-color: #2d3436;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* Header Styles */
header {
    background: transparent;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

/* Add new class for scrolled state */
header.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #f18142;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

.nav-links a:hover {
    color: #ff0000;
    transform: scale(1.2);
    font-weight: 700;
}

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

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

/* Ensure links are visible against white background when scrolled */
header.scrolled .nav-links a {
    color: #2f3b4e;
}

header.scrolled .nav-links a:hover {
    color: #ff0000;
}

/* Ensure mobile menu is visible against white background when scrolled */
header.scrolled .mobile-menu div {
    background-color: #2f3b4e;
}

header.scrolled .mobile-menu.active div {
    background-color: #ff0000;
}

/* Hero Section */
.hero {
    background: url('banner-bg.png') center center/cover no-repeat;
    min-height: 100vh;
    padding-top: 20px;
    overflow: hidden;
    position: relative;
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-top: 100px;
}

.welcome-text {
    color: #55b6e7;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #2f3b4e;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.store-button img {
    height: 50px;
    transition: transform 0.3s ease;
}

.store-button:hover img {
    transform: translateY(-3px);
}

.users-count {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatars {
    display: flex;
    align-items: center;
}

.user-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
}

.more-users {
    background: #55b6e7;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    transform: translateX(40px);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--light-bg);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

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

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

.feature-card h3 {
    color: #f18142;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: #f18142;
}

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

/* Screenshots Section */
.screenshots {
    padding: 6rem 0;
    text-align: center;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.screenshot-swiper {
    padding: 2rem 0;
    width: 100%;
    overflow: visible;
    position: relative;
}

.swiper-slide {
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screenshot img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
}

.screenshot-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    min-width: 120px;
}

/* Swiper pagination customization */
.screenshot-swiper .swiper-pagination {
    position: relative !important;
    margin-top: 3rem !important;
    display: flex !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    bottom: 0 !important;
}

.screenshot-swiper .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #ccc !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    margin: 0 5px !important;
}

.screenshot-swiper .swiper-pagination-bullet-active {
    background: #f18142 !important;
    transform: scale(1.2) !important;
}

.screenshot-swiper .swiper-pagination-bullet:hover {
    background: #f18142 !important;
    transform: scale(1.1) !important;
}

/* Carousel dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    z-index: 2;
    position: relative;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    margin: 0 5px;
}

.dot:hover {
    background: #f18142;
    transform: scale(1.1);
}

.dot.active {
    background: #f18142;
    transform: scale(1.2);
}

/* Scroll indicators */
.screenshots::before,
.screenshots::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 1;
}

.screenshots::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.screenshots::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

/* Show scrollbar for better UX */
.screenshot-grid::-webkit-scrollbar {
    height: 8px;
    display: block;
}

.screenshot-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.screenshot-grid::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.screenshot-grid::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.screenshot:hover {
    transform: scale(1.02);
}

/* Why Choose Section */
.why-choose {
    background: var(--gradient);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-choose h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.benefit-item {
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

footer p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.social-links a {
    color: var(--white);
    margin: 0 1rem;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 1000;
    position: relative;
    padding: 10px;
    margin: -10px;
}

.mobile-menu div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

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

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

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

header.scrolled .mobile-menu div {
    background: #2f3b4e;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-image img {
        transform: none;
        margin: 0 auto;
        max-width: 100%;
    }

    .app-buttons {
        justify-content: center;
    }

    .users-count {
        justify-content: center;
    }

    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        z-index: 999;
        height: auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .login-button {
        display: none;
    }

    .features-grid, .screenshot-grid, .benefits-list {
        grid-template-columns: 1fr;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add back the login button styles */
.login-btn {
    background: #55b6e7;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

header.scrolled .login-btn {
    background: #55b6e7;
    color: white;
}

/* Ensure login button has proper spacing */
.login-button {
    margin-left: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-info p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: #f18142;
}

.contact-item span {
    color: var(--text-color);
}

.map-container {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.map-container iframe {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f18142;
}

.submit-btn {
    background: #f18142;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #e06d2e;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        height: 300px;
    }
}

/* About Us Page Styles */
.about-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 6rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #6c757d;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

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

.stat-card i {
    font-size: 2.5rem;
    color: #f18142;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #6c757d;
}

.team-section {
    padding: 6rem 0;
    background: var(--light-bg);
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover img {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-member h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #6c757d;
    font-size: 0.9rem;
}

.privacy-policy-section {
    margin-top: 100px;
    padding: 2rem 0;
}

.privacy-policy-section h1 {
    color: #2f3b4e;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.privacy-policy-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #6c757d;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }
} 