/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #4CAF50;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

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

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

/* Meditation Types Section */
.meditation-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.meditation-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.meditation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.meditation-card img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.meditation-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: #333;
}

.meditation-card p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-item i {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    margin-right: 8px;
    font-size: 28px;
    color: #4CAF50;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #4CAF50;
}

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

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

.footer-section ul li a {
    color: #f8fcff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #000000;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Legal Content Styles */
.legal-content {
    padding: 120px 0 80px;
    background: white;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.last-updated {
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #f8b74d;
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 20px 0 10px;
    color: #f8b74d;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .features-grid,
    .meditation-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features h2,
    .meditation-types h2,
    .benefits h2,
    .cta h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.meditation-card,
.benefit-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.meditation-card img {
    transition: transform 0.3s ease;
}

.meditation-card:hover img {
    transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #45a049;
}

/* Feed/Content Section */
.feed-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.feed-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    gap: 40px;
}

.feed-item-left {
    flex-direction: row;
}

.feed-item-right {
    flex-direction: row-reverse;
}

.feed-image img {
    width: 340px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    object-fit: contain;
    height: 300px;
}

.feed-content {
    flex: 1;
    min-width: 220px;
}

.feed-content h3 {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

.feed-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .feed-item {
        flex-direction: column !important;
        gap: 20px;
        text-align: center;
    }

    .feed-image img {
        width: 100%;
        height: 180px;
    }
}

/* .feed-image img {
    width: 340px;
    max-width: 100%;
    border-radius: 18px;
} */
/* Calubrate Logo Styles */
.calubrate-logo {
    height: 40px;
    width: auto;
    margin-right: 12px;
    vertical-align: middle;
}

/* Updated Color Scheme */
:root {
    --primary: #f8b74d;
    --secondary: #4d96d0;
    --accent: #4d96d0;
    --success: #f8b74d;
    --background: #f5f7fa;
    --text: #222;
}

body {
    background-color: var(--background);
    color: var(--text);
}

.nav-logo,
.footer-logo {
    color: var(--primary);
}

.navbar {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(248, 183, 77, 0.08);
}

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

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary);
    box-shadow: 0 10px 25px rgba(77, 150, 208, 0.18);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.feed-content h3 {
    color: var(--primary);
}

.footer {
    background: linear-gradient(342deg, #f8b74d 0%, var(--secondary) 100%);
}

.footer-section h4 {
    color: var(--primary);
}

.footer-logo .calubrate-logo {
    filter: drop-shadow(0 2px 6px rgba(248, 183, 77, 0.12));
}

/* Update other accent elements */
.benefit-item i,
.social-links a:hover {
    color: var(--primary) !important;
    background: var(--secondary) !important;
}

.cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.cta h2 {
    color: #fff;
}

.cta p {
    color: #fff;
}

.footer-bottom {
    color: #fff;
}

/* Update scrollbar */
::-webkit-scrollbar-thumb {
    background: var(--primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Privacy Policy Hero Banner */
.privacy-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 60px 0 40px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.privacy-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.privacy-hero-logo {
    height: 64px;
    width: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 8px rgba(77, 150, 208, 0.10));
}

.privacy-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.privacy-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.privacy-hero-content i {
    color: #fff;
    margin-right: 10px;
}

/* Privacy Card Section */
.privacy-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(77, 150, 208, 0.10);
    padding: 40px 32px;
    max-width: 600px;
    margin: -60px auto 40px auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.privacy-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 1.1rem;
    color: var(--text);
}

.privacy-point i {
    font-size: 2.2rem;
    color: var(--primary);
    background: #fff6e3;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(248, 183, 77, 0.10);
    min-width: 48px;
    text-align: center;
}

.privacy-point strong {
    color: var(--secondary);
    font-weight: 600;
}

@media (max-width: 700px) {
    .privacy-card {
        padding: 24px 10px;
    }

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

/* Terms & Conditions Hero Banner */
.terms-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 60px 0 40px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.terms-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.terms-hero-logo {
    height: 64px;
    width: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 8px rgba(77, 150, 208, 0.10));
}

.terms-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.terms-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.terms-hero-content i {
    color: #fff;
    margin-right: 10px;
}

/* Terms Card Section */
.terms-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(77, 150, 208, 0.10);
    padding: 40px 32px;
    max-width: 600px;
    margin: -60px auto 40px auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.terms-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 1.1rem;
    color: var(--text);
}

.terms-point i {
    font-size: 2.2rem;
    color: var(--secondary);
    background: #eaf6ff;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(77, 150, 208, 0.10);
    min-width: 48px;
    text-align: center;
}

.terms-point strong {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 700px) {
    .terms-card {
        padding: 24px 10px;
    }

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