/* 
* NexaFlow - Modern SaaS Website
* Custom CSS Styles
*/

/* ===== GENERAL STYLES ===== */
:root {
    --primary-color: #8a4fff;
    --primary-light: #a67fff;
    --primary-dark: #6e3fd1;
    --secondary-color: #ff6b9d;
    --text-color: #333333;
    --light-text: #ffffff;
    --dark-text: #222222;
    --gray-bg: #f8f9fa;
    --light-bg: #ffffff;
    --border-radius: 10px;
    --card-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #fcfcff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark-text);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 79, 255, 0.2);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: white;
}

.learn-btn{
    background: white;
    border: 2px solid var(--primary-color); 
}

.learn-btn:hover{
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-outline-light {
    color: var(--light-text);
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: var(--dark-text);
}

.btn-outline-light:hover {
    background: var(--primary-color);
    border-color: var(--light-text);
    color: white;
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 120px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #777;
    font-size: 18px;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 0;
    transition: all 0.4s ease;
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 20px;
}

.navbar.sticky .container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.226);
    background-color: rgba(255, 255, 255, 0.98);
    padding: 8px 25px;
    margin-top: 5px;
    margin-bottom: 5px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar .container {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 25px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 21%);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 28px;
    margin-right: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 15px;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 30px;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar .btn-primary {
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 4px 10px rgba(138, 79, 255, 0.25);
}

.navbar .btn-primary i {
    margin-right: 6px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(118deg,rgba(240, 233, 255, 1) 33%, rgba(134, 74, 255, 1) 74%);
    position: relative;
    overflow: hidden;
}
.hero-text span.badge {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    font-size: 14px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.floating-card i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.floating-card span {
    font-weight: 500;
    font-size: 14px;
}

.card-1 {
    top: 20%;
    left: 0;
    animation: float 5s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 0;
    animation: float 7s ease-in-out infinite;
}

.card-3 {
    bottom: 15%;
    left: 10%;
    animation: float 6s ease-in-out infinite 1s;
}

.hero-shape {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #FCFCFF;
    clip-path: ellipse(50% 50% at 50% 100%);
}

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

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
}

.features-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.features-image {
    flex: 0 0 45%;
    position: relative;
    padding-right: 30px;
}

.features-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(138, 79, 255, 0.15);
    position: relative;
    z-index: 2;
}

.features-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.1), rgba(166, 127, 255, 0.1));
    bottom: -50px;
    left: -50px;
    z-index: -2;
}

.features-content {
    flex: 0 0 55%;
    padding-left: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(138, 79, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 79, 255, 0.1);
}

.feature-item:hover::before {
    width: 5px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.1), rgba(166, 127, 255, 0.1));
    border-radius: 10px;
    margin-right: 20px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-item:hover .feature-icon i {
    color: white;
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-text p {
    color: #777;
    margin-bottom: 0;
    font-size: 14px;
}

.features-cta {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

@media (max-width: 991px) {
    .features-wrapper {
        flex-direction: column;
    }

    .splide__arrow.splide__arrow--prev{
    left: 32% !important;
    }

    .splide__arrow.splide__arrow--next{
        right: 32% !important;
    }
    
    .features-image, .features-content {
        flex: 0 0 100%;
        padding: 0;
    }
    
    .features-image {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .features-shape {
        display: none;
    }
}

@media (max-width: 767px) {
    .features-cta {
        flex-direction: column;
    }
    
    .features-cta .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background-color: var(--gray-bg);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.788), rgba(165, 127, 255, 0.61));
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.699), rgba(165, 127, 255, 0.61));
    z-index: 0;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 79, 255, 0.15);
}

.service-card:hover::before {
    height: 5px;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.1), rgba(166, 127, 255, 0.1));
    border-radius: 50%;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    color: #777;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-link i {
    margin-left: 5px;
    font-size: 14px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-subtitle {
    display: inline-block;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.1), rgba(166, 127, 255, 0.1));
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}


.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.about-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-stats {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.356);
    margin-bottom: 30px;
}

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

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.stat-item p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

.about-features {
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.about-feature-icon i {
    color: white;
    font-size: 12px;
}

.about-feature p {
    margin-bottom: 0;
    font-size: 15px;
    color: #555;
}

.about-cta {
    display: flex;
    align-items: center;
}

.about-cta .btn-link {
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
    border: 1px solid;
    text-decoration: none;
}

.about-cta .btn-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.about-cta .btn-link:hover i {
    transform: translateX(5px);
}

.about-image {
    position: relative;
    padding: 30px 0;
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
}

.main-image {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(138, 79, 255, 0.15);
}

.about-shape-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.904), rgba(166, 127, 255, 0.15));
    top: 0;
    right: 0;
    z-index: 1;
}

.about-shape-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.1), rgba(166, 127, 255, 0.1));
    bottom: 0;
    left: 0;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(138, 79, 255, 0.2);
    z-index: 3;
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-right: 10px;
}

.experience-badge .text {
    font-size: 14px;
    line-height: 1.3;
}

.about-card {
    position: absolute;
    top: 30px;
    right: 0;
    background: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(138, 79, 255, 0.315);
    z-index: 3;
}

.about-card-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.1), rgba(166, 127, 255, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.about-card-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.about-card-content h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.about-card-content p {
    font-size: 12px;
    color: #777;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-content {
        margin-bottom: 60px;
    }
    
    .about-image {
        padding: 0;
    }
    
    .about-shape-1, .about-shape-2 {
        display: none;
    }
    
    .experience-badge {
        bottom: -20px;
        left: 20px;
    }
    
    .about-card {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .about-content h2 {
        font-size: 28px;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-cta .btn-link {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .experience-badge {
        padding: 10px 15px;
    }
    
    .experience-badge .years {
        font-size: 28px;
    }
    
    .experience-badge .text {
        font-size: 12px;
    }
    
    .about-card {
        padding: 10px;
    }
    
    .about-card-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }
    
    .about-card-content h4 {
        font-size: 14px;
    }
    
    .about-card-content p {
        font-size: 11px;
    }
}

/* ===== TRUSTED SECTION ===== */
.trusted-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
        position: relative;
    overflow: hidden;
}

.trusted-header {
    margin-bottom: 50px;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.trusted-logo-wrapper {
    flex: 0 0 16.666%;
    padding: 15px;
    text-align: center;
}

.trusted-logo {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(138, 79, 255, 0.267);
    transition: var(--transition);
}

.trusted-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 79, 255, 0.267);
}

.trusted-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.trusted-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.trusted-stats {
    margin: 50px 0;
}

.trusted-stat-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(138, 79, 255, 0.267);
    transition: var(--transition);
    height: 100%;
}

.trusted-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 79, 255, 0.267);
}

.trusted-stat-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.1), rgba(166, 127, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: var(--transition);
}

.trusted-stat-item:hover .trusted-stat-icon {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
}

.trusted-stat-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.trusted-stat-item:hover .trusted-stat-icon i {
    color: white;
}

.trusted-stat-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.trusted-stat-content p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

.trusted-cta {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .trusted-logo-wrapper {
        flex: 0 0 33.333%;
    }
    
    .trusted-stat-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .trusted-logo-wrapper {
        flex: 0 0 50%;
    }
}

@media (max-width: 575px) {
    .trusted-logo-wrapper {
        flex: 0 0 100%;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
    overflow: hidden;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(138, 79, 255, 0.15);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #777;
    margin: 0;
    font-size: 14px;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 100px 0;
    background-color: var(--gray-bg);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20.83l2.83-2.83 1.41 1.41L1.41 22.24H0v-1.41zM0 3.07l2.83-2.83 1.41 1.41L1.41 4.48H0V3.07zm15.66 18.59l2.83-2.83 1.41 1.41-2.83 2.83h-1.41v-1.41zm0-17.76l2.83-2.83 1.41 1.41-2.83 2.83h-1.41V3.9zm-3.07 18.59l2.83-2.83 1.41 1.41-2.83 2.83H12.6v-1.41zm0-17.76l2.83-2.83 1.41 1.41-2.83 2.83H12.6V4.73zm6.14 18.59l2.83-2.83 1.41 1.41-2.83 2.83h-1.41v-1.41zm0-17.76l2.83-2.83 1.41 1.41-2.83 2.83h-1.41V5.56zm-6.14 18.59l2.83-2.83 1.41 1.41-2.83 2.83H12.6v-1.41zm0-17.76l2.83-2.83 1.41 1.41-2.83 2.83H12.6V6.39zm6.14 18.59l2.83-2.83 1.41 1.41-2.83 2.83h-1.41v-1.41zm0-17.76l2.83-2.83 1.41 1.41-2.83 2.83h-1.41V7.22zm6.14 18.59l2.83-2.83 1.41 1.41-2.83 2.83h-1.41v-1.41zm0-17.76l2.83-2.83 1.41 1.41-2.83 2.83h-1.41V8.05zm6.14 18.59l2.83-2.83 1.41 1.41-2.83 2.83h-1.41v-1.41zm0-17.76l2.83-2.83 1.41 1.41-2.83 2.83h-1.41V8.88z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 79, 255, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 14px;
    transform: rotate(45deg);
    font-weight: 500;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    font-size: 18px;
}

.price .currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
    line-height: 1;
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.price .period {
    color: #777;
    font-size: 16px;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 10px;
}

.pricing-features li i.fa-check {
    color: #4CAF50;
}

.pricing-features li i.fa-times {
    color: #F44336;
}

.pricing-features li.disabled {
    color: #aaa;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    position: relative;
    overflow: hidden;
}


.cta-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    background: linear-gradient(to right, #ffffff 0%, #f8f5ff 100%);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%239C92AC' fill-opacity='0.1' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

.contact-info {
    padding-right: 30px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    color: #777;
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.1), rgba(166, 127, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 20px;
}

.contact-item h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item p {
    margin-bottom: 0;
    color: #555;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.1), rgba(166, 127, 255, 0.1));
    border-radius: 50%;
    color: var(--primary-color);
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: #f8f3ff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-form .form-control {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 12px 15px;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-form textarea.form-control {
    resize: none;
}

/* ===== FOOTER ===== */
.footer {
    background: #ffffff;
    color: #aaa;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(138, 79, 255, 0.05), transparent);
    opacity: 0.2;
} */

.footer-about {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-block;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 25px;
    color: #363636;
}

.social-media-links {
    display: flex;
    margin-bottom: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(138, 79, 255, 0.1);
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 16px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(138, 79, 255, 0.3);
}

.download-buttons .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h4 {
    color: var(--primary-dark);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: #363636;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgb(77, 77, 77);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--primary-dark);
}

.footer-language .form-select {
    background-color: var(--primary-color);
    border: none;
    color: #ffffff;
    width: auto;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 40px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(138, 79, 255, 0.3);
    z-index: 99;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(45deg, var(--primary-light), var(--primary-color));
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 79, 255, 0.4);
    color: white;
}

/* Newsletter Styles */
.newsletter-box {
    background: rgba(138, 79, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 20px;
    border: 1px solid rgba(138, 79, 255, 0.1);
}

.newsletter-box h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 20px;
}

.newsletter-box p {
    color: #363636;
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(138, 79, 255, 0.1);
}

.newsletter-form .form-control {
    border: 1px solid rgba(138, 79, 255, 0.2);
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 25px;
    font-weight: 500;
}

.newsletter-form .form-check-label {
    font-size: 13px;
    color: #777;
}

.newsletter-form .form-check-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.newsletter-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 100px 0;
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
    position: relative;
    overflow: hidden;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
    height: 100%;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 79, 255, 0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
    color: #777;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--dark-text);
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== BLOG PAGE STYLES ===== */

/* Blog List Page Styles */
.blog-hero {
    background: linear-gradient(118deg, rgba(240, 233, 255, 1) 33%, rgba(134, 74, 255, 1) 74%);
}

.featured-posts-section {
    padding: 120px 0;
    position: relative;
}

.featured-post-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.featured-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 79, 255, 0.2);
}

.featured-post-image {
    position: relative;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.featured-post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #777;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.featured-post-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-text);
    line-height: 1.4;
}

.featured-post-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.featured-post-small {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
    overflow: hidden;
    height: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.featured-post-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(138, 79, 255, 0.2);
}

.featured-post-small-image {
    position: relative;
    overflow: hidden;
    height: 150px;
}

.featured-post-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post-small:hover .featured-post-small-image img {
    transform: scale(1.05);
}

.featured-post-small-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-post-small-content h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-text);
    line-height: 1.4;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    text-decoration: none;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover i {
    transform: translateX(5px);
}

.latest-posts-section {
    padding: 100px 0;
    background-color: #F1E7FF;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 79, 255, 0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-category {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 16px;
    border-radius: 0 var(--border-radius) 0 0;
    font-size: 14px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-text);
    line-height: 1.4;
}

.blog-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

/* Blog Detail Page Styles */
.blog-detail-header {
    padding: 180px 0 50px;
    background: linear-gradient(118deg, rgba(240, 233, 255, 1) 33%, rgba(134, 74, 255, 1) 74%);
}

.blog-breadcrumb {
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
}

.blog-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-breadcrumb a:hover {
    color: var(--primary-dark);
}

.blog-detail-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-featured-image {
    margin-top: -50px;
    margin-bottom: 50px;
}

.blog-featured-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
}

.blog-content-section {
    padding: 50px 0 100px;
    background-color: #fff;
}

/* .blog-content {
    margin-bottom: 50px;
} */

.blog-content .lead {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.blog-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--dark-text);
}

.blog-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--dark-text);
}

.blog-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.blog-content blockquote {
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.blog-content blockquote p {
    font-size: 18px;
    font-style: italic;
    color: #444;
    margin-bottom: 10px;
}

.blog-content blockquote cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
    display: block;
}

.blog-image-container {
    margin: 30px 0;
    text-align: center;
}

.blog-image-container img {
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.image-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.blog-content ol, .blog-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.challenges-table {
    margin: 30px 0;
}

.challenges-table .table {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.challenges-table th {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 15px 20px;
    border: none;
}

.challenges-table td {
    padding: 15px 20px;
    border-color: #eee;
}

.success-story {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.success-story h4 {
    color: var(--dark-text);
    margin-bottom: 15px;
    font-size: 18px;
}

.success-story p {
    margin-bottom: 0;
    color: #555;
}

.blog-tags {
    margin: 40px 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.blog-tags span {
    font-weight: 600;
    color: #444;
    margin-right: 10px;
}

.blog-tags a {
    display: inline-block;
    background: #f5f5f5;
    color: #555;
    padding: 5px 15px;
    border-radius: 30px;
    margin: 5px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.blog-tags a:hover {
    background: var(--primary-light);
    color: white;
}

.share-post {
    display: flex;
    align-items: center;
    margin: 30px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.share-post span {
    font-weight: 600;
    color: #444;
    margin-right: 15px;
}

.share-post .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #555;
    margin-right: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.share-post .social-icon:hover {
    background: var(--primary-color);
    color: white;
}

.author-bio {
    display: flex;
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 40px 0;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.author-info h4 {
    margin-bottom: 5px;
    color: var(--dark-text);
}

.author-role {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.author-social {
    margin-top: 15px;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    margin-right: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.author-social a:hover {
    background: var(--primary-color);
    color: white;
}

.comments-section {
    margin-top: 50px;
}

.comments-section h3 {
    margin-bottom: 30px;
    color: var(--dark-text);
    font-size: 24px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
}

.comment.reply {
    margin-left: 60px;
    background: #f5f5f5;
    padding: 10px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.comment-content {
    flex: 1;
}

.comment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-info h5 {
    margin-bottom: 0;
    color: var(--dark-text);
}

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

.comment-content p {
    margin-bottom: 10px;
    color: #555;
}

.reply-link {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.reply-link:hover {
    color: var(--primary-dark);
}

.load-more-comments {
    text-align: center;
    margin: 30px 0;
}

.comment-form {
    margin-top: 50px;
}

.comment-form h3 {
    margin-bottom: 20px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h4 {
    color: var(--dark-text);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
}

.search-widget .input-group {
    position: relative;
}

.search-widget .form-control {
    padding-right: 50px;
    height: 50px;
    border-radius: 25px;
    border: 1px solid #eee;
}

.search-widget .btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    border-radius: 0 25px 25px 0;
    z-index: 5;
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget li {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.categories-widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.categories-widget a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: var(--transition);
}

.categories-widget a:hover {
    color: var(--primary-color);
}

.categories-widget span {
    background: #f5f5f5;
    color: #777;
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 12px;
}

.recent-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 80px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h5 {
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-content h5 a {
    color: var(--dark-text);
    text-decoration: none;
    transition: var(--transition);
}

.recent-post-content h5 a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 12px;
    color: #777;
}

.tags-widget .tags {
    display: flex;
    flex-wrap: wrap;
}

.tags-widget .tags a {
    display: inline-block;
    background: #f5f5f5;
    color: #555;
    padding: 5px 12px;
    border-radius: 30px;
    margin: 0 5px 10px 0;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}

.tags-widget .tags a:hover {
    background: var(--primary-color);
    color: white;
}

.cta-widget {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    text-align: center;
}

.cta-widget h4 {
    color: white;
    border-bottom: none;
    padding-bottom: 0;
}

.cta-widget p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-widget .btn {
    background: white;
    color: var(--primary-color);
}

.related-posts-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
}

.related-posts-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: var(--dark-text);
}

@media (max-width: 991px) {
    .blog-detail-header {
        padding: 150px 0 40px;
    }
    
    .blog-detail-header h1 {
        font-size: 30px;
    }
    
    .blog-featured-image {
        margin-top: -30px;
    }
    
    .author-bio {
        flex-direction: column;
    }
    
    .author-image {
        margin: 0 auto 20px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .blog-sidebar {
        margin-top: 50px;
        position: static;
    }
}

@media (max-width: 767px) {
    .blog-detail-header h1 {
        font-size: 24px;
    }

    .input-group>.form-control{
        width: 100% !important;
    }
    
    .blog-content .lead {
        font-size: 16px;
    }
    
    .blog-content h2 {
        font-size: 22px;
    }
    
    .blog-content h3 {
        font-size: 18px;
    }
    
    .comment.reply {
        margin-left: 30px;
    }
    
    .comment-avatar {
        width: 40px;
        height: 40px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(118deg, rgba(240, 233, 255, 1) 33%, rgba(134, 74, 255, 1) 74%);
}

.contact-info-section {
    padding: 100px 0 70px;
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 79, 255, 0.2);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.contact-info-card p {
    color: #555;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-hours {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.contact-form-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
    height: 100%;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #eee;
    padding: 0.75rem 1rem;
    height: 58px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(138, 79, 255, 0.25);
}

.contact-form .form-floating > label {
    padding: 0.75rem 1rem;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

.contact-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-image-container img {
    max-height: 400px;
    object-fit: contain;
}

.contact-cta {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 80%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.3);
}

.contact-cta h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.contact-cta p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.map-section {
    padding: 100px 0;
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
}

.map-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
}

.map-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.map-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.2);
    min-width: 300px;
}

.map-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.map-card p {
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.map-card .btn {
    margin-top: 10px;
}

.faq-section {
    padding: 100px 0;
    background-color: #fff;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--dark-text);
    background-color: white;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #f9f4ff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(138, 79, 255, 0.25);
}

.accordion-button::after {
    background-size: 16px;
    transition: var(--transition);
}

.accordion-body {
    padding: 20px 25px;
    color: #555;
    line-height: 1.6;
}

.connect-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
  

}

.connect-container {
    /* background: linear-gradient(45deg, var(--primary-color), var(--primary-light)); */
    background-image: url('../img/img10.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: var(--border-radius);
    padding: 50px;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
    height: 400px;

}

.connect-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(126 0 255 / 35%);
    z-index: -1;
    border-radius: var(--border-radius);

  }

.connect-container h2 {
    color: white;
    margin-bottom: 15px;
}

.connect-container p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links-large .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    transition: var(--transition);
    text-decoration: none;
}

.social-links-large .social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .contact-info-section {
        padding: 80px 0 50px;
    }
    
    .contact-form-section {
        padding: 80px 0;
    }
    
    .contact-image-container {
        margin-top: 50px;
    }
    
    .contact-cta {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 30px;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
    }
    
    .map-card {
        min-width: auto;
        width: 100%;
    }
    
    .connect-container {
        padding: 30px;
    }
    
    .social-links-large {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .contact-form-container {
        padding: 25px;
    }
    
    .accordion-button {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .accordion-body {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .social-links-large .social-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ===== SERVICES PAGE STYLES ===== */
.services-hero {
    background: linear-gradient(118deg, rgba(240, 233, 255, 1) 33%, rgba(134, 74, 255, 1) 74%);
}

.main-services-section {
    padding: 120px 0;
    position: relative;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 79, 255, 0.2);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.service-card p {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #555;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.process-section {
    padding: 100px 0;
    background-color: #fff;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 35px;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.process-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-right: 30px;
    z-index: 2;
}

.process-content {
    padding-top: 10px;
}

.process-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.process-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.specialized-services-section {
    padding: 100px 0;
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
}

.specialized-service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
    height: 100%;
    transition: var(--transition);
}

.specialized-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 79, 255, 0.2);
}

.specialized-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.specialized-service-content {
    flex: 1;
}

.specialized-service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.specialized-service-content p {
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.specialized-service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialized-service-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.specialized-service-content ul li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
}

.pricing-section-services {
    padding: 100px 0;
    background-color: #fff;
}

.testimonials-section-services {
    padding: 100px 0;
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
    position: relative;
    overflow: hidden;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(118deg, rgba(240, 233, 255, 1) 33%, rgba(134, 74, 255, 1) 74%);
}

.about-story-section {
    padding: 120px 0;
    position: relative;
}

.about-story-image {
    position: relative;
    padding: 20px;
}

.story-shape-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.7), rgba(165, 127, 255, 0.6));
    top: -30px;
    left: -30px;
    z-index: -1;
}

.story-shape-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(138, 79, 255, 0.281), rgba(165, 127, 255, 0.6));
    bottom: -20px;
    right: -20px;
    z-index: -1;
}

.story-milestone {
    margin-top: 40px;
}

.milestone-item {
    display: flex;
    margin-bottom: 25px;
}

.milestone-year {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
    background: rgba(138, 79, 255, 0.1);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    margin-right: 20px;
    min-width: 80px;
    text-align: center;
}

.milestone-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.milestone-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.values-section {
    padding: 100px 0;
    background-color: #fff;
}

.value-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 79, 255, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 30px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
    background: linear-gradient(to right, #f9f4ff 0%, #f0e6ff 100%);
}

.team-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
    height: 100%;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 79, 255, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background: rgba(138, 79, 255, 0.9);
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: var(--transition);
}

.team-social a:hover {
    background: white;
    color: var(--primary-color);
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-content p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-quote {
    display: block;
    font-style: italic;
    color: #777;
    font-size: 14px;
}

.stats-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-title {
    font-size: 16px;
    opacity: 0.8;
}

.locations-section {
    padding: 100px 0;
    background-color: #fff;
}

.location-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138, 79, 255, 0.1);
    height: 100%;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 79, 255, 0.2);
}

.location-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.location-content {
    padding: 25px;
}

.location-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.location-content p {
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.location-content i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .navbar {
        top: 15px;
    }
    
    .navbar .container {
        padding: 8px 15px;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 30px;
    }
    
    .hero-text h1 {
        font-size: 30px;
    }
    
    .milestone-item {
        flex-direction: column;
    }
    
    .milestone-year {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-right: 20px;
    }
    
    .specialized-service-card {
        flex-direction: column;
    }
    
    .specialized-service-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    /* Blog page responsive styles */
    .featured-post-image img {
        height: 250px;
    }
    
    .featured-post-small {
        height: auto;
        margin-bottom: 20px;
    }
    
    .featured-post-small-image {
        height: 120px;
    }
    
    .category-card {
        margin-bottom: 15px;
    }
    
    .newsletter-container {
        padding: 30px 20px;
    }
    
    .team-image img {
        height: 250px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-title {
        font-size: 14px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .newsletter-box {
        padding: 20px;
    }
    
    .newsletter-form .input-group {
        display: block;
    }
    
    .newsletter-form .form-control {
        border-radius: 50px;
        margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
        border-radius: 50px;
        width: 100%;
    }
    
    .blog-card {
        margin-bottom: 30px;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-meta span {
        margin-bottom: 5px;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .navbar {
        top: 10px;
    }
    
    .navbar .container {
        padding: 8px 15px;
        border-radius: 30px;
    }
    
    .hero-section {
        padding: 130px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 26px;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .social-media-links {
        flex-wrap: wrap;
    }
    
    .social-icon {
        margin-bottom: 10px;
    }
}

.splide__slide {
    padding: 40px 20px;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
  }

  .splide__arrow, .splide__pagination__page.is-active {
    background-color: var(--primary-color);
  }

  .splide__arrow svg {
   fill: white; 
  }

  .splide__arrow.splide__arrow--prev {
    position: absolute;
    top: 100%;
    left: 42%;
  }
    
  .splide__arrow.splide__arrow--next {
    position: absolute;
    top: 100%;
    right: 42%;
  }
  

  .splide__pagination{
    position: absolute;
    bottom: -7px;

  }