.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 0;
    max-width: 1200px;
    width: 100%;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
    color: #fff;
    margin: 0 auto 30px;
    max-width: 650px;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #fff;
    color: #005F73;
}

.btn-primary:hover {
    background: #005F73;
    color:#fff;
    transform: translateY(-2px);
}

.btn-primary:hover svg path{
    fill: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    color: #005F73;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.arrow-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

.sub-text {
    color: #DDD6FE;
    font-size: 15px;
    font-weight: 400;
}
.features-section {
    padding: 80px 0px;
    background: #ffffff;
}

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

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1f2937;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 20px 0 0;
}

.feature-card {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 2px 0px #0000000D;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #C8DFE4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.feature-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 10px 0 0;
}

.pricing-section {
    padding: 80px 0px;
    background: #f0f4f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
    margin: 25px 0 0;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border: 3px solid #005f73;
    transform: scale(0.95) translateY(30px);
}

.pricing-card.featured:hover {
    transform: scale(1);
}

#popupOverlay{
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background:rgba(0,0,0,0.4);
    z-index:999;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #005f73;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.plan-icon {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.plan-icon.basic {
    background: #DCFCE7;
    color:#16A34A
}

.plan-icon.essential {
    background: #DBEAFE;
    color: #2563eb;
}

.plan-icon.professional {
    background: #F3E8ff;
    color: #9333EA;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

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

.price {
    font-size: 48px;
    font-weight: 800;
    color: #1f2937;
}

.price-period {
    font-size: 18px;
    color: #6b7280;
    font-weight: 500;
}

.plan-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 15px 0;
    text-align: center;
    line-height: 1.5;
}

.features-list {
    list-style: none;
    margin: 0 0 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #374151;
}

.feature-icon {
    color: #005F73;
    font-size: 20px;
    font-weight: 900;
    flex-shrink: 0;
}

.plan-cta-button {
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.plan-cta-button.outline {
    background: #ffffff;
    border: 2px solid #D1D5DB;
    color: #000000;
}

.plan-cta-button.outline:hover {
    background: #005F73;
    color: #fff;
    border: 2px solid #005F73;
}

.plan-cta-button.solid {
    background: #005f73;
    border: 2px solid #005f73;
    color: #fff;
}

.plan-cta-button.solid:hover {
    background: #ffffff;
    border-color: #D1D5DB;
    color: #000000;
}
.cta-section {
    padding: 80px 20px;
    background: #005F73 !important;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: #ddd6fe;
    line-height: 1.6;
    margin: 15px auto 32px;
    max-width: 600px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    background: #fff;
    border: 2px solid #fff;
    color: #0d7c7a;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.cta-button:hover {
    background: #005F73;
    transform: translateY(-2px);
    color:#ffffff;
}

.cta-button:hover svg path{
    fill: #ffffff;
}

.arrow-icon {
    transition: transform 0.3s ease;
    display: flex;
}

.cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

.info-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    color:#ddd6fe;
}

.info-icon {
    width: 18px;
    height: 18px;
    /* background: #ddd6fe; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .hero-description {
        font-size: 18px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-title {
        font-size: 40px;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .section-title {
        font-size: 40px;
    }

    
}

@media (max-width: 768px) {

    .hero-content{
        padding: 50px 20px;
    }

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

    .hero-description {
        font-size: 16px;
    }

    .badge {
        font-size: 13px;
        padding: 8px 20px;
    }

    .button-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .features-section {
        padding: 60px 0px;
    }

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

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 30px 25px;
    }
    .pricing-section {
        padding: 60px 0px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .cta-section {
        padding: 60px 20px;
    }

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

    .cta-description {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .info-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .badge {
        font-size: 12px;
        padding: 7px 16px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .sub-text {
        font-size: 14px;
    }
    .features-section {
        padding: 50px 15px;
    }

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

    .section-description {
        font-size: 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
    }
    .pricing-section {
        padding: 50px 15px;
    }

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

    .pricing-card {
        padding: 32px 24px;
    }

    .price {
        font-size: 40px;
    }

    .plan-name {
        font-size: 20px;
    }

    .feature-item {
        font-size: 14px;
    }
    .cta-section {
        padding: 50px 20px;
    }

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

    .cta-description {
        font-size: 15px;
        padding: 0 10px;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .info-text {
        flex-direction: column;
        gap: 6px;
    }
}