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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fcfcfc;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3 {
    color: #122845;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
}

.section-title p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #122845;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0a1626;
}

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

.store-badge img:hover {
    transform: translateY(-3px);
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #122845;
}

.logo img {
    height: 40px;
    border-radius: 8px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: #444;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #122845;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #122845;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f4f7fb 0%, #e6edf5 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #222;
}

.hero-content h1 span {
    color: #122845;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: #ffffff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    box-shadow: 0 20px 40px rgba(18, 40, 69, 0.08);
}

.phone-mockup {
    max-width: 300px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #e67e22; /* Saffron/orange color */
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* Spiritual Section */
.spiritual-section {
    padding: 80px 0;
    background-color: #fafbfe;
}

.spiritual-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.spiritual-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.spiritual-image::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: #e6edf5;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.spiritual-image img {
    max-width: 280px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

.spiritual-content {
    flex: 1;
}

.spiritual-content h2 {
    text-align: left;
}

.spiritual-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.spiritual-content ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.spiritual-content ul li i {
    color: #27ae60;
    margin-top: 5px;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background-color: #fff;
}

.screenshot-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 20px 40px 20px;
    scroll-snap-type: x mandatory;
}

.screenshot-gallery::-webkit-scrollbar {
    height: 8px;
}

.screenshot-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.screenshot-gallery::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.gallery-img {
    height: 400px;
    scroll-snap-align: start;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12));
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #122845 0%, #0a1626 100%);
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #08101c;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    color: #fff;
    margin-bottom: 20px;
}

.footer-about p {
    color: #bbb;
}

.footer-links h3, .footer-contact h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bbb;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #e67e22;
}

.footer-contact p {
    color: #bbb;
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #122845;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #e67e22;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a2a40;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .spiritual-container {
        flex-direction: column;
    }
    
    .spiritual-content h2 {
        text-align: center;
    }
    
    .hero-image::before {
        width: 300px;
        height: 300px;
    }
    
    .spiritual-image::before {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }

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

    .nav-menu ul {
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
    }
    
    .hamburger {
        display: block;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .store-badge img {
        height: 40px;
    }
    
    .gallery-img {
        height: 300px;
    }
    
    .hero-image::before {
        width: 250px;
        height: 250px;
    }
    
    .spiritual-image::before {
        width: 250px;
        height: 250px;
    }
}