/* Global Styles */
:root {
    --primary: #0057FF;
    --secondary: #0E1747;
    --tertiary: #A9ADC3;
    --white: #FFFFFF;
    --light-bg: #F8F9FC;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
    border-radius: 10px;

}

/* Firefox Scrollbar Styles */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light-bg);
}

/* Font Face Declarations */
@font-face {
    font-family: 'FormaDJR';
    src: url('../Font/FormaDJRDisplay-Regular-Testing.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FormaDJR';
    src: url('../Font/FormaDJRDisplay-Medium-Testing.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'FormaDJR';
    src: url('../Font/FormaDJRDisplay-Bold-Testing.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

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

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'FormaDJR', sans-serif;
    line-height: 1.6;
    background-color: var(--light-bg);
    color: var(--secondary);
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    width: 100%;
    justify-self: center;
    padding: 15px;
}

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

.logo {
    display: flex;
    align-items: center;
    position: relative;
    height: 70px;
    width: 70px;
}

.logo img {
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo .logo-default {
    opacity: 0;
}

.logo .logo-inverse {
    opacity: 1;
}

.navbar.scrolled .logo .logo-default {
    opacity: 1;
}

.navbar.scrolled .logo .logo-inverse {
    opacity: 0;
}

.nav-links {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.download-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
}


/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.landscape-video {
    display: block;
}

.portrait-video {
    display: none;
}

@media (max-width: 768px) and (orientation: portrait) {
    .navbar.scrolled .logo .logo-default {
        opacity: 1;
        top: 50%;
        left: 75%;
        transform: translate(-50%, -50%);
        height: 50px;
    }
    .landscape-video {
        display: none;
    }
    
    .portrait-video {
        display: block;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(14, 23, 71, 0.4), rgba(14, 23, 71, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--tertiary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.primary-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
}

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

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

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

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

.about-text p {
    font-size: 1.1rem;
    color: var(--secondary);
    text-align: justify;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(14, 23, 71, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(14, 23, 71, 0.2);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

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

.services-diagram {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 0;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.center-logo img {
    width: 80%;
    height: auto;
}

.service-cards {
    position: relative;
    width: 100%;
    height: 600px;
}

.service-card {
    position: absolute;
    width: 190px;
    height: 190px;
    background: var(--white);
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    width: 300px;
    height: 250px;
    border-radius: 20px;
    z-index: 10;
}



.service-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 1rem;
}

.service-card p {
    color: var(--tertiary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover p {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

.top-left { top: 30px; left: 60px; }
.top-right { top: 30px; right: 60px; }
.bottom-left { bottom: 30px; left: 60px; }
.bottom-right { bottom: 30px; right: 60px; }

.service-cards::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

@media (max-width: 1200px) {
    .services-diagram {
        padding: 40px 0;
    }
    
    .service-cards {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-card {
        position: relative;
        width: 180px;
        height: 180px;
        margin: 0 auto;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }
    
    .center-logo {
        position: relative;
        margin: 25px auto;
        transform: none;
        top: auto;
        left: auto;
        width: 100px;
        height: 100px;
    }
    
    .service-cards::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        width: 100%;
        height: auto;
        padding: 20px;
        border-radius: 15px;
        cursor: default;
    }

    .service-card:hover {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        max-height: none;
        opacity: 1;
        margin-top: 10px;
    }

    .center-logo {
        display: none;
    }
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.why-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.partners h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary);
    font-size: 2.5rem;
    font-weight: 500;
}

.partners .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.partners-content {
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
}

.partners-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    text-align: center;
}

.partners-content p {
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    text-align: justify;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.partner-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

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

    .partners-content {
        max-width: 100%;
        text-align: center;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partner-carousel {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

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

.faq-description {
    text-align: center;
    margin-bottom: 3em;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    color: var(--tertiary);
    line-height: 1.6;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

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

.app-logo{
    
  filter: drop-shadow(5px 5px 5px rgb(180, 180, 180));
  width: 125px;
  border-radius: 25%;
}

/* Download Section */
.download {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    color: var(--secondary);
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.download .app-logo {
    width: 120px;
    margin: 4rem auto;
    display: block;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.store-buttons img:hover {
    transform: translateY(-2px);
}

.download-now-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.download-now-btn:hover {
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

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

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

.contact-info {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--secondary);
    text-align: justify;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid rgba(14, 23, 71, 0.1);
    border-radius: 10px;
    font-family: 'FormaDJR', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 87, 255, 0.1);
}

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

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

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

@media (max-width: 768px) {
    p {
        font-size: 0.4rem;
    }
    .contact-info p {
        margin-bottom: 1rem;
        color: var(--secondary);
        text-align: justify;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
        text-align: center;
    }
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-logo img{
    height: 60px;
    width: auto;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-links h3 {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--tertiary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social h3 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid,
    .benefits-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Navigation */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    margin-left: auto;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span {
    background-color: var(--secondary);
}

.navbar.scrolled .hamburger-menu span {
    background-color: var(--secondary);
}

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .cta-button {
        display: none;
    }

    .mobile-download-btn {
        background: var(--primary);
        color: var(--white);
        padding: 1rem 2rem;
        border-radius: 30px;
        margin-top: 20px;
    }
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 80px 20px 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav a {
    display: block;
    color: var(--secondary);
    text-decoration: none;
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}



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

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

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

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 80px 40px;
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav a {
        color: var(--secondary);
        text-decoration: none;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }



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

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

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

@media (max-width: 768px) {
    .nav-links,
    .cta-button {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .benefits-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.scroll-to-top i {
    color: var(--primary);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .nav-links,
    .cta-button {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .benefits-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
}
.hero-video source.landscape-video {
    display: block;
}

.hero-video source.portrait-video {
    display: none;
}

@media screen and (max-width: 767px) {
    .hero-video source.landscape-video {
        display: none ;
    }

    .hero-video source.portrait-video {
        display: block;
    }
}
@media (max-width: 600px) {
  .partner-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partner-carousel {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

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

.faq-description {
    text-align: center;
    margin-bottom: 3em;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    color: var(--tertiary);
    line-height: 1.6;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

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

.app-logo{
    
  filter: drop-shadow(5px 5px 5px rgb(180, 180, 180));
  width: 125px;
  border-radius: 25%;
}

/* Download Section */
.download {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    color: var(--secondary);
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.download .app-logo {
    width: 120px;
    margin: 4rem auto;
    display: block;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.store-buttons img:hover {
    transform: translateY(-2px);
}

.download-now-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.download-now-btn:hover {
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

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

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

.contact-info {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid rgba(14, 23, 71, 0.1);
    border-radius: 10px;
    font-family: 'FormaDJR', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 87, 255, 0.1);
}

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

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

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

@media (max-width: 768px) {
    p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 1rem;
        color: var(--secondary);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
        text-align: center;
    }
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-logo img{
    height: 60px;
    width: auto;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-links h3 {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--tertiary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social h3 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid,
    .benefits-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Navigation */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    margin-left: auto;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span {
    background-color: var(--secondary);
}

.navbar.scrolled .hamburger-menu span {
    background-color: var(--secondary);
}

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .cta-button {
        display: none;
    }

    .mobile-download-btn {
        background: var(--primary);
        color: var(--white);
        padding: 1rem 2rem;
        border-radius: 30px;
        margin-top: 20px;
    }
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 80px 20px 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav a {
    display: block;
    color: var(--secondary);
    text-decoration: none;
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--secondary);
}

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

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

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

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 80px 40px;
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav a {
        color: var(--secondary);
        text-decoration: none;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .mobile-nav a:hover {
        color: var(--primary);
    }

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

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

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

@media (max-width: 768px) {
    .nav-links,
    .cta-button {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .benefits-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.scroll-to-top i {
    color: var(--primary);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .nav-links,
    .cta-button {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .benefits-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
}
.hero-video source.landscape-video {
    display: block;
}

.hero-video source.portrait-video {
    display: none;
}

@media screen and (max-width: 767px) {
    .hero-video source.landscape-video {
        display: none ;
    }

    .hero-video source.portrait-video {
        display: block;
    }
}
