:root {
    --primary-blue: #0b2f5f; /* Logo Blue */
    --accent-yellow: #ffc72c; /* Logo Yellow */
    --soft-bg: #f5f7fb;
    --light-blue: rgba(11, 47, 95, 0.08);
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    /* New Colors */
    --teal: #1ab39f;
    --orange: #ee7008;
    --green: #90bb23;
    --magenta: #c41162;
    --red: #fe444f;
    --dark-gray: #31364c;
    --yellow: #ffc72c;
}

body {
    padding-top: 80px;
    font-family: 'Open Sans', sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}


/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}


/* Base Colors and Typography */
.text-teal {
    color: #0b2f5f;
}

.blue {
    color: #0b2f5f;
}
.yellow{
    color:#ffc72c !important;
}
.orange{
color #ee7008 !important;
}
/* Buttons */
.btn-teal {
    background: var(--teal);
    color: #fff;
    padding: 12px 26px;
    border-radius: 14px;
    font-weight: 600;
}

.btn-teal:hover {
    background: var(--orange);
    color: #fff;
    animation: pulse 1s infinite;
}

.btn-outline {
    border: 1px solid #e5e7eb;
    padding: 12px 26px;
    border-radius: 14px;
    color: #1f2937;
    font-weight: 600;
}

.btn-outline:hover {
    background: #f8fafc;
}

.btn-package {
    width: 100%;
    background-color: #0b2f5f;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-package:hover {
    background-color: #3da89f;
    color: #fff;
}

.btn-success {
    background-color: #0b2f5f;
    border-color: #0b2f5f;
}

.btn-success:hover {
    background-color: #3da89f;
    border-color: #3da89f;
}

.cta-btn {
    background: var(--orange);
    color: #fff;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
}

.cta-btn:hover {
    background: var(--teal);
    color: #fff;
    animation: pulse 1s infinite;
}

.send-btn {
    background: var(--primary-blue);
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    font-weight: 600;
}

.send-btn:hover {
    background: var(--orange);
    color: #fff;
    animation: pulse 1s infinite;
}

.whatsapp-btn {
    background: var(--teal);
    color: #fff;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.whatsapp-btn:hover {
    background: var(--orange);
    color: #fff;
}

.contact-btn {
    background: #0b2f5f;
    color: #fff;
    padding: 14px 30px;
    border-radius: 14px;
    font-weight: 600;
}

.contact-btn:hover {
    background: #44a79c;
    color: #fff;
}

/* Navbar */
.hero-navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.hero-navbar.sticky {
    position: fixed;
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hero-navbar .nav-link {
    color: #1f2937;
    font-weight: 500;
}

@media (max-width: 991px) {
    .hero-navbar {
        background: #ffffff;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right,#797a7e70, #6c6b63a1),
        url('https://thenexsapien.in/assets/images/hero-bg.png') center right / cover no-repeat;
    padding: 160px 0 120px;
    min-height: 85vh;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #1f2937;
}

.hero-title span {
    color: #0b2f5f;
}

.hero-subtitle {
    font-size: 18px;
    color: #fff;
    margin-top: 15px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #fff;
}

.hero-img {
    max-width: 90%;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-section {
        padding: 130px 0 80px;
        text-align: center;
    }

    .hero-desc {
        margin: auto;
    }

    .hero-stats {
        justify-content: center;
    }
}

/* Icons and Cards */
.icon-box,
.service-icon,
.icon-circle {
    width: 55px;
    height: 55px;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto;
}

.icon-box:hover,
.service-icon:hover,
.icon-circle:hover {
    animation: pulse 1.5s infinite;
}

.service-icon {
    border-radius: 12px;
}


.why-icon {
	width: 50px;
	height: 50px;
	
	
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
.why-icon-color1{
    background-color: #F8BBD0;
    color: #c41162;
}
.why-icon-color2{
    background-color: #FEA1A7;
    color: #fe444f;
}
.why-icon-color3{
    background-color: #989AA5;
    color: #31364c;
}
.why-icon-color4{
    background-color: #C7DD91;
    color: #90bb23;
}
.why-icon-color5{
    background-color: #F6B783;
    color: #ee7008;
}
.why-icon-color6{
    background-color: #8cd9cf;
    color: #1ab39f;
}
/*
.why-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(196, 17, 98, 0.12);
    color: var(--magenta);
    border-radius: 14px;
    font-size: 22px;
}*/
/*
.approach-icon {
    width: 42px;
    height: 42px;
   	background: #0B3C6F;
    color: #fff;
    border-radius: 12px;
    display: flex;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 18px;
}
*/

.approach-icon {
	width: 42px;
	height: 42px;

	color: #fff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 18px;
    
}

/* About Section */
#about .card {
    transition: all 0.3s ease;
}

#about .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Services Section */
.service-list {
    padding-left: 18px;
    margin-top: 10px;
}

.service-list li {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 6px;
}

#services .card {
    transition: all 0.3s ease;
   
    border-radius: 18px;
}
#services .card-border-color1 { border:2px solid #ffc72c !important;}
#services .card-border-color2 { border:2px solid #0b2f5f !important;}
#services .card-border-color3 { border:2px solid #1ab39f !important;}
#services .card-border-color4 { border:2px solid #c41162 !important;}
#services .card-border-color5 { border:2px solid #ee7008 !important;}
#services .card-border-color6 { border:2px solid #90bb23 !important;}

#services .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    border:2px solid #ffc72c !important;
    border-radius: 5px
}

/* Pricing Section */
.pricing-card {
    border-radius: 16px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card .price {
    font-weight: 700;
    color: #000;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-list li {
    margin-bottom: 10px;
    color: #6c757d;
    font-size: 14px;
}

.pricing-card.featured {
    border: 2px solid #ffc72c;
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.06);
}

.package-card1 {
    background: #1ab39f;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.package-card2 {
    background: #ee7008;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.package-card3 {
    background: #90bb23;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    animation: scaleUp 0.3s ease-in-out forwards;
}

.package-card .price {
    font-size: 36px;
    font-weight: 700;
    color: #0b2f5f;
    margin: 12px 0;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.package-list li {
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
    color: #fff;
    font-size: 15px;
}

.package-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 600;
}

.package-card.featured {
    border: 2px solid #0b2f5f;
    transform: scale(1.04);
}

.package-card.featured:hover {
    transform: scale(1.07);
}

.popular-badge {
    position: absolute;
    top: 14px;
    left: 20px;
    background: #ffc72c;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Why Us Section */
.why-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    animation: scaleUp 0.3s ease-in-out forwards;
}

/* Testimonials Section */
.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-card:hover {
    animation: scaleUp 0.3s ease-in-out forwards;
}

.testimonial-text {
    color: #6b7c93;
    font-size: 15px;
    line-height: 1.7;
}

.stars i {
    color: var(--orange);
    margin-right: 3px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.custom-nav {
    position: static;
    width: 42px;
    height: 42px;
    border: 1px solid #dce5ec;
    border-radius: 50%;
    background: #fff;
    color: #333;
}

.custom-nav::after {
    font-size: 16px;
}

.swiper-slide {
    transition: opacity 0.5s ease;
}

.swiper-slide-active {
    opacity: 1;
    animation: fadeInUp 0.6s ease;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--teal));
    padding: 90px 15px;
}

.cta-badge {
    background: rgba(254, 68, 79, 0.25);
    color: var(--red);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
}

.cta-badge:hover {
    animation: pulse 1.5s infinite;
}

.cta-text {
    max-width: 750px;
    margin: auto;
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-features {
    margin-top: 20px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: 90px 15px;
    background: #f9fefe;
}

.contact-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(11, 47, 95, 0.08);
}

.contact-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(79, 183, 173, 0.15);
}

.form-label {
    font-weight: 500;
    font-size: 14px;
}

.form-control {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e5f2f1;
}

.form-control:focus {
    border-color: #0b2f5f;
    box-shadow: none;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-item i {
    width: 44px;
    height: 44px;
    background: #e7f6f4;
    color: #0b2f5f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.quick-item p {
    margin: 0;
    font-weight: 500;
}

.whatsapp-box {
    background: linear-gradient(135deg, var(--accent-yellow), var(--orange));
    padding: 30px;
    border-radius: 18px;
    color: #fff;
}

.whatsapp-box h5 i {
    margin-right: 6px;
}

.office-box {
    background: #e7f6f4;
    padding: 25px;
    border-radius: 16px;
    font-size: 14px;
}

/* Footer */
.site-footer {
    background: #ffffff;
    padding: 70px 15px 35px;
    font-size: 14px;
    color: #6b7c93;
}

.footer-logo {
    color: #0b2f5f;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-text {
    max-width: 300px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-divider {
    margin: 40px 0 20px;
    border-color: #e5f2f1;
}

.footer-bottom {
    font-size: 13px;
    color: #6b7c93;
}

.footer-bottom .heart {
    color: #ffc72c;
}

/* Founder Section */
.lovable-founder {
    padding: 110px 15px;
    background: #f5f7fb;
}

.founder-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow);
    background: #fff9c4;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.founder-title {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.25;
    margin-bottom: 22px;
}

.founder-title span {
    color: #0b2f5f;
}

.founder-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--dark-gray);
    margin-bottom: 18px;
}

.founder-card {
    background: #ffffff;
    padding: 42px 38px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(31, 41, 55, 0.08);
}

.founder-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.founder-points li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

.founder-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #0b2f5f;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .founder-title {
        font-size: 30px;
    }

    .founder-card {
        margin-top: 20px;
    }
}

/* Icon Cards */
.icon-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 18px 45px rgba(31, 41, 55, 0.08);
    transition: all 0.3s ease;
}

.icon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 65px rgba(31, 41, 55, 0.12);
}

.icon-card p {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .icon-card {
        padding: 26px 16px;
    }
}

/* Journey Section */
.journey-section {
    padding: 110px 15px;
    background: #ffffff;
}

.journey-title {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.journey-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
}

.journey-card {
    background: #f9fbfc;
    padding: 32px 28px;
    border-radius: 22px;
    height: 100%;
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.journey-card:hover {
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(31, 41, 55, 0.08);
    transform: translateY(-4px);
    animation: scaleUp 0.3s ease-in-out forwards;
    border: 1px solid var(--yellow);
}

.journey-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    text-align: center;
}

.journey-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
    text-align: center;
}

.journey-hope {
    font-size: 18px;
    font-weight: 500;
    color: var(--yellow);
}

@media (max-width: 991px) {
    .journey-title {
        font-size: 30px;
    }

    .journey-section {
        padding: 80px 15px;
    }
}

/* Approach Section */
.approach-section {
    padding: 110px 15px;
    background: #FFFDE7;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow);
    background: #fff9c4;
    padding: 6px 16px;
    border-radius: 999px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}

.section-title span {
    color: #0b2f5f;
}

.section-subtitle {
    max-width: 600px;
    margin: 10px auto 0;
    color: #6c757d;
}

.approach-card {
    background: #ffffff;
    padding: 34px 28px;
    border-radius: 22px;
    height: 100%;
    text-align: left;
    box-shadow: 0 18px 45px rgba(31, 41, 55, 0.08);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 65px rgba(31, 41, 55, 0.12);
    animation: scaleUp 0.3s ease-in-out forwards;
}

.approach-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6B7280;
    margin: 0;
}

@media (max-width: 991px) {
    .approach-section {
        padding: 80px 15px;
    }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: #0B3C6F;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(11, 60, 111, 0.35);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    background: #092f57;
    transform: translateY(-4px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    to {
        transform: scale(1.05);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

#about .card,
#services .card,
.journey-card,
.approach-card,
.why-card,
.package-card,
.testimonial-card {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
}

.card:hover {
    animation: scaleUp 0.3s ease-in-out forwards;
}

.service-icon-left {
  font-size: 46px;
  color: var(--primary-blue);
  line-height: 1;
  margin-top: 3px;
}

.service-content h6 {
  margin: 0;
}

.why-icon {
  font-size: 22px;
  line-height: 1;
}
    .plan-card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        position: relative;
    }
    .plan-header {
        color: white;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        padding: 15px 0;
        position: relative;
    }
    .plan-header::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid;
    }
    .features {
        list-style: none;
        padding: 20px;
    }
    .features li {
        margin-bottom: 10px;
        font-size: 16px;
    }
    .check {
        color: #28a745; /* Green */
    }
    .cross {
        color: #dc3545; /* Red */
    }
    .price {
        text-align: center;
        font-size: 32px;
        font-weight: bold;
        padding: 10px 0 20px 0;
    }
    /* Basic Plan */
    .basic .plan-header {
        background-color: #20c997; /* Teal */
    }
    .basic .plan-header::after {
        border-top-color: #20c997;
    }
    .basic .price {
        color: #20c997;
    }
    /* Standard Plan */
    .standard .plan-header {
        background-color: #0d6efd; /* Blue */
    }
    .standard .plan-header::after {
        border-top-color: #0d6efd;
    }
    .standard .price {
        color: #0d6efd;
    }
    /* Premium Plan */
    .premium .plan-header {
        background-color: #fd7e14; /* Orange */
    }
    .premium .plan-header::after {
        border-top-color: #fd7e14;
    }
    .premium .price {
        color: #fd7e14;
    }
    
    
    /* =============================
   PRICING SECTION
============================= */
.pricing-section {
  background: #f8f9fa;
}

.highlight {
  color: #f4b400;
}

/* Card */
.plan-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: all 0.35s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* Header */
.plan-header {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  padding: 18px 0;
  position: relative;
}

/* Arrow notch */
.plan-header::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid;
}

/* Features */
.features {
  list-style: none;
  padding: 30px 25px 15px;
  margin: 0;
}

.features li {
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check {
  color: #28a745;
  font-weight: 700;
}

.cross {
  color: #dc3545;
  font-weight: 700;
}
.pricing-section {
            padding: 50px 0; /* Additional padding for the section */
        }
        .pricing-card {
            border: none;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            /*max-width: 300px;  To mimic mobile-like width */
            margin: 0 auto;
        }
        .card-body {
            padding-top: 2rem; /* White space on top */
        }
        .plan-header {
            color: white;
            text-align: center;
            padding: 0.75rem;
            margin: 0.75rem -1.25rem 1.25rem -1.25rem; /* Extend to sides, space below */
        }
        .plan-header h3 {
            margin: 0;
            font-size: 1.5rem;
        }
        .price {
            text-align: center;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .list-group-item {
            border: none;
            padding: 10px 20px;
            display: flex;
            align-items: center;
        }
        .list-group-item i {
            color: #28a745; /* Green checkmark */
            margin-right: 10px;
        }
        .card-footer {
            text-align: center;
            padding: 20px;
            background-color: transparent;
            border: none;
        }
        .btn-buy {
            border-radius: 50px;
            padding: 10px 30px;
            font-weight: bold;
        }
        /* Custom colors */
        .basic-header {
            background-color: #fd7e14; /* Orange for Basic */
        }
        .btn-basic {
            background-color: #fd7e14;
            border: none;
        }
        .btn-basic:hover {
            background-color: #fd7e14;
            border: none;
        }
        .standard-header {
            background-color: #0dcaf0; /* Blue for Standard */
        }
        .btn-standard {
            background-color: #0dcaf0;
            border: none;
        }
        .btn-standard:hover {
            background-color: #0dcaf0;
            border: none;
        }
        .premium-header {
            background-color: #6f42c1; /* Purple for Premium */
        }
        .btn-premium {
            background-color: #6f42c1;
            border: none;
        }
        .btn-premium:hover {
            background-color: #6f42c1;
            border: none;
        }
.approach-icon {
  width: 40px;
  height: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

