



/* START: Index CTA Section CSS */
.index-cta-section {
    background: linear-gradient(135deg, #c06d7c 0%, #c06d7c 100%);
    border: 2px solid #e653c4;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(230, 83, 196, 0.15);
}

.index-cta-bg-pattern {
    background: radial-gradient(circle at right top, rgba(230, 83, 196, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.index-cta-tag {
    background-color: rgba(230, 83, 196, 0.2);
    color: #000000;
    font-size: 12px;
    letter-spacing: 1px;
}

.index-cta-heading {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.index-cta-subtext {
    font-size: 1.1rem;
}

.index-cta-action-btn {
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.index-cta-action-btn:hover {
    background: linear-gradient(135deg, #d445b2 0%, #c237a0 100%);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 83, 196, 0.4);
}

@media (max-width: 991.98px) {
    .index-cta-section {
        border-radius: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .index-cta-heading {
        font-size: 1.6rem;
    }
}
/* END: Index CTA Section CSS */


/* START: Index About Section CSS */
.index-about-section {
    background-color: #ffffff;
}

.index-about-tag {
    background-color: rgba(230, 83, 196, 0.15);
    color: #e653c4;
    font-size: 12px;
    letter-spacing: 1px;
}

.index-about-title {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.index-about-desc {
    font-size: 1.05rem;
    line-height: 1.6;
}

.index-feature-card {
    transition: all 0.3s ease;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.index-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 83, 196, 0.15) !important;
    border-color: rgba(230, 83, 196, 0.3) !important;
}

.index-feature-icon-box {
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-about-img-wrapper {
    position: relative;
    z-index: 1;
}

.index-about-img-shape {
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(230, 83, 196, 0.3) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.index-about-img {
    border: 1px solid rgba(0, 0, 0, 0.08);
    object-fit: cover;
    height: 380px;
}

@media (max-width: 991.98px) {
    .index-about-title {
        font-size: 1.75rem;
    }
    
    .index-about-img {
        height: auto;
    }
}
/* END: Index About Section CSS */


/* START: Index Features Section CSS */
.index-features-section {
    background-color: #f8f9fa;
}

.index-features-tag {
    background-color: rgba(230, 83, 196, 0.15);
    color: #e653c4;
    font-size: 12px;
    letter-spacing: 1px;
}

.index-features-title {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
}

.index-features-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    border-radius: 2px;
}

.index-feature-box {
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.index-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(230, 83, 196, 0.15) !important;
    border-color: rgba(230, 83, 196, 0.3) !important;
}

.index-feature-icon-circle {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
}

.index-highlight-text {
    color: #e653c4;
}

@media (max-width: 991.98px) {
    .index-features-title {
        font-size: 1.75rem;
    }
}
/* END: Index Features Section CSS */


/* START: Index Content Section CSS */
.index-content-section {
    background-color: #ffffff;
}

.index-content-tag {
    background-color: rgba(230, 83, 196, 0.15);
    color: #e653c4;
    font-size: 12px;
    letter-spacing: 1px;
}

.index-content-main-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.index-content-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    border-radius: 2px;
}

.index-content-lead {
    font-size: 1.15rem;
    line-height: 1.7;
}

.index-content-card {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
}

.index-content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 83, 196, 0.15) !important;
}

.index-content-subblock {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

@media (max-width: 991.98px) {
    .index-content-main-title {
        font-size: 1.85rem;
    }
}
/* END: Index Content Section CSS */



/* START: Index Highlights Section CSS */
.index-highlights-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.index-highlights-bg-glow {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 83, 196, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.index-highlights-badge {
    background-color: rgba(230, 83, 196, 0.12);
    color: #e653c4;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.index-highlights-main-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

.index-highlights-bar {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    border-radius: 3px;
}

.index-highlights-tagline {
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: #495057 !important;
}

.index-highlight-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.index-highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.5rem 3rem rgba(230, 83, 196, 0.15) !important;
    border-color: rgba(230, 83, 196, 0.3) !important;
}

.index-highlight-icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    transition: transform 0.3s ease;
}

.index-highlight-item:hover .index-highlight-icon-box {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 991.98px) {
    .index-highlights-main-title {
        font-size: 1.85rem;
    }
}
/* END: Index Highlights Section CSS */


/* START: Index Reviews Section CSS */
.index-reviews-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.index-reviews-badge {
    background-color: rgba(230, 83, 196, 0.12);
    color: #e653c4;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.index-reviews-main-title {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
}

.index-reviews-bar {
    width: 70px;
    height: 3px;
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    border-radius: 2px;
}

.index-reviews-card {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
}

.index-reviews-card:hover {
    box-shadow: 0 1rem 2rem rgba(230, 83, 196, 0.1) !important;
    border-color: rgba(230, 83, 196, 0.2) !important;
}

.index-reviews-btn {
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.index-reviews-btn:hover {
    background: linear-gradient(135deg, #d445b2 0%, #c237a0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 83, 196, 0.3);
    color: #ffffff !important;
}

@media (max-width: 991.98px) {
    .index-reviews-main-title {
        font-size: 1.75rem;
    }
}
/* END: Index Reviews Section CSS */


