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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 70px;
    background-color: #fff;
    color: #212121;
    overflow-x: hidden;
}

header {
    background: linear-gradient(90deg, #d32f2f, #ff9800);
    color: #fff;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar h1 {
    font-size: 1.5rem;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: opacity 0.3s;
    padding-top: 5px;
}

.nav-links a:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background: white;
    transition: all 0.3s ease;
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section {
    text-align: center;
    padding: 3rem 1rem;
    min-height: auto;
    background: linear-gradient(90deg, #d32f2f, #ff9800);
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.download-btn {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(90deg, #d32f2f, #ff9800);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.image-showcase {
    padding: 3rem 1rem;
    background-color: #fff5f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wave-top,
.wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top {
    top: 0;
}

.wave-bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.wave-top svg,
.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.image-showcase h2 {
    font-size: 1.8rem;
    color: #d32f2f;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.image-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.features-section {
    padding: 3rem 1rem;
    background: linear-gradient(#d32f2f, #ff9800);
    text-align: center;
    position: relative;
}

.features-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ff9800;
    transition: transform 0.3s ease;
}

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

.feature-card h3 {
    margin-bottom: 0.8rem;
    color: #d32f2f;
    font-size: 1.2rem;
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
}

.wave-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
    background-color: #fff;
}

.wave-section-alt {
    background-color: #fff5f0;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.section-content h2 {
    text-align: center;
    color: #d32f2f;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.feature-list {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.feature-list p.note {
    text-align: center;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #d32f2f;
    padding: 0.5rem;
    background: #fff5f0;
    border-radius: 6px;
}

.feature-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.feature-item {
    background: #fff5f0;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.feature-item h3 {
    color: #d32f2f;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.screenshots-section {
    padding: 2rem 1rem;
    position: relative;
    background: #f9f9f9;
}

.screenshots-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #d32f2f;
    font-size: 1.8rem;
}

.mobile-frame {
    position: absolute;
    width: 275px;
    height: 534px;
    border: 15px solid #000;
    border-radius: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 20;
    /* display: none; */
}



#scrollContainer {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: center;
    height: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#scrollContainer::-webkit-scrollbar {
    display: none;
}

.screenshot {
    width: 250px;
    height: 450px;
    object-fit: contain;
    cursor: grab;
    user-select: none;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    scroll-snap-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.screenshot:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-section {
    padding: 3rem 1rem;
    background: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
    color: #d32f2f;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff9800;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.2);
}

.send-btn {
    padding: 0.8rem;
    background: #388e3c;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.faq-section {
    padding: 3rem 1rem;
    background-color: #fff5f0;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.faq-section h2 {
    text-align: center;
    color: #d32f2f;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #d32f2f;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer {
    background: #d32f2f;
    color: white;
    padding: 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 5%;
}

.footer-column {
    padding: 0.5rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #0000FF;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    opacity: 0.8;
    background-color: #efefef;
    border: #ffffff;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.buttons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.c-button {
    width: 60px;
    height: 60px;
    border-radius: 20%;
    border: 4px solid transparent;
    border-top-color: white;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: white;
    background-color: #388e3c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0;
}

.c-button span {
    transform: rotate(45deg);
    display: block;
    width: 100%;
    text-align: center;
    /* padding: 5px; */
}

.c-button:hover {
    transform: rotate(-45deg) scale(1.1);
    background-color: #2e7d32;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.c-button.a {
    border-top-color: #d32f2f;
    border-left-color: #ba2929;
}

.c-button.b {
    border-top-color: rgb(255, 0, 162);
    border-left-color: rgb(252, 3, 190);
}

.c-button.c {
    border-top-color: #ff9800;
    border-left-color: #ea9007;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-icon:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}

.whatsapp-icon img {
    width: 30px;
    height: 30px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    body {
        padding-top: 80px;
    }

    .navbar h1 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 4rem 2rem;
        min-height: 50vh;
    }

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

    .download-btn {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }

    .image-showcase {
        padding: 4rem 2rem;
    }

    .image-showcase h2 {
        font-size: 2.2rem;
    }

    .features-section h2 {
        font-size: 2.5rem;
    }

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

    .form-group.full-width,
    .send-btn {
        grid-column: span 2;
    }

    .mobile-frame {
        display: block;
    }

    .screenshot {
        width: 260px;
        height: 490px;
    }

    #scrollContainer {
        height: 600px;
    }

    .c-button {
        width: 80px;
        height: 70px;
        font-size: 14px;
    }

    .whatsapp-icon {
        width: 70px;
        height: 70px;
    }

    .whatsapp-icon img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #d32f2f;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        border-radius: 8px;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .feature-list p.note {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .buttons-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
}

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

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .section-content h2,
    .faq-section h2,
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .buttons-container {
        bottom: 10px;
        right: 10px;
    }

    .c-button {
        width: 50px;
        height: 50px;
        font-size: 10px;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon img {
        width: 25px;
        height: 25px;
    }
}

.icon-matka {
    font-size: 1.8em;
    /* h1 default size */
    font-weight: bold;
    /* h1 is bold */

}




.fancy-button {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(135deg, #4caf50, #81c784);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fancy-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: all 0.5s ease-in-out;
}

.fancy-button:hover {
    background: linear-gradient(135deg, #388e3c, #66bb6a);
    transform: scale(1.05);
}

.fancy-button:hover::after {
    left: 125%;
}