:root {
    --primary-color: #fdd2ec;
    --secondary-color: #ffffff;
    --tertiary-color: #f4f4f4;
    --text-color: #333333;
    --text-light: #666666;
    --dark-color: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a{
    text-decoration: none;
    color: inherit;
}
.link-theme{
    color: var(--primary-color);
}
.link-theme:hover{
    color: #fcb8e0;
}
.link-inherit-theme:hover{
    color: #fcb8e0;
}

.bg-primary-custom {
    background-color: var(--primary-color);
}

.bg-secondary-custom {
    background-color: var(--secondary-color);
}

.bg-tertiary-custom {
    background-color: var(--tertiary-color);
}

.text-primary-custom {
    color: var(--primary-color);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #fcb8e0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 210, 236, 0.4);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

section {
    padding: 80px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar-s1 {
    padding: 15px 0;
    transition: all 0.3s ease;
}
.navbar-s1.scrolled {
    padding: 10px 0;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.navbar-s1-brand {
    font-weight: 700;
    font-size: 1.8rem;
}
.navbar-s1-brand span {
    color: var(--primary-color);
}
.navbar-s1 .nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}
.navbar-s1 .nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}
.navbar-s1 .nav-link:hover:after {
    width: 100%;
}
.navbar-s1 .nav-link.active, .navbar-s1 .nav-link:focus{
    color: var(--bs-nav-link-color);
}
.navbar-s1.fixed-top{
    position: sticky;
}


/* Banner Section */
.banner-s1 {
    background: linear-gradient(135deg, #FDD2EC 0%, #FFB6C1 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.banner-s1::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}
.banner-s1-content {
    position: relative;
    z-index: 1;
}
.banner-s1 h1 {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.banner-s1 p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}


/* How It Works */
.work-card {
    padding: 30px;
    border-radius: 15px;
    background: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.work-card:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.work-card:hover:after {
    transform: scaleX(1);
}

.work-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--dark-color);
}

/* Features */
.feature-box {
    padding: 30px;
    border-radius: 15px;
    background: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: rotate(15deg) scale(1.1);
}

/* Testimonials */
.testimonial-card {
    padding: 30px 45px 30px 50px;
    border-radius: 15px;
    background: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 20px;
}

.testimonial-card:before {
    content: "\201C";
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    /* opacity: 0.5; */
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
}

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

.author-info h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.author-info p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}


/* Swiper Slider Styles */
.swiper {
    width: 100%;
    padding: 20px 0;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    /* display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; */
    max-width: 400px !important;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--dark-color);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #fcb8e0;
    transform: scale(1.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1rem;
    font-weight: bold;
}

/* Testimonial slider specific styles */
.testimonial-slider .swiper-slide {
    height: auto;
    padding: 20px;
}

.testimonial-slider .swiper-button-prev,
.testimonial-slider .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-slider .swiper-button-prev {
    left: 0;
}

.testimonial-slider .swiper-button-next {
    right: 0;
}


/* Footer */
footer {
    background: var(--dark-color);
    color: var(--secondary-color);
    padding: 50px 0 20px;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links h5 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h5:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: -8px;
    left: 0;
}

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

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

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    color: #bbb;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .shape-1,
    .shape-2 {
        display: none;
    }
}

@media (max-width: 575.98px) {

    .section-title {
        font-size: 1.5rem;
    }
}

/* Responsive adjustments */
        @media (max-width: 992px) {
            .banner-s1 h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .banner-s1 {
                padding: 70px 0;
            }
            .banner-s1 h1 {
                font-size: 2.3rem;
            }
            .banner-s1 p {
                font-size: 1rem;
            }
        }
