/* Fonts import */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* Light Theme */
:root {
    /* Fonts */
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Colors */
    --color-bg: #F5F5F5;
    --color-text: #0A0A0A;
    --color-primary: #0186DF;
    --color-accent: #E3B505;
    --color-muted: #cfcfcf;
    --color-border: #dddddd;
}

/* Dark Theme */
[data-theme="dark"] {
    --color-bg: #0A0A0A;
    --color-text: #F5F5F5;
    --color-primary: #0186DF;
    --color-accent: #E3B505;
    --color-muted: #3a3a3a;
    --color-border: #333333;
}

/* Base body */
body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.02em;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

/* Main content div css */
.main-content-div {
    padding: 20px;
}

/* Heading styles - Mobile First */

/* Main Heading (H1) */
h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: capitalize;
}

p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
    font-weight: 500;
}

/* Desktop Overrides */
@media (min-width: 768px) {
    h1 {
        font-size: 48px;
        line-height: 56px;
    }

    p {
        font-size: 20px;
        line-height: 32px;
        letter-spacing: 0.02em;
        font-weight: 600;
    }

}

span {
    color: var(--color-bg);
    background: var(--color-primary);
    padding: 5px;
    border-radius: 5px;
}

/* Links */
a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--color-text);
}



/* Buttons */
.cta-div {
    margin-top: 10px;
}

.cta-btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    background-color: var(--color-accent);
    color: var(--color-text) !important;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
}

@media (min-width: 768px) {
    .cta-btn {
        font-size: 32px;
        line-height: 40px;
    }
}


/* Utility Classes */
.bg-primary {
    background-color: var(--color-primary);
}

.bg-accent {
    background-color: var(--color-accent);
}

.text-primary {
    color: var(--color-primary);
}

.text-accent {
    color: var(--color-accent);
}

.text-center {
    text-align: center;
}


/* Hero section css */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

.hero-heading-div {
    display: flex;
}

.hero-section-heading-mobile {
    display: block;
}

.hero-section-heading-desktop {
    display: none;
}

.hero-image-div {
    max-width: 388px;
    height: auto;
    padding: 10px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .hero-section-heading-mobile {
        display: none;
    }

    .hero-section-heading-desktop {
        display: block;
        font-size: 64px;
        line-height: 68px;
    }

    .hero-image-div {
        max-width: 800px;
        height: auto;
    }
}

/* Hero section subheading CTA css */

.hero-subheading-cta {
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.subheading-div {
    text-align: center;
}

.hero-subheading {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
}



@media (min-width: 768px) {
    .subheading-div {
        max-width: 984px;
    }
}

/* analytics img css */

.analytics-img-section {
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.analytics-img-div {
    margin-top: 10px
}

.analytics-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.analytics-img-desktop {
    display: none;
}

@media (min-width: 768px) {
    .analytics-img-desktop {
        display: block;
    }

    .analytics-img-mobile {
        display: none;
    }

    .analytics-img-div {
        max-width: 840px;
    }

}


/* Body section 1 css */

.body-section-1 {
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.body-section-1-heading-div {
    max-width: 840px;
}

.body-section-1-heading {
    text-align: center;
}

.body-section-1-content {
    max-width: 840px;
}

.body-section-1-content p {
    text-align: left !important;
}

.body-section-1-list-box-div {
    max-width: 840px;
}

.tick-list {
    list-style: none;
    padding: 20px;
    background-color: rgba(1, 134, 223, 0.2);
    /* light blue */
    border-radius: 8px;
    margin: 0;
}

.tick-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color-text);
}

.tick-list li::before {
    content: '';
    background-image: url('assests/Tick-icon.png');
    /* replace with your file name */
    background-size: 16px 16px;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 2px;
}

.top-performing-img-div {
    margin-top: 10px
}

.analytics-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


@media (min-width: 768px) {
    .top-performing-img-div {
        max-width: 840px;
    }

}


/* Body section 1 css */

.body-section-2 {
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.body-section-2-heading-div {
    max-width: 840px;
}

.body-section-2-heading {
    text-align: center;
}

.body-section-2-content {
    max-width: 840px;
}

.body-section-2-content p {
    text-align: left !important;
}

.body-section-2-list-box-div {
    max-width: 840px;
}

.body-section-2-list-box-div .tick-list li::before {
    content: '';
    background-image: url('assests/tick2.png');
    /* replace with your file name */
    background-size: 16px 16px;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 2px;
}


/* Growth section css */

.growth-system-section {
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.growth-system-heading-div {
    max-width: 840px;
}

.growth-section-heading {
    text-align: center;
}

.growth-section-content {
    max-width: 840px;
}

.growth-system-section p {
    text-align: center !important;
}

/* cards */
.card-container {
    max-width: 700px;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.card {
    background: rgba(245, 245, 245, 1);
    border-radius: 8px;
    padding: 15px;
    overflow: hidden;
    box-shadow: -2px 4px 8px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card img {
    width: 80%;
    display: block;
}

.card-title {
    font-size: 18px;
    line-height: 32px;
    font-weight: 700;
    margin: 0 !important;
}

.card-content {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin: 0 !important;
}

.card-content {
    padding: 16px;
}


/* Desktop: 2 cards per row */
@media (min-width: 768px) {
    .card-container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .card {
        flex: 1 1 42%;
    }
}

/* Video testimonial css */
.video-testimonial-section {
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.video-testimonial-heading-div {
    max-width: 840px;
}

.video-testimonial-heading {
    text-align: center;
}

/* mobile video carousel */
.video-carousel {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    max-width: 80vw;
    margin-bottom: 10px;
}

.video-carousel iframe {
    flex: 0 0 90%;
    scroll-snap-align: start;
    border: none;
    width: 290px;
    height: 520px;
    border-radius: 12px;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .video-carousel {
        display: none;
    }
}

/* Desktop video testimonial css */
.desktop-video-grid {
    display: none;
}

@media (min-width: 768px) {
    .desktop-video-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 620px;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .video-card {
        width: 290px;
        box-shadow: -2px 4px 8px rgba(0, 0, 0, 0.25);
        border-radius: 8px;
        overflow: hidden;
    }

    .video-card iframe {
        width: 100%;
        height: 520px;
        display: block;
        border: none;
    }
}


/*  About founders css */
.founders-section-heading-div {
    max-width: 840px;
}

.founders-section-heading {
    text-align: center;
}

.founders-section {
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.founders-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.founders-main-img {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.highlight {
    background-color: #00C853;
    /* green */
    color: var(--color-bg);
}

.founder-profiles {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    gap: 60px;
}

.founder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.founder-name {
    margin-top: 8px;
    font-weight: 600;
    color: var(--color-text);
}

/* social icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}


/* Desktop */
@media (min-width: 768px) {
    .founder-profiles {
        flex-direction: row;
        justify-content: center;
        gap: 120px;
    }

    .founders-main-img {
        max-width: 380px;
    }

    .founder-img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        object-fit: cover;
    }

    .founders-description {
        max-width: 840px;
    }

    .social-icons img {
        width: 70px;
        height: 70px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }
}

/* Testimonial section css */

.testimonial-section {
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.testimonial-section-heading-div {
    max-width: 840px;
    text-align: center;
}

.testimonial-section-heading {
    text-align: center;
}


.testimonial-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #47CCFF 100%);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    overflow: hidden;
}

.testimonial-profile-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.testimonial-person-info {
    text-align: center;
    margin-bottom: 12px;
}

.testimonial-name {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #0A0A0A;
}

.testimonial-designation {
    font-size: 10px;
    line-height: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 8px;
}

.testimonial-card p {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #0A0A0A;
    text-align: center;
}

.testimonial-card-block {
    max-width: 840px;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Desktop styles */
@media (min-width: 768px) {
    .testimonial-card-block {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 24px;
    }

    .testimonial-card {
        flex: 1 1 42%;
        /* Two cards per row with gap */
        max-width: 380px;
    }

    .testimonial-name {
        font-size: 18px;
        line-height: 24px;
        font-weight: 700;
    }

    .testimonial-designation {
        font-size: 10px;
        line-height: 14px;
        font-weight: 400;
    }
}

/* Form container css */

.form-container {
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.form-container-inner {
    background: linear-gradient(180deg, #343434 0%, #0A0A0A 45.19%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 24px;
    min-width: 250px;
    padding: 24px;
}

.form-container-heading-div {
    max-width: 840px;
    text-align: center;
}

.form-container-heading {
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

.form-container-heading-div p {
    color: #F5F5F5;
}

.form-container h2 {
    margin-bottom: 8px;
    font-size: 24px;
}

.form-container p {
    margin: 8px 0 16px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type="text"],
input[type="email"],
input[type="url"] {
    width: 200px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
}

.note {
    font-size: 12px;
    color: #E3B505;
    margin-bottom: 16px;
    text-align: center;
}

.submit-button-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn {
    background-color: #E3B505;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.submit-btn:hover {
    background-color: #0186DF;
}

.footer-note {
    font-size: 12px;
    margin-top: 16px;
    text-align: center;
    color: #F5F5F5;
}

.success-msg {
    color: lightgreen;
    font-size: 13px;
    margin-top: 16px;
}

.error-msg {
    color: red;
    font-size: 13px;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .form-container-inner {
        max-width: 840px;
        min-width: 700px;
    }

    input[type="text"],
    input[type="email"],
    input[type="url"] {
        width: 360px;
    }
}


/* Footer css */
.footer {
    width: 100%;
    min-width: 100%;
    background-color: var(--color-text);
    /* theme-based */
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    flex-wrap: wrap;
    overflow-x: hidden;
    /* Force hide extra width */
}



.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
}

.footer-logo {
    height: 20px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 16px;
}

.footer-text {
    font-size: 10px;
    line-height: 16px;
    font-weight: 500;
    color: var(--color-bg);
    margin: 0;
    white-space: nowrap;
    /* Prevent text from wrapping and pushing width */
}

/* Desktop */
@media (min-width: 768px) {
    .footer {
        height: 64px;
    }

    .footer-right {
        flex-direction: row;
        gap: 12px;
        padding: 0 24px;
    }

    .footer-left{
        padding: 0 24px;
    }

    .footer-text {
        font-size: 14px;
        line-height: 20px;
    }
    .footer-logo{
        height: 35px;
    }
}


/* Navbar styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: var(--color-text);
    position: relative;
    height: 20px;
}

/* Logo image */
.logo {
    height: 25px;
}

/* Hide checkbox */
.menu-toggle {
    display: none;
}

/* Hamburger and Close icons */
.hamburger,
.close-btn {
    font-size: 28px;
    color: var(--color-bg);
    cursor: pointer;
    display: block;
    z-index: 1001;
}

/* Hide close by default */
.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Nav links (hidden by default on mobile) */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--color-text);
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}

.nav-links li a {
    color: var(--color-bg);
    text-decoration: none;
    font-size: 20px;
}

/* Show menu when checkbox is checked */
.menu-toggle:checked~.nav-links {
    right: 0;
}

/* Toggle visibility of hamburger and close */
.menu-toggle:checked~.hamburger {
    display: none;
}

.menu-toggle:checked~.close-btn {
    display: block;
}

/* Desktop view (min-width: 768px) */
@media (min-width: 768px) {

    .hamburger,
    .close-btn {
        display: none;
    }

    .nav-links {
        position: static;
        height: auto;
        flex-direction: row;
        background: none;
        gap: 20px;
        justify-content: flex-end;
        width: auto;
    }

    .nav-links li a {
        font-size: 18px;
    }

    .navbar{
        height: 32px;
    }

    .logo{
        height: 40px;
    }
}