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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
}

/* App Preview Section */
.app-preview-section {
    margin-top: 4rem;
}

.app-preview-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.app-preview {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    max-width: 1000px;
}

.preview-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
    width: 280px;
}

.preview-item:hover {
    transform: translateY(-5px);
}

.preview-media {
    width: 100%;
    aspect-ratio: 9/16; 
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.preview-media video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* Hide scrollbar for app preview */
.app-preview::-webkit-scrollbar {
    display: none;
}

.app-preview {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.7rem 6%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #E85234;
}
.team-letter{
color: #E85234;
 font-weight: 500;
 font-size: 1.8rem;
}
.logo img {
    width: 40px;   
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}


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

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #E85234;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: #E85234;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: 90vh;
    background: linear-gradient(135deg, #E85234 0%, #E58B78 100%);
    display: flex;
    align-items: center;
    padding: 4rem 6%;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="50%" y="50%" font-size="40" text-anchor="middle" dominant-baseline="middle" opacity="0.05">🐾</text></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    width: 600px;
    height: 400px;
}

.hero-image img {
    width: 1000px;
    height: 300px;
    object-fit: cover;
}

.hero-image video {
    width: 550px;
    height: 350px;
    object-fit: cover;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #E85234;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #E85234;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    padding: 5rem 6%;
    scroll-margin-top: 80px;
}

.section-light {
    background: white;
}

.section-dark {
    background: #f9fafb;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title span {
    color: #E85234;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-image {
    width: 500px;
    height: 500px;
    border-radius: 100%;
    overflow: hidden; 
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 50%;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.value-card {
    background: white;
    padding: 1.5rem; 
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.value-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.value-card .value-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: #e5e7eb;
}

.value-card .value-icon img {
    width: 70%;
    height: auto;
    max-width: 100%;
    display: block;
}

.value-card h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.value-card p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Users Grid Section */
.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.user-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.user-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.user-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E85234, #E58B78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.owner-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E85234, #E58B78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    color: white;
    transition: all 0.3s ease;
}
.owner-icon img{
    width: 45px;
    height: 45px;
}
.user-card:hover .user-icon {
    box-shadow: 0 8px 20px rgba(232, 82, 52, 0.3);
}

.user-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.user-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

.users-cta {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(232, 82, 52, 0.05) 0%, rgba(229, 139, 120, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(232, 82, 52, 0.1);
}

.users-cta h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.users-cta p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.8;
}

/* Product Showcase */
.product-showcase {
    background: linear-gradient(135deg, #E85234 0%, #E58B78 100%);
    padding: 6rem 6%;
    color: white;
    scroll-margin-top: 70px;
}

.product-content {
    max-width: 1400px;
    margin: 0 auto;
}

.product-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%; /* makes the image circular */
    overflow: hidden;
}


.product-logo img{
      width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image covers the container without distortion */
    display: block;
}

.product-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.team-member:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    overflow: hidden;
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.team-role {
    font-size: 0.95rem;
    color: #E85234;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-info p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #E85234 0%, #E58B78 100%);
    color: white;
    text-align: center;
    padding: 5rem 6%;
    scroll-margin-top: 70px;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Section */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    text-align: center;
    margin-bottom: 4rem;
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E85234, #E58B78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: white;
    transition: all 0.3s ease;
}
.contact-icon img{
    width: 40px;
    height: 40px;
}
.contact-item:hover .contact-icon {
    box-shadow: 0 8px 20px rgba(232, 82, 52, 0.3);
}

.contact-item h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1rem;
}

.contact-item a {
    color: #E85234;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    display: inline-block;
}

.contact-item a:hover {
    color: #d14020;
    transform: translateX(5px);
}

.contact-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #E85234, #E58B78);
    margin: 0 auto 3rem;
    border-radius: 10px;
}

.contact-cta-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-section h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #E85234;
    color: white;
    padding: 3rem 6% 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #e0e0e0;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;;
    color: #e0e0e0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-image {
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: left 0.3s;
        gap: 1rem;
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 3rem 5%;
        min-height: auto;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .hero-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .hero-image video {
        width: 100%;
        height: 100%;
    }

    .section {
        padding: 4rem 5%;
    }

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

    .about-image {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

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

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

    .users-cta {
        padding: 2rem 1.5rem;
    }

    .users-cta h3 {
        font-size: 1.5rem;
    }

    .users-cta p {
        font-size: 1rem;
    }

    .app-preview-title {
        font-size: 1.5rem;
    }

    .app-preview {
        flex-direction: row;
        align-items: flex-start;
        gap: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .preview-item {
        flex: 0 0 280px;
        width: 280px;
        scroll-snap-align: center;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-cta-section h3 {
        font-size: 1.5rem;
    }

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

    .contact-divider {
        width: 150px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

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

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .product-header h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
 
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    
    border-radius: 50%;
    font-size: 28px;
    font-family: 'Comic Sans MS', 'Bubblegum Sans', cursive; /* bubble-style font */
    color: #fff;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.team-member {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%; /* makes the image circular */
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image covers the container without distortion */
    display: block;
}

.team-info h3 {
    margin: 5px 0;
}

.team-role {
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}
/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.8rem;
    color: #E85234;
    font-weight: 300;
    transition: transform 0.4s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, 
                padding 0.4s ease,
                opacity 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem;
    opacity: 1;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0.5rem 0 1rem 1.5rem;
    padding-left: 0.5rem;
}

.faq-answer ul li {
    margin-bottom: 0.5rem;
}

.faq-answer ul li:last-child {
    margin-bottom: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .faq-answer ul {
        margin-left: 1rem;
    }
}