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

     :root {
         --primary-color: #ff6b8b;
         --secondary-color: #ffcc00;
         --accent-color: #9d4edd;
         --dark-color: #2d3047;
         --light-color: #fff9f2;
         --text-color: #333333;
         --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
         --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     }

     body {
         font-family: 'Poppins', sans-serif;
         line-height: 1.6;
         color: var(--text-color);
         background-color: var(--light-color);
         overflow-x: hidden;
     }

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

     /* Header & Navigation */
     header {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         z-index: 1000;
         padding: 20px 0;
         transition: var(--transition);
         background-color: rgba(255, 249, 242, 0.95);
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     }

     header.scrolled {
         padding: 15px 0;
         background-color: rgba(255, 249, 242, 0.98);
         box-shadow: var(--shadow);
     }

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

     .logo {
         display: flex;
         align-items: center;
         gap: 10px;
         font-size: 1.8rem;
         font-weight: 700;
         color: var(--primary-color);
         text-decoration: none;
     }

     .logo-icon {
         color: var(--secondary-color);
         font-size: 2.2rem;
     }

     .logo-text {
         font-family: 'Dancing Script', cursive;
     }

     .nav-links {
         display: flex;
         gap: 30px;
     }

     .nav-links a {
         text-decoration: none;
         color: var(--dark-color);
         font-weight: 500;
         font-size: 1.1rem;
         transition: var(--transition);
         position: relative;
     }

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

     .nav-links a::after {
         content: '';
         position: absolute;
         bottom: -5px;
         left: 0;
         width: 0;
         height: 3px;
         background-color: var(--primary-color);
         transition: var(--transition);
     }

     .nav-links a:hover::after {
         width: 100%;
     }

     .download-btn {
         background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
         color: white !important;
         border: none;
         padding: 8px 25px;
         border-radius: 50px;
         /* font-weight: 600; */
         font-size: 0.78rem;
         cursor: pointer;
         transition: var(--transition);
         box-shadow: 0 5px 15px rgba(255, 107, 139, 0.3);

     }

     .download-btn:hover {
         transform: translateY(-5px);
         box-shadow: 0 10px 20px rgba(255, 107, 139, 0.4);
     }

     .mobile-menu-btn {
         display: none;
         font-size: 1.5rem;
         background: none;
         border: none;
         color: var(--dark-color);
         cursor: pointer;
     }


     /* Hero Section */
     .hero {
         padding: 180px 0 100px;
         background: linear-gradient(135deg, #ffe8f0 0%, #fff0e6 100%);
         position: relative;
         overflow: hidden;
     }

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

     .hero-text {
         flex: 1;
         animation: fadeInLeft 1s ease-out;
     }

     .hero-text h1 {
         font-size: 3.5rem;
         line-height: 1.2;
         margin-bottom: 20px;
         color: var(--dark-color);
     }

     .hero-text h1 span {
         color: var(--primary-color);
         font-family: 'Dancing Script', cursive;
         font-size: 4rem;
     }

     .hero-text p {
         font-size: 1.2rem;
         margin-bottom: 30px;
         color: #555;
         max-width: 90%;
     }

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

     .app-store-btn, .play-store-btn {
         display: flex;
         align-items: center;
         gap: 10px;
         padding: 15px 5px;
         border-radius: 15px;
         font-weight: 600;
         text-decoration: none;
         transition: var(--transition);
         box-shadow: var(--shadow);
     }

     .app-store-btn {
         background-color: #000;
         color: white;
     }

     .play-store-btn {
         background-color: #fff;
         color: #000;
     }

     .app-store-btn:hover, .play-store-btn:hover {
         transform: translateY(-5px);
     }

     .app-store-btn i, .play-store-btn i {
         font-size: 1.8rem;
     }

     .hero-image {
         flex: 1;
         display: flex;
         justify-content: center;
         animation: fadeInRight 1s ease-out;
         position: relative;
     }

     .phone-mockup {
         position: relative;
         width: 300px;
         height: 600px;
         background: #2d3047;
         border-radius: 40px;
         padding: 15px;
         box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
         transform: perspective(1000px) rotateY(-10deg);
         transition: var(--transition);
     }

     .phone-mockup:hover {
         transform: perspective(1000px) rotateY(0deg);
     }

     .phone-screen {
         width: 100%;
         height: 100%;
         background: white;
         border-radius: 30px;
         overflow: hidden;
         position: relative;
     }

     .app-slides {
         width: 100%;
         height: 100%;
         position: relative;
     }

     .app-slide {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         opacity: 0;
         transition: opacity 1s ease;
         display: flex;
         flex-direction: column;
         padding: 20px;
     }

     .app-slide.active {
         opacity: 1;
     }

     .app-header {
         display: flex;
         justify-content: space-between;
         align-items: center;
         margin-bottom: 20px;
     }

     .app-logo {
         color: var(--primary-color);
         font-weight: 700;
         font-size: 1.5rem;
     }

     .app-screen-content {
         flex: 1;
         display: flex;
         flex-direction: column;
         gap: 15px;
     }

     .cake-item {
         display: flex;
         align-items: center;
         gap: 15px;
         padding: 10px;
         border-radius: 15px;
         background-color: #f9f9f9;
         transition: var(--transition);
     }

     .cake-item:hover {
         background-color: #ffe8f0;
         transform: translateX(5px);
     }

     .cake-icon {
         width: 50px;
         height: 50px;
         background-color: var(--secondary-color);
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         color: white;
         font-size: 1.5rem;
     }

     .cake-details h4 {
         font-size: 1rem;
         margin-bottom: 5px;
     }

     .cake-details p {
         font-size: 0.9rem;
         color: #666;
     }

     .app-nav {
         display: flex;
         justify-content: space-around;
         padding: 15px 0;
         border-top: 1px solid #eee;
     }

     .app-nav-item {
         display: flex;
         flex-direction: column;
         align-items: center;
         color: #888;
         transition: var(--transition);
     }

     .app-nav-item.active {
         color: var(--primary-color);
     }

     .app-nav-item i {
         font-size: 1.2rem;
         margin-bottom: 5px;
     }

     /* Features Section */
     .features {
         padding: 100px 0;
         background-color: white;
     }

     .section-title {
         text-align: center;
         margin-bottom: 60px;
     }

     .section-title h2 {
         font-size: 2.8rem;
         color: var(--dark-color);
         margin-bottom: 15px;
     }

     .section-title p {
         font-size: 1.2rem;
         color: #666;
         max-width: 700px;
         margin: 0 auto;
     }

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

     .feature-card {
         background-color: white;
         border-radius: 20px;
         padding: 20px;
         text-align: center;
         box-shadow: var(--shadow);
         transition: var(--transition);
         opacity: 0;
         transform: translateY(30px);
     }

     .feature-card.animated {
         opacity: 1;
         transform: translateY(0);
     }

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

     .feature-icon {
         width: 80px;
         height: 80px;
         margin: 0 auto 25px;
         background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 2rem;
         color: white;
     }

     .feature-card h3 {
         font-size: 1.5rem;
         margin-bottom: 15px;
         color: var(--dark-color);
     }

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

     /* App Screenshots Section */
     .screenshots {
         padding: 100px 0;
         background-color: #f9f5ff;
     }

     .screenshots-slider {
         display: flex;
         gap: 30px;
         /* overflow-x: auto; */
         padding: 30px 0;
         /* scrollbar-width: thin;
         scrollbar-color: var(--primary-color) #f0f0f0; */
     }

     /* .screenshots-slider::-webkit-scrollbar {
         height: 8px;
     }

     .screenshots-slider::-webkit-scrollbar-track {
         background: #f0f0f0;
         border-radius: 10px;
     }

     .screenshots-slider::-webkit-scrollbar-thumb {
         background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
         border-radius: 10px;
     } */

     .screenshot-item {
         min-width: 250px;
         height: 500px;
         background: white;
         border-radius: 30px;
         padding: 20px;
         box-shadow: var(--shadow);
         display: flex;
         flex-direction: column;
         transition: var(--transition);
         position: relative;
         overflow: hidden;
     }

     .screenshot-item:hover {
         transform: translateY(-15px);
     }

     .screenshot-header {
         display: flex;
         justify-content: space-between;
         margin-bottom: 20px;
     }

     .screenshot-content {
         flex: 1;
         display: flex;
         flex-direction: column;
         gap: 15px;
     }

     .screenshot-footer {
         margin-top: 20px;
         padding-top: 15px;
         border-top: 1px solid #eee;
         display: flex;
         justify-content: space-around;
     }

     /* FAQ Section */
     .faq {
         padding: 100px 0;
         background-color: white;
     }

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

     .faq-item {
         margin-bottom: 20px;
         border-radius: 15px;
         overflow: hidden;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
         transition: var(--transition);
     }

     .faq-item:hover {
         box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     }

     .faq-question {
         padding: 20px 30px;
         background-color: white;
         display: flex;
         justify-content: space-between;
         align-items: center;
         cursor: pointer;
         font-weight: 600;
         font-size: 1.1rem;
     }

     .faq-question i {
         transition: var(--transition);
     }

     .faq-answer {
         padding: 0 30px;
         max-height: 0;
         overflow: hidden;
         transition: var(--transition);
         background-color: #f9f9f9;
     }

     .faq-item.active .faq-answer {
         padding: 20px 30px;
         max-height: 500px;
     }

     .faq-item.active .faq-question i {
         transform: rotate(180deg);
     }

     /* Footer */
     footer {
         background-color: var(--dark-color);
         color: white;
         padding: 80px 0 30px;
     }

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

     .footer-column h3 {
         font-size: 1.5rem;
         margin-bottom: 25px;
         color: white;
     }

     .footer-links {
         list-style: none;
     }

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

     .footer-links a {
         color: #ccc;
         text-decoration: none;
         transition: var(--transition);
     }

     .footer-links a:hover {
         color: var(--secondary-color);
         padding-left: 5px;
     }

     .social-icons {
         display: flex;
         gap: 20px;
         margin-top: 20px;
     }

     .social-icons a {
         display: flex;
         align-items: center;
         justify-content: center;
         width: 40px;
         height: 40px;
         background-color: rgba(255, 255, 255, 0.1);
         border-radius: 50%;
         color: white;
         text-decoration: none;
         transition: var(--transition);
     }

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

     .copyright {
         text-align: center;
         padding-top: 30px;
         border-top: 1px solid rgba(255, 255, 255, 0.1);
         color: #aaa;
         font-size: 0.9rem;
     }
     /* === APP DOWNLOAD BUTTONS STYLING === */
.app-download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.app-store-btn, .play-store-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 15px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
     white-space: nowrap;
}

/* Apple App Store Button */
.app-store-btn {
    background: linear-gradient(145deg, #000000, #333333);
    color: #ffffff;
    border: 1px solid #444444;
}

/* Google Play Store Button */
.play-store-btn {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    color: #5f6368;
    border: 1px solid #dadce0;
}

/* Button Icon Styling */
.app-store-btn i, .play-store-btn i {
    font-size: 1.2rem;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.play-store-btn i {
    color: #4285F4; /* Google blue */
}

/* Button Text Container */
.app-store-btn div, .play-store-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
}

/* Top Text (Small) */
.app-store-btn span, .play-store-btn span {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 2px;
}

/* Platform Name (Bold) */
.app-store-btn strong, .play-store-btn strong {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
     white-space: nowrap;
}

.app-store-btn strong {
    color: #ffffff;
}

.play-store-btn strong {
    color: #1a73e8; /* Google blue */
}

/* HOVER EFFECTS */
.app-store-btn:hover, .play-store-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.app-store-btn:hover {
    background: linear-gradient(145deg, #111111, #444444);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.play-store-btn:hover {
    background: linear-gradient(145deg, #ffffff, #e8f0fe);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.2);
}

.app-store-btn:hover i, .play-store-btn:hover i {
    transform: scale(1.1);
}

/* ACTIVE/CLICK EFFECT */
.app-store-btn:active, .play-store-btn:active {
    transform: translateY(-1px);
    transition: transform 0.1s;
}

/* RIPPLE EFFECT (Optional) */
.app-store-btn::after, .play-store-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.app-store-btn:focus:not(:active)::after,
.play-store-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(30, 30);
        opacity: 0;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .app-download-buttons {
        justify-content: center;
        gap: 12px;
    }

    .app-store-btn, .play-store-btn {
        min-width: 160px;
        padding: 12px 20px;
    }

    .app-store-btn i, .play-store-btn i {
        font-size: 1.6rem;
        margin-right: 10px;
    }

    .app-store-btn span, .play-store-btn span {
        font-size: 0.7rem;
    }

    .app-store-btn strong, .play-store-btn strong {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-store-btn, .play-store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* DARK MODE SUPPORT (Optional) */
@media (prefers-color-scheme: dark) {
    .play-store-btn {
        background: linear-gradient(145deg, #2d2d2d, #3c3c3c);
        color: #e8eaed;
        border: 1px solid #5f6368;
    }

    .play-store-btn strong {
        color: #8ab4f8;
    }
}

     /* Animations */
     @keyframes fadeInLeft {
         from {
             opacity: 0;
             transform: translateX(-50px);
         }
         to {
             opacity: 1;
             transform: translateX(0);
         }
     }

     @keyframes fadeInRight {
         from {
             opacity: 0;
             transform: translateX(50px);
         }
         to {
             opacity: 1;
             transform: translateX(0);
         }
     }

     @keyframes float {
         0%, 100% {
             transform: translateY(0);
         }
         50% {
             transform: translateY(-15px);
         }
     }

     .floating {
         animation: float 5s ease-in-out infinite;
     }

     /* Responsive Design */
     @media (max-width: 992px) {
         .hero-content {
             flex-direction: column;
             text-align: center;
         }

         .hero-text h1 {
             font-size: 2.8rem;
         }

         .hero-text h1 span {
             font-size: 3.2rem;
         }

         .hero-text p {
             max-width: 100%;
         }

         .phone-mockup {
             transform: perspective(1000px) rotateY(0deg);
         }
     }

     @media (max-width: 768px) {
         .mobile-menu-btn {
             display: block;
         }

         .nav-links {
             position: fixed;
             top: 80px;
             left: 0;
             width: 100%;
             background-color: white;
             flex-direction: column;
             align-items: center;
             padding: 30px 0;
             box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
             transform: translateY(-100%);
             opacity: 0;
             transition: var(--transition);
             z-index: 999;
         }

         .nav-links.active {
             transform: translateY(0);
             opacity: 1;
         }

         .hero-text h1 {
             font-size: 2.3rem;
         }

         .hero-text h1 span {
             font-size: 2.6rem;
         }

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

     @media (max-width: 576px) {
         .hero {
             padding: 150px 0 80px;
         }

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

         .hero-text h1 span {
             font-size: 2.2rem;
         }

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

         .phone-mockup {
             width: 250px;
             height: 500px;
         }

         .features, .screenshots, .faq {
             padding: 70px 0;
         }
     }
