:root {
    --primary: #00d4b1;
    /* Vibrant teal */
    --primary-dark: #00b99c;
    --secondary: #2c6bed;
    /* Bright blue */
    --secondary-dark: #1856db;
    --accent: #ffae42;
    /* Warm amber */
    --accent-dark: #f09b29;
    --highlight: #ff6b6b;
    /* Attention-grabbing coral */
    --highlight-dark: #e55252;
    /* --light: #f5fdff;      Crisp light background */
    --light: #e4fffb;
    /* Crisp light background */
    --light-alt: #e8f7ff;
    /* Alternate light background */
    --text: #293241;
    /* Dark blue-gray */
    --text-light: #4a5568;
    --text-white: #ffffff;
    --border: #e2e8f0;
    --success: #48bb78;
    /* Green */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-round: 12px;
    --transition: all 0.3s ease;
    /*--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;*/
    --font-primary: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-round);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Header */
.header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary);
}

.logo svg {
    width: 2.5rem;
    height: 2.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav a.btn.btn-primary {
    padding: 0.5rem 1rem;
}
.hero-text a.btn {
    padding: 0.5rem 1.5rem;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    width: 34px;
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(120deg, #f0fdff 0%, #e0fbfa 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -5%;
    right: -5%;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 177, 0.2) 0%, rgba(0, 212, 177, 0) 70%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 107, 237, 0.2) 0%, rgba(44, 107, 237, 0) 70%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    min-height: 388px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    /*font-size: 3.5rem;*/
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-md);
    /* box-shadow: var(--shadow-lg); */
    transform: perspective(1000px) rotateY(-5deg);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: white;
    background-image: radial-gradient(var(--light-alt) 1px, transparent 1px);
    background-size: 20px 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 212, 177, 0.1);
    color: var(--primary);
    border-radius: var(--radius-round);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 500;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.feature-card {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.feature-card a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary) 40%, var(--secondary) 100%);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-desc {
    color: var(--text-light);
    font-size: 1rem;
    flex-grow: 1;
}

/* Feature Showcase */
.feature-showcase {
    /* margin-bottom: 6rem; */
}

.showcase-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.showcase-container:nth-child(odd) {
    flex-direction: row-reverse;
}

.feature-showcase .showcase-container:last-child {
    margin-bottom: 0;
}

.showcase-container.flex-col-rev{
    flex-direction: column-reverse;
}

.showcase-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.showcase-image img {
    /* width: 100%; */
    /*border-radius: var(--radius-md);*/
    /* box-shadow: var(--shadow-lg); */
    max-height: 500px;
    width: auto;
    max-width: 100%;
}

.showcase-content {
    flex: 1;
}

.showcase-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 212, 177, 0.1);
    color: var(--primary);
    border-radius: var(--radius-round);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.showcase-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.showcase-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.showcase-list {
    list-style: none;
    margin-bottom: 2rem;
}

.showcase-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.showcase-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    /* background-color: var(--light); */
    background-color: #eef5ff;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(9, 179, 132, 0.08);
    top: -200px;
    right: -100px;
}

.pricing::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(0, 117, 255, 0.08);
    bottom: -100px;
    left: -50px;
}

/* Tab Controls */
.pricing-tabs {
    display: flex;
    justify-content: center;
    background-color: #E2E8F0;
    border-radius: 50px;
    max-width: 400px;
    margin: 30px auto;
    padding: 5px;
    position: relative;
    z-index: 1;
}

.pricing-tab {
    padding: 10px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
    text-align: center;
    flex: 1;
}

.pricing-tab.active {
    background-color: var(--primary);
    color: white;
}

/* Pricing Cards */
.pricing-content {
    display: none;
}

.pricing-content.active {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
    border: 2px solid var(--primary);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.plan-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0 0 12px 12px;
}

.pricing-header h3 {
    margin-top: 25px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
}

.pricing-amount {
    margin-top: 15px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
}

.duration {
    font-size: 16px;
    color: var(--light-text);
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    color: var(--light-text);
}

.feature-included::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.feature-excluded::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.pricing-footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.pricing-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--light-text);
}

/* Gradient backgrounds for pricing cards */
.basic-gradient {
    /* background: linear-gradient(135deg, #f0f7ff 0%, #e6fffa 100%); */
    background: linear-gradient(135deg, #d2f4fb 0%, #bcdff4 100%);
}

.business-gradient {
    background: linear-gradient(135deg, #0075FF 0%, #0052cc 100%);
    color: white;
}

.premium-gradient {
    background: linear-gradient(135deg, #09B384 0%, #06805e 100%);
    color: white;
}

.test-gradient {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6fffa 100%);
}

/* For cards with a dark background */
.dark-bg h3,
.dark-bg .price {
    color: white;
}

.dark-bg .duration {
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 177, 0.1) 0%, rgba(0, 212, 177, 0) 70%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: -0.5rem;
    font-size: 5rem;
    color: rgba(0, 212, 177, 0.1);
    font-family: Georgia, serif;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    display: none;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-desc {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-white {
    background-color: white;
    color: var(--primary);
}

.btn-white:hover {
    background-color: var(--light);
    color: var(--primary-dark);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--text);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--primary);
}

.footer-about {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 3rem;
    height: 0.25rem;
    background-color: var(--primary);
    border-radius: var(--radius-round);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-round);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.875rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 0.75rem 1rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-round);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-light);
}

.faq-item.active .faq-question {
    background-color: rgba(0, 212, 177, 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: white;
}

.contact-container {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    background-color: rgba(0, 212, 177, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-form {
    flex: 1;
    /*background-color: var(--light);*/
    background-color: #bcdcd7;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 212, 177, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title,
    .cta-title {
        font-size: 2rem;
    }

    .showcase-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        flex-direction: column;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a:hover::after {
        width: 0 !important;
    }

    .hero-content,
    .showcase-container,
    .showcase-container:nth-child(even),
    .contact-container {
        flex-direction: column !important;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title,
    .cta-title {
        font-size: 1.75rem;
    }

    .hero-image {
        order: -1;
    }

    .btn-group,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .hero-title,
    .section-title,
    .cta-title {
        font-size: 1.5rem;
    }

    .hero-subtitle,
    .section-desc,
    .cta-desc {
        font-size: 1rem;
    }

    .pricing-tabs {
        /* flex-direction: column; */
        gap: 0.5rem;
        /* background: none;
                box-shadow: none; */
    }

    .pricing-tab {
        /* background-color: white;
                box-shadow: var(--shadow-sm); */
    }
}

@media (max-width: 480px) {
    nav.nav a.btn.btn-primary {
        display: none;
    }
}


/* Showcase Badge */
.showcase-badge {
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    line-height: 1;
    width: max-content;
    padding: 4px 16px 4px 4px;
    border-radius: 20px;
    gap: 8px;
    color: #fff;
    position: absolute;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.showcase-badge .badge-icon svg {
    height: 16px;
}

.showcase-badge .badge-icon {
    background: #fff;
    min-width: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}



.showcase-badge:nth-child(1) {
    /* top: 40px;
            left: 50px; */
    background-color: #781e8a;
    /* Indigo */
}

.showcase-badge:nth-child(1) .badge-icon svg path {
    fill: #781e8a;
}

.showcase-badge:nth-child(2) {
    /* top: 60px;
            right: 70px; */
    background-color: #065f46;
    /* Emerald */
}

.showcase-badge:nth-child(2) .badge-icon svg path {
    fill: #065f46;
}

.showcase-badge:nth-child(3) {
    /* top: 120px;
            left: 90px; */
    background-color: #7c2d12;
    /* Deep Orange */
}

.showcase-badge:nth-child(3) .badge-icon svg path {
    fill: #7c2d12;
}

.showcase-badge:nth-child(4) {
    /* bottom: 110px;
            right: 100px; */
    background-color: #4b5563;
    /* Cool Gray */
}

.showcase-badge:nth-child(4) .badge-icon svg path {
    fill: #4b5563;
}

.showcase-badge:nth-child(5) {
    /* top: 210px;
            right: 30px; */
    background-color: #9a3412;
    /* Burnt Orange */
}

.showcase-badge:nth-child(5) .badge-icon svg path {
    fill: #9a3412;
}

.showcase-badge:nth-child(6) {
    /* bottom: 30px;
            left: 130px; */
    background-color: #0f172a;
    /* Dark Navy */
}

.showcase-badge:nth-child(6) .badge-icon svg path {
    fill: #0f172a;
}

.showcase-badge:nth-child(7) {
    /* bottom: 180px;
            left: 20px; */
    background-color: #1e293b;
    /* Slate Blue-Gray */
}

.showcase-badge:nth-child(7) .badge-icon svg path {
    fill: #1e293b;
}

.showcase-badge:nth-child(8) {
    /* top: 120px;
            right: 150px; */
    background-color: #78350f;
    /* Deep Amber */
}

.showcase-badge:nth-child(8) .badge-icon svg path {
    fill: #78350f;
}

.showcase-badge:nth-child(9) {
    /* bottom: 70px;
            right: 40px; */
    background-color: #3f3f46;
    /* Zinc */
}

.showcase-badge:nth-child(9) .badge-icon svg path {
    fill: #3f3f46;
}

.showcase-badge:nth-child(10) {
    /* top: 140px;
            left: 180px; */
    background-color: #312e81;
    /* Deep Indigo */
}

.showcase-badge:nth-child(10) .badge-icon svg path {
    fill: #312e81;
}



.showcase-badge {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }
}

.showcase-content a.btn.btn-primary {
    display: none;
}

@media (max-width: 500px) {
    .showcase-badge {
        font-weight: 400;
        font-size: 14px;
    }

    .showcase-badge .badge-icon {
        min-width: 20px;
        min-height: 20px;
    }

    .showcase-badge .badge-icon svg {
        height: 14px;
    }
}
.d-none {
    display: none;
}
div#form-messages {
    background: #48bb78;
    margin-top: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: .5rem;
    justify-content: center;
    gap: .5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}
div#form-messages svg {
    width: 32px;
}
div#form-messages svg path.cls-1 {
    fill: #fff;
}
div#form-messages svg path.cls-2 {
    fill: #48bb78;
}
div#form-messages.d-none {
    display: none;
}
.feature-icon svg {
    height: 24px;
}
.feature-card:last-child svg {
    height: 32px;
}
/* Hide the original hamburger text */
.nav-links.active ~ .mobile-menu-btn {
    font-size: 0;
}

/* Show X icon when nav-links has active class */
.nav-links.active ~ .mobile-menu-btn::before {
    content: "✕";
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    font-weight: 700;
}

/* Optional: Add smooth transition */
.mobile-menu-btn {
    transition: transform 0.3s ease;
}

.nav-links.active ~ .mobile-menu-btn {
    transform: rotate(180deg);
}


/* Force the feature-grid-more to behave exactly like the main feature-grid */
.feature-grid-more {
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.feature-grid-more .feature-grid {
    /* display: none; */
    /* Use exact same grid setup as main feature-grid */
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    gap: 2rem;
    margin-bottom: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: start;
}

/* Force feature cards to respect grid constraints */
.feature-grid-more .feature-card {
    width: 100%;
    max-width: 350px;
    box-sizing: border-box !important;
    flex: none !important;
}

/* Show grid when expanded */
.feature-grid-more.expanded .feature-grid {
    display: grid !important;
    animation: fadeInUp 0.4s ease;
}

/* Base button styling for both show more and show less */
.feature-show-more-btn,
.feature-show-less-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    /* font-weight: 600; */
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 2rem;
    text-align: center;
    justify-content: center;
    width: 100%;
    /* padding: 0.75rem 1.5rem; */
    /* border: 2px solid var(--primary); */
    border-radius: var(--radius-round);
    background-color: transparent;
}


/* Show More button - visible by default */
.feature-show-more-btn {
    /* display: flex; */
    display: none;
}

.feature-show-more-btn::after {
    content: "▼";
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

/* Show Less button - hidden by default */
.feature-show-less-btn {
    display: none;
}

.feature-show-less-btn::after {
    content: "▲";
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

/* When expanded, hide Show More and show Show Less */
.feature-grid-more.expanded .feature-show-more-btn {
    display: none;
}

.feature-grid-more.expanded .feature-show-less-btn {
    display: flex;
    margin-top: 2rem;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .feature-grid-more .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-grid-more .feature-card {
        min-width: auto;
        max-width: none;
    }
}

.slotahead_icon_svg {
    height: 34px !important;
    width: auto !important;
}
.slotahead_icon_svg path.cls-1 {
    fill: #293241;
}
