:root {
    /* Palette */
    --color-orange: #f9b06c;
    --color-pink-dark: #e23c86;
    --color-purple: #895aa5;
    --color-pink-light: #E96585;
    --color-text: #4d4d4e;
    --color-bg: #ffffff;
    --color-bg-alt: #fdf6f9;
    --color-white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-pink-dark), var(--color-purple));
    --gradient-text: linear-gradient(to right, var(--color-pink-dark), var(--color-orange));
    --gradient-blob-1: linear-gradient(to right, var(--color-orange), var(--color-pink-light));
    --gradient-blob-2: linear-gradient(to right, var(--color-purple), var(--color-pink-dark));

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 30px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(137, 90, 165, 0.15);
    --shadow-lg: 0 20px 50px rgba(226, 60, 134, 0.2);
    --shadow-glow: 0 0 20px rgba(226, 60, 134, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: background 0.3s, padding 0.3s;
}

.header .logo span {
    margin-top: 5px;
    font-size: 1.5rem;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-xs) 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:not(.btn):hover {
    color: var(--color-pink-dark);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-Hero {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-Hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    border-color: var(--color-pink-dark);
    color: var(--color-pink-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Header height */
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-blob-1);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-blob-2);
    bottom: -50px;
    left: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--color-orange);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation-duration: 15s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text h1 {
    max-width: 900px;
    margin: 0 auto var(--spacing-md);
    /* Added bottom margin */
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    /* Slightly larger for readability */
    margin-bottom: var(--spacing-md);
    /* Separation from button */
    color: var(--color-text);
    opacity: 0.9;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.text-center {
    text-align: center;
}

/* Features Section */
.features {
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--color-pink-light);
    filter: blur(100px);
    opacity: 0.3;
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto var(--spacing-sm);
    color: white;
}

.icon-orange {
    background: linear-gradient(135deg, var(--color-orange), #ffcd94);
    box-shadow: 0 10px 20px rgba(249, 176, 108, 0.3);
}

.icon-pink {
    background: linear-gradient(135deg, var(--color-pink-dark), var(--color-pink-light));
    box-shadow: 0 10px 20px rgba(226, 60, 134, 0.3);
}

.icon-purple {
    background: linear-gradient(135deg, var(--color-purple), #a67bc4);
    box-shadow: 0 10px 20px rgba(137, 90, 165, 0.3);
}

.feature-card h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    font-size: 1.5rem;
}

/* Feature Highlight Style */
.feature-highlight {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
    gap: var(--spacing-md);
    overflow: hidden;
}

.feature-highlight .feature-content {
    padding: var(--spacing-sm);
}

.feature-header-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.feature-highlight .feature-icon {
    margin: 0;
}

.feature-highlight .feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-highlight .feature-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

/* How It Works */
/* How It Works - New Simplified Layout */
.how-it-works {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--color-orange);
    filter: blur(80px);
    opacity: 0.2;
    border-radius: 50%;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: var(--color-pink-light);
    filter: blur(80px);
    opacity: 0.2;
    border-radius: 50%;
}



/* CTA Section */
.cta-section {
    padding-bottom: var(--spacing-xl);
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.cta-content p {
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.btn-store {
    background: white;
    color: var(--color-pink-dark);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

.btn-store:hover {
    transform: translateY(-3px);
}

.cta-circle-1,
.cta-circle-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

/* App Store Icons Original Colors */
.btn-store i {
    font-size: 1.2rem;
}

.btn-store .fa-apple {
    color: #000000;
}

.btn-store .fa-google-play {
    background: linear-gradient(to bottom right, #3DDC84, #4285F4, #EA4335, #FBBC05);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* About Section */
.about {
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--color-pink-light);
    filter: blur(100px);
    opacity: 0.3;
    border-radius: 50%;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.service-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto var(--spacing-sm);
}

.service-icon.icon-orange {
    background: linear-gradient(135deg, var(--color-orange), #ffcd94);
}

.service-icon.icon-pink {
    background: linear-gradient(135deg, var(--color-pink-dark), var(--color-pink-light));
}

.service-icon.icon-purple {
    background: linear-gradient(135deg, var(--color-purple), #a67bc4);
}

.service-item h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.service-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Trust Message Section */
.trust-message-section {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.02), rgba(255, 255, 255, 0));
    margin-bottom: var(--spacing-md);
}

.trust-message-section .container {
    max-width: 800px;
}

.trust-message-section p {
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: #888;
    line-height: 1.8;
    position: relative;
    padding: 0 var(--spacing-md);
}

.trust-message-section p::before,
.trust-message-section p::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--color-pink-dark);
    vertical-align: middle;
    margin: 0 15px;
    opacity: 0.5;
}

.trust-message-section .highlight {
    font-weight: 400;
    font-style: italic;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* FAQ Section */
.faq {
    background-color: var(--color-bg-alt);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
    margin: 0;
    color: var(--color-text);
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-pink-dark);
    transition: all 0.3s;
}

.faq-toggle::before {
    content: '+';
}

.faq-item.active .faq-toggle::before {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    margin: 0;
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: #666;
    line-height: 1.6;
}

/* Downloads Section */
.downloads {
    background-color: var(--color-bg);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.download-card {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}

.download-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.download-card h3 {
    margin-bottom: var(--spacing-sm);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

/* Footer */
.footer {
    background: #f9f9f9;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    color: var(--color-text);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-logo p {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.footer-links ul {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    font-size: 0.95rem;
    color: #666;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-pink-dark);
}

.footer-contact h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    font-weight: 600;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.footer-contact a {
    color: var(--color-pink-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--color-purple);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-pink-dark);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--color-pink-dark);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #999;
}



/* Showcase Section Styles */
.showcase {
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.showcase-split {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.showcase-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.showcase-icon {
    width: 80px;
    height: 80px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.showcase-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    color: var(--color-text);
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-card p {
    color: #666;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: var(--spacing-md);
    width: 100%;
    min-height: 130px;
    display: flex;
    flex-direction: column;
}

.showcase-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 1.05rem;
}

.showcase-benefits li i {
    color: var(--color-pink-dark);
}

.btn-link {
    margin-top: auto;
    color: var(--color-pink-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.btn-link:hover {
    gap: 0.8rem;
}

/* Carousel Styles (Nested) */
.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: auto;
}

.carousel-container {
    position: relative;
    height: 220px;
    /* Adjusted height for column */
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    background: #f9f9f9;
}

.carousel-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: var(--color-pink-dark);
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, transform 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 5px;
}

.next-btn {
    right: 5px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 10px 0 0;
    gap: 8px;
}

.carousel-indicator {
    border: none;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicator.current-slide {
    background: var(--color-pink-dark);
}

/* Video Placeholder (Nested) */
.video-wrapper {
    width: 100%;
    margin-top: auto;
}

.video-placeholder {
    width: 100%;
    height: 220px;
    /* Match carousel height */
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    border: 2px solid white;
    transition: background 0.3s, transform 0.3s;
}

.video-placeholder:hover .play-button {
    background: white;
    color: var(--color-pink-dark);
    transform: scale(1.1);
}

/* Download Section (Simple) */
.cta-box-simple {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-box-simple h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-box-simple p {
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.downloads-grid-simple {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.download-group h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

/* Responsive Adjustments for Showcase */
@media (max-width: 900px) {
    .showcase-split {
        grid-template-columns: 1fr;
    }

    .carousel-container,
    .video-placeholder {
        height: 250px;
    }

    .downloads-grid-simple {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--color-pink-dark);
    text-decoration: none;
    cursor: pointer;
}

/* Caption if needed */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Responsive Lightbox */
@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 100%;
    }
}

/* =========================================
   Refined Responsive Styles (Mobile & Tablet)
   ========================================= */

/* =========================================
   Refined Responsive Styles
   ========================================= */

@media screen and (max-width: 968px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--spacing-lg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .hero-image {
        order: -1;
        /* Image on top */
        max-width: 80%;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .showcase-split {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 4rem;
    }

    body {
        font-size: 15px;
    }

    /* Navigation */
    .navbar {
        position: relative;
    }

    .hamburger {
        display: block;
        z-index: 1001;
        color: var(--color-text);
    }

    .nav-links {
        position: fixed;
        right: 0px;
        top: 0px;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(255, 255, 255, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 2rem;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero-btns {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-bg-elements .blob {
        opacity: 0.4;
    }

    /* Features */
    .feature-highlight {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .feature-header-row {
        justify-content: center;
    }

    .feature-highlight .feature-image img {
        max-height: 300px;
    }



    /* Showcase */
    .carousel-container,
    .video-placeholder {
        height: 250px;
    }

    .showcase-split {
        gap: var(--spacing-lg);
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .footer-links ul {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: var(--spacing-sm);
    }

    .feature-highlight .feature-image img {
        max-height: 250px;
    }

    .carousel-container,
    .video-placeholder {
        height: 200px;
    }
}