:root {
    --primary-orange: #E66D42;
    --secondary-beige: #F5E6D3;
    --dark-slate: #1A1A1A;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --text-main: #333333;
    --text-muted: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--secondary-beige);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

.ml-text {
    font-family: 'Baloo Chettan 2', cursive;
    font-weight: 800;
}

.ml-desc {
    font-family: 'Baloo Chettan 2', cursive;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    text-align: justify;
}

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

/* Header Styles */
header {
    padding: 15px 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #000;
    padding: 5px;
}

.brand-name h1 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 2px;
}

.brand-icons {
    display: flex;
    gap: 8px;
    font-size: 0.8rem;
    color: #888;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
    color: var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
}

.whatsapp-btn {
    background: var(--primary-orange);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 109, 66, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 109, 66, 0.4);
}

.whatsapp-btn span {
    font-family: 'Baloo Chettan 2', cursive;
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    background: radial-gradient(circle at 70% 50%, #f7ecd9 0%, #f5e6d3 100%);
    position: relative;
    display: flex;
    align-items: center;
}

/* Hero Layout - Side by Side (No Cards) */
.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

.hero-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-hero-img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 50%;
    animation: slowRotate 20s linear infinite;
}

.foreground-hand-img {
    position: absolute;
    width: 60%;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 0 20px rgba(184, 134, 11, 0.4));
    transition: transform 0.3s ease;
}

.foreground-hand-img:hover {
    transform: scale(1.1);
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content-side {
    padding: 20px;
}

.hero-text-area {
    max-width: 550px;
}

.hero-title-main {
    position: relative;
    margin-bottom: 20px;
}

.hero-title-main h2 {
    font-size: 3.5rem;
    color: var(--dark-slate);
    line-height: 1.2;
}

.verified-icon {
    font-size: 1.5rem;
    color: #4dabf7;
    vertical-align: middle;
    margin-left: 10px;
}

.star-accent {
    position: absolute;
    top: 10px;
    right: -20px;
    font-size: 1.5rem;
    color: #fcc419;
}

.hero-desc {
    margin-bottom: 30px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    background: #e1ecd9;
    border: 1px solid #d0e0c5;
    transition: all 0.3s;
}

.app-btn.disabled {
    background: #d9e0e1;
    border-color: #ccd5d6;
    opacity: 0.7;
    cursor: not-allowed;
}

.app-btn img {
    height: 30px;
}

.app-btn .btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn .small {
    font-size: 0.7rem;
    color: #666;
}

.app-btn .large {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.badge {
    background: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Baloo Chettan 2', cursive;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.badge i {
    font-size: 1.1rem;
}

.icon-yellow {
    color: #fcc419;
}

.icon-red {
    color: #ff6b6b;
}

.icon-orange {
    color: #fd7e14;
}

.hero-footer-btns {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #ffa502;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Baloo Chettan 2', cursive;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary {
    background: #f1e4d1;
    color: #8d6e63;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Baloo Chettan 2', cursive;
    border: 1px solid #e0d1bc;
}

/* About Astrology Section */
.about-astrology {
    padding: 100px 0;
    background-color: var(--secondary-beige);
    position: relative;
}

.text-center {
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 10px;
    text-align: justify;
}

.sub-intro {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 30px;
}

.highlight-text {
    font-size: 2.2rem;
    color: #b8860b;
    margin-bottom: 40px;
}

.mobile-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.info-badges-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.info-badges-single {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.info-badge {
    background: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.text-yellow {
    color: #fcc419;
}

.text-red {
    color: #ff6b6b;
}

.text-orange {
    color: #fd7e14;
}

.solution-text h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.4;
}

.solution-text p {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 10px;
    text-align: justify;
}

.brand-footer-text {
    font-family: 'Baloo Chettan 2', cursive;
    font-size: 1.6rem;
    font-weight: 800;
    color: #b8860b;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #000;
    color: #fcc419;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: #b8860b;
    color: #fff;
}

/* What is Jothismithra Section */
.what-is-jothismithra {
    padding: 100px 0;
    background-color: #fff;
}

.jothismithra-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 60px;
}

.zodiac-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-zodiac {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: slowRotate 40s linear infinite;
}

.jothismithra-content .section-title {
    font-size: 2.8rem;
    color: #b8860b;
    margin-bottom: 30px;
    line-height: 1.2;
}

.jothismithra-content .section-desc {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tag {
    background-color: #fdf8f0;
    color: #8b6b23;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #f1e4d1;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #b8860b;
    color: #fff;
    transform: translateY(-3px);
}

.jothismithra-content .footer-text {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Header Refinement - Sticky & Full Width */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.header-content {
    max-width: 1400px; /* Full window width feel */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

/* Service Slider */
.service-slider-section {
    padding: 100px 0;
    background: #fdfaf5;
}

.slider-title {
    text-align: center;
    font-size: 2.5rem;
    color: #b8860b;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1e4d1;
    transition: all 0.3s ease;
    height: auto;
}

.service-card i {
    font-size: 3rem;
    color: #b8860b;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

/* Footer Styling */
.site-footer {
    background: #1a2228;
    color: #fff;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: #fff;
}

.footer-desc-ml {
    color: #ddd;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-desc-en {
    color: #aaa;
    font-style: italic;
    margin-bottom: 25px;
}

.footer-app-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-app-btn img {
    height: 40px;
}

.footer-app-badges .divider {
    color: #444;
}

.footer-app-badges .stat {
    color: var(--primary-orange);
    font-weight: 600;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.underline {
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
    margin-bottom: 25px;
}

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

.footer-col-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col-links ul li a:hover {
    color: var(--primary-orange);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-item i {
    color: var(--primary-orange);
}

.support-box {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.support-box h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.footer-social h5 {
    margin-bottom: 15px;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #2a343c;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-content {
        padding: 0 20px;
    }

    nav ul {
        display: none; /* Mobile menu needed */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual-side {
        order: 2;
    }

    .hero-content-side {
        order: 1;
    }

    .hero-title-main h2 {
        font-size: 2.2rem;
    }

    .app-buttons,
    .feature-badges,
    .hero-footer-btns {
        justify-content: center;
    }

    .main-hero-img {
        max-width: 100%;
        max-height: 400px;
    }

    .info-badges-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .intro-text {
        font-size: 1.4rem;
    }

    .sub-intro {
        font-size: 1.2rem;
    }

    .highlight-text {
        font-size: 1.6rem;
    }

    .jothismithra-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .service-tags {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}