* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background: white;
    color: black;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.logo {
    height: 70px;
    width: auto;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

a {
    color: black;
    text-decoration: none;
}

h1, h2, h3 {
    color: #ff8c00;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: url('../ttt.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Welcome Text */
.welcome-text {
    font-size: 2.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 
                 -1px -1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.android-btn {
    background: #ff8c00;
    color: white;
}

.android-btn:hover {
    background: #e67e00;
}

.ios-btn {
    background: white;
    color: #333;
    border: 2px solid #ff8c00;
}

.ios-btn:hover {
    background: #ff8c00;
    color: white;
}

/* Marquee Section */
.marquee {
    overflow: hidden;
    background: #f9f9f9;
    padding: 20px 0;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 4 + 20px * 3);
}

.marquee-content img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 8px;
    border: 2px solid #ff8c00;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Sections */
section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#about, #why-choose, #how-it-works, #services, #contact {
    background: #f4f4f4;
}

/* Why Choose Section */
#why-choose {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

#why-choose h2 {
    text-align: right;
}

#why-choose ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 2rem 0 0 0;
    padding-left: 0;
    width: 100%;
    text-align: right;
}

#why-choose ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    text-align: left;
}

#why-choose li::before {
    content: "✓";
    color: #ff8c00;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

/* How It Works Section */
#how-it-works ol {
    padding-left: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

#how-it-works li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    background: white;
    text-align: center;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stars {
    color: #ff8c00;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 1rem;
    color: #ff8c00;
}

/* Services Section */
#services > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-tile {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ff8c00;
}

.service-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-tile h3 {
    color: #ff8c00;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-tile p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Section */
#contact > p {
    display: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 2rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: #ff8c00;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-label {
    display: block;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background: #ff8c00;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    section {
        padding: 2.5rem 1.5rem;
    }

    .welcome-text {
        font-size: 2.3rem;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .marquee-content img {
        width: 180px;
        height: 135px;
    }

    #why-choose, #how-it-works {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #why-choose ul, #how-it-works ol {
        width: 100%;
        max-width: 1000px;
    }

    .testimonials {
        padding: 3rem 2rem;
    }

    .testimonials-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero {
        padding: 80px 20px;
    }

    .welcome-text {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .marquee-content img {
        width: 160px;
        height: 120px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    section {
        padding: 2rem 1rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .service-tile {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 55px;
    }

    .welcome-text {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .marquee-content img {
        width: 140px;
        height: 105px;
    }

    section {
        padding: 1.5rem 1rem;
    }

    h2 {
        font-size: 1.6rem;
    }
}