/* Core Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Disable scrolling on html and body */
}
body {
    font-family: 'Poppins', sans-serif; /* Default font for body */
    background: #0b1b48; /* Set body background to match hero section */
    color: #1a1a1a;
    touch-action: pan-x pan-y; /* Allows scrolling but not pinching to zoom */
    -webkit-user-scalable: no; /* For Safari */
    user-scalable: no; /* Standard */
}
.content-wrapper {
    position: fixed; /* Fixes the wrapper in place */
    top: 70px; /* Matches the navbar height */
    left: 0;
    width: 100%; /* Full width */
    height: calc(100vh - 70px); /* Full height minus navbar height */
    overflow-y: auto; /* Allows internal vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling on wrapper itself */
    overscroll-behavior-y: none; /* Prevents bounce effect */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    background: #0b1b48; /* Match hero section background to avoid white space */
}
/* Apply Montserrat to headings for a bold, modern look like the logo */
h1, h2, h3, .navbar-brand, .navbar .nav-link, .dropdown-item, .btn {
    font-family: 'Montserrat', sans-serif; /* Matches logo style */
}
.navbar {
    background: #0b1b48;
    padding: 1rem 0;
    position: fixed; /* Changed to fixed to stay in place */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    z-index: 1000;
    box-sizing: border-box;
    overscroll-behavior: none; /* Prevents navbar from being affected */
    -webkit-transform: translateZ(0); /* Forces hardware acceleration */
    transform: translateZ(0); /* Ensures fixed positioning sticks */
}
.navbar .navbar-brand img {
    width: 120px;
    transition: transform 0.3s ease;
    max-width: 100%; /* Prevents overflow */
}
.navbar .navbar-brand:hover img {
    transform: scale(1.05);
}
.navbar .nav-link {
    color: #fff;
    font-weight: 600; /* Bold like logo */
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}
.navbar .nav-link:hover {
    color: #26b883;
    transform: translateY(-2px);
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #26b883;
    transition: width 0.3s ease;
}
.navbar .nav-link:hover::after {
    width: 100%;
}
.navbar .dropdown-menu {
    background: #0b1b48;
    border: none;
    border-radius: 0;
}
.navbar .dropdown-item {
    color: #fff;
    padding: 10px 20px;
    font-weight: 600; /* Bold like logo */
    transition: background 0.3s ease, color 0.3s ease;
}
.navbar .dropdown-item:hover {
    background: #26b883;
    color: #fff;
}
.navbar-toggler {
    border: none;
    color: #fff;
}
.navbar-toggler:focus {
    box-shadow: none;
}
/* Mobile adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    .navbar .navbar-brand img {
        width: 100px; /* Smaller logo on mobile */
    }
    .navbar-collapse {
        background: #0b1b48;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 999;
    }
    .content-wrapper {
        top: 60px; /* Adjusted for smaller navbar */
        height: calc(100vh - 60px); /* Adjust height for mobile */
    }
}
.hero-section {
    background: #0b1b48;
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 103%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="rgba(38,184,131,0.1)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat bottom;
}
.hero-section canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-section .content {
    position: relative;
    z-index: 2;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.hero-section .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.hero-section .btn-primary {
    background: #fff;
    color: #0b1b48;
    border: none;
}
.hero-section .btn-primary:hover {
    background: #e0e0e0;
}
.benefits {
    padding: 60px 0;
    background: #fff;
}
.benefits h2 {
    color: #0b1b48;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.benefit-card {
    background: linear-gradient(135deg, rgba(11, 27, 72, 0.1), rgba(38, 184, 131, 0.1));
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.benefit-card i {
    font-size: 2.5rem;
    color: #0b1b48;
    margin-bottom: 20px;
}
.benefit-card h3 {
    color: #0b1b48;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.benefit-card p {
    color: #333;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif; /* Retain for readability */
}
.trusted-companies {
    padding: 40px 0;
    background: #fff; /* Reverted to white background */
}
.trusted-companies p {
    color: #151f39; /* Reverted to original dark text color */
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.trusted-companies .staggered-logos {
    display: flex;
    flex-wrap: wrap; /* Reverted to wrap for centered layout */
    justify-content: center; /* Reverted to center the logos */
    gap: 20px;
}
.trusted-companies img {
    max-height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.trusted-companies img:hover {
    opacity: 1;
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .trusted-companies .staggered-logos {
        flex-direction: column; /* Reverted to column on mobile */
        align-items: center;
        gap: 15px;
    }
    .trusted-companies img {
        transform: none !important;
        max-height: 30px;
    }
}
.testimonials {
    padding: 60px 0;
    background: #f2f4f7;
}
.testimonials h2 {
    color: #0b1b48;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    padding: 30px;
    margin: 0 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    text-align: center;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.testimonial-card p {
    font-size: 1rem;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif; /* Retain for readability */
}
.testimonial-card .author {
    color: #0b1b48;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.testimonial-card .quote-icon {
    color: #26b883;
    font-size: 2rem;
    margin-bottom: 15px;
}
.testimonial-card .stars {
    color: #26b883;
    font-size: 1rem;
    margin-top: 10px;
}
.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}
.testimonial-slider {
    display: flex;
    justify-content: center; /* Reverted to center for original layout */
    gap: 30px;
    overflow-x: auto; /* Keep horizontal scrolling for testimonials */
    overflow-y: hidden; /* Prevent vertical scrolling in the slider */
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth; /* Smooth horizontal scrolling */
    width: 100%; /* Ensure it takes full width */
}
.testimonial-slider .testimonial-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
}
.testimonial-controls {
    text-align: center;
    margin-top: 20px;
}
.testimonial-controls button {
    background: #0b1b48;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin: 0 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.testimonial-controls button:hover {
    background: #26b883;
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .testimonial-slider {
        gap: 15px;
    }
    .testimonial-card {
        margin: 0 5px;
        max-width: 300px;
    }
    .testimonial-controls button {
        width: 30px;
        height: 30px;
    }
}
/* Stylish Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f2f4f7 0%, #e8f0fe 100%);
    position: relative;
    overflow: hidden;
}
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="rgba(38,184,131,0.05)" fill-opacity="1" d="M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,181.3C672,192,768,160,864,138.7C960,117,1056,107,1152,122.7C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat bottom;
    z-index: 0;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(38, 184, 131, 0.2);
}
.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #26b883, #0b1b48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}
.service-card:hover .service-icon-wrapper {
    transform: rotate(360deg);
}
.service-card i {
    font-size: 2.2rem;
    color: #fff;
}
.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0b1b48;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.service-card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif; /* Retain for readability */
}
.btn-service {
    background: linear-gradient(90deg, #26b883, #0b1b48);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.btn-service:hover {
    background: linear-gradient(90deg, #0b1b48, #26b883);
    color: #fff;
    transform: translateY(-2px);
}

.system-bg {
    background: linear-gradient(90deg, #26b883, #0b1b48);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.system-bg:hover {
    background: linear-gradient(90deg, #0b1b48, #26b883);
    color: #fff;
    transform: translateY(-2px);
}

.btn-yellow {
    background: linear-gradient(90deg, #26b883, #0b1b48);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.btn-yellow:hover {
    background: linear-gradient(90deg, #0b1b48, #26b883);
    color: #fff;
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
}
.how-it-works-section h2 {
    color: #0b1b48;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.how-it-works-section h2 span {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #26b883, #0b1b48);
    border-radius: 2px;
}
.step-card {
    position: relative;
    padding: 30px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(38, 184, 131, 0.15);
}
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #26b883;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0b1b48;
    margin: 20px 0 15px;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.step-card p {
    color: #666;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif; /* Retain for readability */
}
/* Footer Styles */
.footer {
    background: #0b1b48;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 40px;
}
.footer .footer-logo img {
    width: 120px;
    margin-bottom: 20px;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #26b883;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif; /* Retain for readability */
}
.footer a:hover {
    color: #26b883;
}
.footer .social-list {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.footer .social-list a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer .social-list a:hover {
    color: #26b883;
    transform: scale(1.1);
}
.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif; /* Retain for readability */
}
.footer .newsletter {
    margin-top: 20px;
}
.footer .newsletter input {
    border-radius: 50px;
    border: 1px solid #fff;
    padding: 10px 15px;
    width: 100%;
    background: transparent;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif; /* Retain for readability */
}
.footer .newsletter input:focus {
    outline: none;
    border-color: #26b883;
    box-shadow: 0 0 5px rgba(38, 184, 131, 0.5);
}
.footer .newsletter button {
    background: #26b883;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    width: 100%;
    transition: background 0.3s ease, transform 0.3s ease;
    font-family: 'Montserrat', sans-serif; /* Matches logo */
}
.footer .newsletter button:hover {
    background: #151f39;
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .footer .row > div {
        margin-bottom: 30px;
    }
    .footer .social-list {
        justify-content: center;
    }
    .footer .newsletter input, .footer .newsletter button {
        width: 100%;
    }
}



/* Blog Categories (Scrollable) */
.blog-categories {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    top: 70px;
    z-index: 900;
    overflow-x: auto;
    white-space: nowrap;
}
.blog-categories ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 20px;
    align-items: center;
}
.blog-categories ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}
.blog-categories ul li.active {
    background: #0b1b48;
    color: #fff;
}
.blog-categories ul li:hover {
    background: #26b883;
    color: #fff;
}
.blog-categories::-webkit-scrollbar {
    height: 6px;
}
.blog-categories::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.blog-categories::-webkit-scrollbar-thumb {
    background: #26b883;
    border-radius: 3px;
}
.blog-categories::-webkit-scrollbar-thumb:hover {
    background: #0b1b48;
}

/* Blog Posts Section */
/* Blog Posts Section */
.blog-posts {
    padding: 60px 0;
    background: #f5f7fa;
    display: flex;
    flex-wrap: wrap;
    min-height: 100%; /* Ensure it takes full available height */
    position: relative; /* Provide context for absolute positioning if needed */
}

.blog-main {
    flex: 3;
    min-width: 0;
    padding-right: 30px; /* Space for the ad section */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card-content {
    padding: 20px;
}

.blog-card-content .category {
    font-size: 0.9rem;
    font-weight: 600;
    color: #26b883;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-card-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0b1b48;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.blog-card-content h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: #26b883;
}

.blog-card-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.blog-card-content .date {
    font-size: 0.9rem;
    color: #999;
    font-family: 'Poppins', sans-serif;
}

/* Border with Matching Background Color */
.blog-card.blue {
    border: 4px solid #0b1b48;
}

.blog-card.green {
    border: 4px solid #26b883;
}

.blog-card.gradient {
    border: 4px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #26b883, #0b1b48) border-box;
}

@media (max-width: 768px) {
    .blog-main {
        flex: 100%;
        padding-right: 0;
        order: 2;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-card img {
        height: 180px;
    }
    .blog-card-content h3 {
        font-size: 1.4rem;
    }
}

/* Ad Section (Floating on Right) */
.ad-section {
    flex: 1;
    min-width: 300px; /* Fixed minimum width for the ad section */
    padding-left: 30px;
    position: sticky; /* Stick to the viewport while scrolling within context */
    top: 120px; /* Adjusted to account for navbar and categories */
    height: fit-content;
    display: block; /* Ensure it’s visible */
    align-self: flex-start; /* Align to the top of the flex container */
    background: #fff; /* Optional: Match blog card background for consistency */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* Optional: Add shadow for floating effect */
    border-radius: 15px; /* Match blog card style */
    padding: 15px; /* Inner padding for content */
    z-index: 800; /* Ensure it stays above other content */
}

.ad {
    width: 100%;
    height: 250px;
    background: #ddd;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.ad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .ad-section {
        flex: 100%;
        position: static; /* Remove sticky on mobile */
        min-width: auto; /* Reset width on mobile */
        padding-left: 0;
        order: 1;
        margin-bottom: 30px;
        box-shadow: none; /* Remove shadow on mobile */
    }
    .ad {
        height: 150px;
    }
}


/* Pagination */
.pagination {
    margin-top: 30px;
}

.page-link {
    color: #0b1b48;
    border: 1px solid #26b883;
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    background: #26b883;
    border-color: #26b883;
    color: #fff;
}

.page-link:hover {
    background: #26b883;
    color: #fff;
    border-color: #26b883;
}

/* Pricing Flyer Section */
.pricing-flyer {
    padding: 80px 0;
    background: #f5f7fa; /* Light gray from website */
    text-align: center;
}

.pricing-flyer .flyer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #0b1b48;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.pricing-flyer .flyer-title span {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #26b883, #0b1b48);
    border-radius: 2px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Responsive wrapping */
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(11, 27, 72, 0.06);
    width: 300px; /* Fixed width for consistency */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    padding-bottom: 0.9px; /* Space for button */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(38, 184, 131, 0.15);
}

.pricing-header {
    background: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(135deg, #26b883, #0b1b48);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 0;
}

.pricing-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #0b1b48;
    margin: 0;
    position: relative;
    z-index: 1;
}

.pricing-header .price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #0b1b48;
    margin: 10px 0 5px;
    position: relative;
    z-index: 1;
}

.pricing-header .subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    position: relative;
    z-index: 1;
}

.pricing-card .features {
    list-style: none;
    padding: 20px;
    margin: 0;
    background: #f9fafb;
    min-height: 150px; /* Consistent height */
}

.pricing-card .features li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.pricing-card .features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #26b883;
    font-weight: bold;
}

.pricing-card .pricing-btn {
    display: block;
    background: linear-gradient(90deg, #26b883, #0b1b48);
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 0 0 15px 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pricing-card .pricing-btn:hover {
    background: linear-gradient(90deg, #0b1b48, #26b883);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
        max-width: 300px;
    }
    .pricing-flyer .flyer-title {
        font-size: 2rem;
    }
}


