/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #76273B;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #76273B;
    color: #fff;
    border: 2px solid #76273B;
}
/* Button row styling */
.button-row td {
    padding: 25px 15px;
    border-bottom: none;
}

.button-row .btn {
    display: inline-block;
    width: 90%;
    padding: 12px 15px;
}

/* Optional - highlight the Business plan as recommended */
.plan-header:nth-child(3) {
    position: relative;
}

.plan-header:nth-child(3)::before {
    
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #76273B;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 15px;
    border-radius: 15px;
}
/* .btn-primary:hover {
    background-color: #3a1125;
} */

.nav-links .btn-primary {
    color: white !important; /* Force white text and override any other styles */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Create the ripple effect on hover */
.nav-links .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.nav-links .btn-primary:hover::after {
    width: 250%;
    height: 250%;
}

/* Make sure the button doesn't change color on hover */
.nav-links .btn-primary:hover {
    color: white !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #76273B;
    border: 2px solid #76273B;
}

.btn-secondary:hover {
    background-color: rgba(84, 23, 52, 0.1);
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo img {
    height: 120px;
    width: 120px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 50px;
}

.nav-links a {
    font-weight: 580;
    transition: color 0.3s ease;
    color: #5B5B5B;
}

.nav-links a:hover {
    color: #76273B;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #f8f9fa 65%, #2d2638 40%);
    padding-bottom: 120px; /* Increase padding to accommodate the image overlap */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 0;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #76273B;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
}

.hero-image {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* How it works section */
.how-it-works {
    background-color: #3c1127;
    color: #fff;
    
    margin-top: -20px; /* Pull up slightly to ensure continuity */
}

.how-it-works .section-title {
    color: #fff;
    text-align: left; 
    margin-left: 15px;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-title {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.step-description {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.step-image {
    margin-top: auto;
    border-radius: 8px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 991px) {
    .steps {
        flex-direction: column;
    }
    
    .step-card {
        margin-bottom: 20px;
    }
}

/* Why Choose section */
.why-choose {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.brand-highlight {
    color: #76273B;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    flex: 0 0 80px;
    margin-right: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-content {
    flex: 1;
}

.feature-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.divider {
    height: 2px;
    background-color: #000;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

/* Testimonials section */
.testimonials {
    background-color: #fff;
    padding: 80px 0;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.testimonials-title-container {
    max-width: 70%;
}

.testimonials-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #76273B;
    margin-bottom: 20px;
    text-align: left;
}

.testimonials-subtitle {
    font-size: 16px;
    line-height: 1.6;
    max-width: 90%;
}

.stars-decoration {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.stars-image {
    width: 150px;
    height: auto;
}

.testimonials-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonials-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.testimonial-card {
    flex: 0 0 auto;
    width: calc(33.33% - 20px);
    min-width: 300px;
    background-color: #FCF5F3;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    top: 0;
}

.testimonial-card:hover {
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
    background-color: #fff;
    
}



.rating {
    margin-bottom: 15px;
}

.star {
    color: #76273B;
    font-size: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    font-size: 16px;
}

.testimonial-date {
    color: #777;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testimonials-header {
        flex-direction: column;
    }
    
    .testimonials-title-container {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .stars-decoration {
        justify-content: flex-start;
    }
    
    .testimonial-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonial-card {
        width: 100%;
    }
}

/* Pricing table styles */
.pricing {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.pricing-comparison {
    margin: 50px 0 30px;
    overflow-x: auto;
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #e0e0e0;
    background-color: #fff;
}

.feature-table th, 
.feature-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.feature-header {
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    padding-left: 20px;
}

.plan-header {
    padding: 20px 15px;
    min-width: 200px;
}

.plan-type {
    font-weight: 700;
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
}

.plan-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-price span {
    font-size: 16px;
}

.plan-billing {
    font-size: 12px;
    line-height: 1.5;
    color: #555;
}

.feature-name {
    text-align: left;
    font-weight: 600;
    padding-left: 20px;
}

.has-feature {
    font-size: 20px;
    color: #76273B;
}

/* Add a hover effect to rows */
.feature-table tbody tr:hover {
    background-color: #f9f9f9;
}

.pricing-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.pricing-buttons .btn {
    min-width: 200px;
}

/* Make the table responsive */
@media (max-width: 991px) {
    .pricing-comparison {
        margin: 30px -15px;
        width: calc(100% + 30px);
    }
    
    .feature-table {
        width: 900px; /* Fixed width for smaller screens */
    }
}

@media (max-width: 576px) {
    .pricing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-buttons .btn {
        width: 80%;
    }
}


/* Call to action section with two background images */
.cta {
    background-color: #76273B;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
}

.shape-left {
    height: 100%;
    left: 0;
    top: 0;
    max-width: 40%;
    object-fit: cover;
}

.shape-right {
    height: 100%;
    right: 0;
    top: 0;
    max-width: 40%;
    object-fit: cover;
}

.container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.brand-highlight {
    color: #e496ae; /* Lighter shade of your brand color */
}

.cta-text {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #2d2638;
    color: #fff;
    font-weight: 600;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    border: 2px solid #2d2638;
}

.cta-button:hover {
    background-color: transparent;
    border-color: #fff;
    transform: translateY(-3px);
}

.arrow {
    display: inline-block;
    margin-left: 5px;
    font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .shape-left, .shape-right {
        opacity: 0.4; /* Make the shapes more subtle on mobile */
    }
}
/* Contact section */
.contact {
    display: flex;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #76273B;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 15px;
    font-size: 20px;
    color: #76273B;
    min-width: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #76273B;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e07a95; /* Lighter version of your brand color */
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

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

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.social-icon img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-icon:hover img {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-links ul {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Responsive styles */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 30px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .benefit {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 20px;
    }
    
    .pricing-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .container {
        width: 95%;
    }
}
.coming-soon-btn {
    background-color: #f2f2f2;
    color: #555;
    border: 2px solid #ccc;
    cursor: default;
}

.coming-soon-btn:hover {
    background-color: #f2f2f2;
    transform: none;
    box-shadow: none;
}