/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #0a0a14;
    color: #f8f8f8;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
header {
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(227, 66, 162, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ff58c8;
    text-shadow: 0 0 5px rgba(255, 88, 200, 0.5);
}

.nav-toggle {
    display: none;
    color: #ff58c8;
    font-size: 24px;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #f8f8f8;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s ease;
    padding: 8px 0;
    position: relative;
}

nav ul li a:hover {
    color: #ff58c8;
}

nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff58c8;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Slider */
.slider-container {
    margin-top: 0px;
    position: relative;
    overflow: hidden;
    height: 80vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

.slide-content {
    max-width: 600px;
    margin-left: 10%;
    position: relative;
    z-index: 10;
}

.slide-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: #ff58c8;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out;
}

.slide-text {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff58c8 0%, #ff3f81 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: fadeInUp 1.4s ease-out;
    box-shadow: 0 4px 15px rgba(255, 88, 200, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 88, 200, 0.5);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.dot.active {
    background-color: #ff58c8;
    transform: scale(1.2);
}

/* Introduction Section */
.introduction {
    padding: 80px 5% 60px;
}

.intro-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.intro-image::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #ff58c8;
    border-radius: 10px;
    z-index: -1;
    transition: all 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.02);
}

.intro-image:hover::before {
    top: -8px;
    left: -8px;
}

.intro-content {
    flex: 1;
    min-width: 300px;
}

.section-tag {
    display: inline-block;
    color: #ff58c8;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    position: relative;
}

.section-tag::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #ff58c8;
    margin-top: 5px;
}

.intro-title {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff58c8;
}

.intro-text {
    font-size: 16px;
    margin-bottom: 25px;
    color: #d1d1d1;
    line-height: 1.8;
}

/* Service Cards */
.services {
    padding: 60px 5% 80px;
    background-color: #0e0e1a;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: #ff58c8;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #d1d1d1;
    max-width: 700px;
    margin: 0 auto;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: #15152a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 88, 200, 0.2);
}

.card-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top,
            rgba(21, 21, 42, 1),
            rgba(21, 21, 42, 0));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card:hover .card-image::after {
    opacity: 1;
}

.card-content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-name {
    font-weight: 600;
    font-size: 18px;
}

.card-age {
    color: #ff58c8;
    font-weight: 500;
}

.card-button {
    margin-top: 10px;
    text-align: center;
    padding-bottom: 20px;
}

.card-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff58c8 0%, #ff3f81 100%);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 88, 200, 0.4);
}

/* Service Features */
.features {
    padding: 80px 5%;
    background-color: #0a0a14;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #15152a;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 88, 200, 0.2);
}

.feature-icon {
    font-size: 36px;
    color: #ff58c8;
    margin-bottom: 20px;
}

.feature-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-text {
    color: #d1d1d1;
    font-size: 15px;
}

/* Testimonials */
.testimonials {
    padding: 80px 5%;
    background-color: #0e0e1a;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-image {
    width: 300px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.testimonial-content {
    background-color: #15152a;
    padding: 50px 50px 50px 350px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
    font-style: italic;
    color: #f0f0f0;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.testimonial-name {
    font-weight: 600;
    color: #ff58c8;
}

/* Call-to-action */
.cta {
    padding: 100px 5%;
    background: linear-gradient(rgba(10, 10, 20, 0.9),
            rgba(10, 10, 20, 0.9)),
        url("/api/placeholder/1000/600") center/cover no-repeat;
    text-align: center;
}

.cta-title {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-text {
    color: #f0f0f0;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: #080810;
    padding: 60px 5% 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    color: #ff58c8;
    margin-bottom: 20px;
}

.footer-text {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #15152a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff58c8;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff58c8;
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #ff58c8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff58c8;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.contact-icon {
    margin-right: 15px;
    color: #ff58c8;
}

.footer-bottom {
    margin-top: 50px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1f1f3a;
    color: #888;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 40px;
    }

    .intro-title,
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .testimonial-image {
        position: relative;
        transform: none;
        margin: 0 auto 30px;
        top: auto;
        left: auto;
        display: block;
    }

    .testimonial-content {
        padding: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 5%;
    }

    .nav-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        height: 0;
        overflow: hidden;
        transition: height 0.5s ease;
    }

    nav.active {
        height: 300px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 12px 0;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-content {
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }

    .intro-container {
        flex-direction: column;
    }

    .intro-image {
        margin: 0 auto;
    }

    .intro-content {
        text-align: center;
    }

    .section-tag::after {
        margin: 5px auto 0;
    }

    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 28px;
    }

    .intro-title,
    .section-title {
        font-size: 28px;
    }

    .card-container {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        width: 100%;
        max-width: 280px;
    }

    .cta-title {
        font-size: 30px;
    }
}

/* Additional Services Section Styles */
.additional-services {
    padding: 80px 5%;
    background-color: #0a0a14;
    position: relative;
}

.additional-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.additional-services .section-tag {
    display: inline-block;
    color: #ff58c8;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    position: relative;
}

.additional-services .section-tag::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #ff58c8;
    margin: 5px auto 0;
}

.additional-services .section-title {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: #ff58c8;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 88, 200, 0.3);
}

.additional-services .section-subtitle {
    font-size: 16px;
    color: #d1d1d1;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Service Item */
.service-item {
    background: linear-gradient(135deg, #15152a 0%, #1a1a36 100%);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #ff58c8, #ff3f81);
    transition: height 0.5s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 88, 200, 0.2);
}

.service-item:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 36px;
    color: #ff58c8;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-description {
    color: #d1d1d1;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #ff58c8;
    font-weight: 500;
    transition: 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #ff3f81;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Service Image */
.service-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-image:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: #ff58c8;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Service Benefits */
.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item {
    background-color: #15152a;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 30px;
    color: #ff58c8;
    margin-bottom: 15px;
}

.benefit-title {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.benefit-text {
    color: #b0b0b0;
    font-size: 14px;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg,
            rgba(21, 21, 42, 0.9) 0%,
            rgba(26, 26, 54, 0.9) 100%),
        url("/api/placeholder/1000/600") center/cover no-repeat;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-heading {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.cta-text {
    color: #d1d1d1;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .additional-services {
        padding: 60px 5%;
    }

    .service-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .additional-services .section-title {
        font-size: 32px;
    }

    .service-item {
        padding: 30px 20px;
    }

    .service-title {
        font-size: 22px;
    }

    .service-image {
        height: 350px;
    }

    .services-cta {
        padding: 40px 20px;
    }

    .cta-heading {
        font-size: 24px;
    }

    .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 300px;
    }

    .additional-services .section-title {
        font-size: 28px;
    }

    .cta-heading {
        font-size: 22px;
    }
}


