:root {
    --primary-color: #ffed01;
    --primary-light: #f3e8ff;
    --bg-color: #faf9f6;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --success-color: #16a34a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffed01;
    color: #1f2937;
    text-align: center;
    padding: 12px 16px;
    z-index: 51;
    font-weight: 600;
    font-size: 14px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgb(255 237 1 / 22%);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo {
    width: auto;
    height: auto;
    color: var(--primary-color);
}

.nav-logo img{
    width: 70%;
}

.brand-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    /* background-color: var(--white); */
    background-color: #ffed01b3;
    color: var(--text-gray);
    border: 2px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #8d8305;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-outline:hover {
    opacity: 0.9;
}

.btn-login {
    background-color: transparent;
    color: var(--text-gray);
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-login:hover {
    opacity: 0.7;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-block {
    width: 100%;
    margin-top: 16px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero-section {
    margin-top: 64px;
    padding: 24px 0;
    /* background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.8) 100%); */
    background: linear-gradient(135deg, #ffed0175 0%, rgb(255 237 1 / 3%) 50%, rgba(255, 255, 1, 0.8) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-block;
    /* background-color: var(--primary-light); */
    background-color: #ffed01;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--text-dark);
}

.landing-header-social{
    font-size: 30px;
    text-decoration: none;
    color: #000;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-features {
    display: flex;
    gap: 32px;
    margin-top: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--success-color);
    flex-shrink: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.slider-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); */
    height: 500px;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;

}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background-color: white;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: #9b2cfa;
    stroke-width: 2;
}

.slider-btn-prev {
    left: 16px;
}

.slider-btn-next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background-color: white;
    width: 32px;
    border-radius: 4px;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.alert-notification {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.alert-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.alert-subtext {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 768px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    /* background-color: var(--bg-color); */
    background-color: #ffed0121;
}

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

.feature-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-dark);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.use-case-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: box-shadow 0.3s;
    text-align: center;
}

.use-case-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.use-case-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.use-case-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.use-case-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    /* background-color: var(--bg-color); */
    background-color: #ffed0117;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.product-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image {
    position: relative;
    height: 224px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.5s;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.product-icon {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    color: var(--white);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-info p {
    color: var(--text-gray);
    margin-bottom: 16px;
    font-size: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.current-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-dark);
}

.original-price {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
}

.discount {
    background-color: #dcfce7;
    color: var(--success-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* How It Works */
.how-it-works-section {
    padding: 80px 0;
    /* background-color: var(--bg-color); */
    background-color: #ffed011f;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffed011a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    font-weight: bold;
    color: var(--text-dark);
}

.step h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.testimonial-card {
    /* background-color: #f9fafb; */
    background-color: #ffed01a1;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.star-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    color: #facc15;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(155, 44, 250, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.author-role {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 80px 0;
}

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

.cta-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: 1px solid black;
}

.cta-buttons .btn-secondary:hover {
    background-color: #f3f4f6;
}

/* Footer */
.footer {
    background-color: #fbf8d8;
    color: #000000;
    padding: 48px 0;
    padding-bottom: 100px;
}

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

.footer-section h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
}

.footer-logo {
    /* width: 32px;
    height: 32px; */
    color: var(--primary-color);
}

.footer-section p {
    color: #000;
    line-height: 1.8;
    font-size: 14px;
}

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

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

.footer-section a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    opacity: 0.8;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--text-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #000000;
    font-size: 14px;
}

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

.social-links a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}


/* Sticky Footer Bar */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffed01;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 40;
    padding: 16px;
}

.sticky-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sticky-footer-text {
    flex: 1;
    min-width: 200px;
}

.sticky-footer-text p {
    margin: 0;
    color: #1f2937;
    font-weight: 600;
}

.highlight-price {
    color: #9b2cfa;
    font-weight: 700;
}

.sticky-footer-subtext {
    font-size: 12px !important;
    color: #4b5563 !important;
    margin-top: 4px !important;
}

.sticky-footer-btn {
    padding: 3px 24px !important;
    font-size: 20px !important;
    white-space: nowrap;
}

.btn{
    text-decoration: none;
}

.quantity {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0 5px;
  text-align: center;
}

.qty-btn {
  width: 30px;
  height: 30px;
  background-color: #f0f0f0;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.qty-btn:hover {
  background-color: #e0e0e0;
}

.qty-btn:focus {
  outline: none;
}

[disabled]{
  opacity: 0.5;
pointer-events: none;
}

.mobile_input_group{display: flex;}
.mobile_input_group select{
  width:30% !important;
  height: 56px;
  background-color: #F5F5F7;
  border:none;
}
.mobile_input_group input{
  width:70% !important;
  height: 100%;
}
.text-primary{
  color: #9b2cfa !important;
}
.text-end{text-align: right !important;}

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

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-image {
        order: -1;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

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

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons button {
        width: 100%;
    }

    .footer-content {
        gap: 24px;
    }

    .sticky-footer {
        padding: 12px;
    }

    .sticky-footer-content {
        flex-direction: column;
        gap: 12px;
    }

    .sticky-footer-text {
        width: 100%;
    }

    .sticky-footer-btn {
        width: 100%;
        text-align:center
    }
}
