﻿:root {
    --primary: #7b3fe4;
    --primary-dark: #5a1fc1;
    --primary-light: #9a6cff;
    --primary-gradient: linear-gradient(135deg, #7b3fe4 0%, #5a1fc1 100%);
    --secondary: #00c9a7;
    --dark: #1a1a2e;
    --light: #f8f9ff;
    --gray: #6c757d;
    --gray-light: #eef2f7;
    --shadow: 0 10px 30px rgba(123, 63, 228, 0.15);
    --shadow-heavy: 0 20px 50px rgba(123, 63, 228, 0.25);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ================= MODERN MOBILE MENU ================= */
.mobile-menu {
    background: #ffffff;
    color: #6b3fd6;
    box-shadow: 0 0 30px rgba(0,0,0,.2);
    padding-top: 0;
}

    .mobile-menu .mobile-logo {
        padding: 25px;
        background: linear-gradient(135deg,#7b3fe4,#b56cff);
        color: #fff;
        text-align: center;
        font-size: 22px;
        font-weight: 700;
    }

    .mobile-menu a {
        color: #6b3fd6;
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid #eee;
        transition: .3s;
    }

        .mobile-menu a:hover {
            background: #f3edff;
            padding-left: 28px;
        }
.services-header {
    position: relative;
    background: url('../IMG/MG/bg-service.jpg') center/cover no-repeat;
    color: #fff;
    padding: 130px 0 110px;
    text-align: center;
    overflow: hidden;
}

/* Dark overlay */
.services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(20,10,40,.85), rgba(10,5,25,-0.08) );
    z-index: 1;
}

/* Content */
.services-header .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.services-title {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 18px;
    background: linear-gradient(135deg,#ffffff,#d9c6ff);
    -webkit-background-clip: text;
    color: transparent;
}

.services-subtitle {
    font-size: 18px;
    opacity: .9;
    max-width: 700px;
    margin: auto;
}

/* Floating Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123,63,228,.35), transparent);
    filter: blur(10px);
    animation: float 8s ease-in-out infinite;
    z-index: 2;
}

.shape1 {
    width: 180px;
    height: 180px;
    top: 10%;
    left: 5%;
}

.shape2 {
    width: 260px;
    height: 260px;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.shape3 {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* Mobile */
@media(max-width:768px) {
    .services-title {
        font-size: 32px
    }

    .services-subtitle {
        font-size: 15px
    }
}


.services-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.services-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.services-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Search & Filter */
.services-controls {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    margin: -40px auto 60px;
    max-width: 1200px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.search-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

    .search-container i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary);
        font-size: 1.1rem;
    }

.search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light);
}

    .search-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.2);
    }

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--gray-light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .filter-btn i {
        font-size: 0.9rem;
    }

    .filter-btn.active, .filter-btn:hover {
        background: var(--primary-gradient);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    padding: 0 20px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: var(--shadow-heavy);
    }

.card-header {
    padding: 30px 30px 20px;
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-category {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(123, 63, 228, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.card-body {
    padding: 0 30px 20px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

    .service-features li {
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .service-features li i {
            color: var(--secondary);
            font-size: 0.9rem;
        }

.card-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

    .service-price span {
        font-size: 0.9rem;
        font-weight: 400;
        color: var(--gray);
    }

.book-btn, .details-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.book-btn {
    background: var(--primary-gradient);
    color: white;
}

    .book-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.details-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .details-btn:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
    }

/* Modal */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: var(--radius);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-header {
    background: var(--primary-gradient);
    color: white;
    padding: 30px;
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .close-modal:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

.modal-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.modal-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.modal-body {
    padding: 40px;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--dark);
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(123, 63, 228, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.feature-text h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    color: var(--gray);
    font-size: 0.9rem;
}

.modal-form {
    background: var(--gray-light);
    padding: 30px;
    border-radius: var(--radius);
}

.form-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--dark);
    }

.form-control {
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.2);
    }

.submit-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .submit-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

/* Stats Section */
.stats-section {
    background: var(--primary-gradient);
    color: white;
    padding: 80px 0;
    margin-top: 50px;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Footer */
.services-footer {
    text-align: center;
    padding: 40px 0;
    color: var(--gray);
    font-size: 0.9rem;
    border-top: 1px solid var(--gray-light);
}

/* Responsive */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }

    .modal-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .services-title {
        font-size: 2.8rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 15px 80px;
    }

    .services-title {
        font-size: 2.3rem;
    }

    .modal-body {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .services-title {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

    .service-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .service-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .service-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .service-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .service-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .service-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .service-card:nth-child(7) {
        animation-delay: 0.7s;
    }

    .service-card:nth-child(8) {
        animation-delay: 0.8s;
    }

    .service-card:nth-child(9) {
        animation-delay: 0.9s;
    }

/* No results message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
    font-size: 1.2rem;
    display: none;
}

    .no-results i {
        font-size: 3rem;
        margin-bottom: 20px;
        color: var(--primary-light);
    }
.consultio-footer {
    position: relative;
    background: url('../IMG/MG/theme-01.jpg') center/cover no-repeat;
    padding: 180px 0 0;
    color: #fff;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85);
    z-index: 1;
}

.footer-wrap {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding: 0 6% 100px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-line {
    width: 45px;
    height: 3px;
    background: #7b3fe4;
    margin-bottom: 18px;
    border-radius: 2px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 25px;
}

.footer-info {
    list-style: none;
}

    .footer-info li {
        margin-bottom: 12px;
        opacity: .9;
    }

    .footer-info i {
        color: #7b3fe4;
        margin-right: 8px;
    }

.open-hours {
    margin-top: 15px;
    opacity: .8;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

        .footer-col ul li a {
            color: #fff;
            text-decoration: none;
            padding-left: 18px;
            position: relative;
            transition: .3s;
        }

            .footer-col ul li a::before {
                content: ">";
                position: absolute;
                left: 0;
                color: #7b3fe4;
            }

            .footer-col ul li a:hover {
                color: #7b3fe4;
                padding-left: 22px;
            }

.newsletter p {
    opacity: .85;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    background: #1f2330;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(123,63,228,.3);
}

    .newsletter-form input {
        flex: 1;
        padding: 14px;
        background: transparent;
        border: none;
        color: #fff;
    }

    .newsletter-form button {
        background: #7b3fe4;
        border: none;
        padding: 0 18px;
        color: #fff;
        cursor: pointer;
    }

.footer-social {
    margin-top: 20px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff;
        color: #7b3fe4;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #7b3fe4;
            color: #fff;
        }

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 25px;
    background: rgba(0,0,0,.95);
    font-size: 14px;
    opacity: .8;
}

/* Shapes */
.footer-shape {
    position: absolute;
    z-index: 2;
    opacity: .7;
}

    .footer-shape.left {
        left: 0;
        top: 45%;
        transform: translateY(-50%);
        width: 180px;
    }

    .footer-shape.right {
        right: 0;
        bottom: 10%;
        width: 200px;
    }

/* Mobile */
@media(max-width:900px) {

    .footer-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-logo {
        margin: auto;
    }

    .footer-line {
        margin: 10px auto 18px;
    }

    .footer-col ul li a {
        padding-left: 0;
    }

        .footer-col ul li a::before {
            position: relative;
            margin-right: 6px;
        }

    .newsletter-form {
        max-width: 320px;
        margin: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-shape {
        opacity: .25;
    }

    /* FIX ICON ALIGNMENT */
    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

        .footer-info li {
            display: grid;
            grid-template-columns: 22px auto; /* icon column + text column */
            align-items: center;
            column-gap: 10px;
            white-space: nowrap;
            text-align: left;
        }

        .footer-info i {
            width: 22px;
            text-align: center;
        }
}






* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter',sans-serif
}

/* ================= TOP HEADER (Modern White) ================= */
.top-header {
    background: #ffffff;
    color: #222;
    font-size: 14px;
    margin-left: 3%;
    margin-right: 3%;
    border-bottom: 1px solid #eee;
}

    .top-header .container {
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

.left-info i, .contact-item i {
    color: #7b3fe4;
}

.right-info {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg,#7b3fe4,#b56cff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 10px rgba(123,63,228,.35);
    transition: .3s;
}

    .social-icons a:hover {
        transform: translateY(-2px);
    }

/* ================= NAVBAR ================= */
.main-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    margin-left: 3%;
    margin-right: 3%;
}

.logo-area {
    cursor: pointer; /* hand cursor */
}


.nav-container {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0; /* no side padding so logo touches left edge */
}

/* Logo block exactly on the left edge */
.logo-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    background: transparent; /* remove background */
    padding: 0; /* no padding */
    margin: 0; /* no margin */
    width: auto; /* no fixed width */
}

.logo-img {
    height: 100%;
    width: 175px;
    object-fit: fill;
    /* background: linear-gradient(135deg,#7b3fe4,#7b3fe4);*/
}
.nav-container {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    /* padding:0 15px;*/ /* small side padding only */
}


.nav-menu {
    display: flex;
    gap: 30px
}

    .nav-menu a {
        font-weight: 600;
        color: #111;
        padding: 8px 10px;
        border-radius: 4px;
        cursor: pointer;
        text-decoration: none;
        transition: .3s
    }

        .nav-menu a:hover {
            background-color: purple;
            color: #fff
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px
}

.nav-icon {
    font-size: 18px;
    cursor: pointer
}

.cta-btn {
    background: linear-gradient(135deg,#7b3fe4,#b56cff);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer
}

.nav-icon,
.cta-btn {
    cursor: pointer;
    transition: all .3s ease;
}

    /* Search & Menu icons */
    .nav-icon:hover {
        color: #7b3fe4;
        transform: scale(1.15);
    }

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg,#7b3fe4,#b56cff);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(123,63,228,.35);
}

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 35px rgba(123,63,228,.6);
        background: linear-gradient(135deg,#8c54ff,#c58bff);
    }

.mobile-toggle {
    display: none
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100%;
    background: linear-gradient(180deg,#5a2ecb,#9b6cff);
    padding: 20px;
    transition: .4s;
    z-index: 9999;
    color: #fff
}

    .mobile-menu a {
        display: block;
        color: #fff;
        padding: 12px 0;
        text-decoration: none;
        font-weight: 600
    }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998
}

@media(max-width:992px) {
    .nav-menu {
        display: none
    }

    .mobile-toggle {
        display: block
    }

    .logo-img {
        width: 125px;
    }
}


.service-note {
    margin-top: 12px;
    padding: 10px;
    background: #f5f7ff;
    border-left: 4px solid #5b2fe0;
    font-size: 13px;
    color: #333;
    border-radius: 6px;
}

    .service-note i {
        color: #d32f2f;
        margin-right: 6px;
    }






.service-card-modern {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    text-align: center;
    transition: .3s;
}

    .service-card-modern:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0,0,0,.12);
    }

.icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg,#6a5cff,#9f8cff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}

.service-card-modern h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card-modern .desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
}

.actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-outline {
    padding: 10px 14px;
    border: 1px solid #6a5cff;
    border-radius: 8px;
    color: #6a5cff;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .btn-outline:hover {
        background: #6a5cff;
        color: #fff;
    }

.btn-primary {
    padding: 10px 14px;
    background: linear-gradient(135deg,#6a5cff,#9f8cff);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}





.upload-box {
    border: 2px dashed #b56cff;
    padding: 14px;
    border-radius: 10px;
    background: #f9f7ff;
    text-align: center;
}

    .upload-box input[type="file"] {
        width: 100%;
    }

.upload-hint {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}

.upload-label {
    font-weight: 600;
    color: #5b2fe0;
    display: block;
    margin-bottom: 6px;
}








.cta-btn {
    background: linear-gradient(135deg,#7b3fe4,#b56cff);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer
}

.nav-icon,
.cta-btn {
    cursor: pointer;
    transition: all .3s ease;
}

    /* Search & Menu icons */
    .nav-icon:hover {
        color: #7b3fe4;
        transform: scale(1.15);
    }

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg,#7b3fe4,#b56cff);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(123,63,228,.35);
}

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 35px rgba(123,63,228,.6);
        background: linear-gradient(135deg,#8c54ff,#c58bff);
    }

.mobile-toggle {
    display: none
}

.user-wrapper {
    position: relative;
}

.user-badge {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg,#5b2fe0,#b56cff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.user-menu {
    position: absolute;
    top: 48px;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    display: none;
    min-width: 130px;
    overflow: hidden;
    z-index: 999;
}

    .user-menu a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 14px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
    }

        .user-menu a:hover {
            background: #f2f2f2;
        }


.yrs-toast {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: min(520px, 92vw);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px 12px;
    border-radius: 16px;
    z-index: 100000;
    background: radial-gradient(circle at top left, rgba(123,44,255,.22), rgba(12,10,30,.92));
    border: 1px solid rgba(178,102,255,.25);
    box-shadow: 0 18px 45px rgba(0,0,0,.55);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .yrs-toast.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

.yrs-toast-icn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123,44,255,.18);
    border: 1px solid rgba(178,102,255,.22);
    flex: 0 0 auto;
}

    .yrs-toast-icn i {
        font-size: 16px;
    }

.yrs-toast-body {
    flex: 1;
    min-width: 0;
}

.yrs-toast-title {
    font-weight: 800;
    letter-spacing: .2px;
    margin: 1px 0 2px;
    font-size: 14px;
}

.yrs-toast-msg {
    color: #e9e6ff;
    font-size: 13px;
    line-height: 1.45;
    word-break: break-word;
}

.yrs-toast-x {
    border: none;
    background: transparent;
    color: rgba(255,255,255,.85);
    cursor: pointer;
    padding: 6px;
    border-radius: 10px;
}

    .yrs-toast-x:hover {
        background: rgba(255,255,255,.06);
    }

.yrs-toast-actions {
    margin-top: 8px;
}

.yrs-toast-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7b2cff, #b266ff);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(123,44,255,.35);
}

.yrs-toast-bar {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 8px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    overflow: hidden;
}

    .yrs-toast-bar::after {
        content: "";
        display: block;
        height: 100%;
        width: 100%;
        transform: translateX(-100%);
        background: linear-gradient(90deg, rgba(74,222,128,.9), rgba(178,102,255,.95));
    }

.yrs-toast.show .yrs-toast-bar::after {
    animation: toastbar linear forwards;
}

@keyframes toastbar {
    to {
        transform: translateX(0);
    }
}

/* Type coloring */
.yrs-toast.success .yrs-toast-icn {
    background: rgba(74,222,128,.14);
    border-color: rgba(74,222,128,.22);
}

.yrs-toast.info .yrs-toast-icn {
    background: rgba(59,130,246,.14);
    border-color: rgba(59,130,246,.22);
}

.yrs-toast.warning .yrs-toast-icn {
    background: rgba(245,158,11,.14);
    border-color: rgba(245,158,11,.22);
}

.yrs-toast.error .yrs-toast-icn {
    background: rgba(239,68,68,.14);
    border-color: rgba(239,68,68,.22);
}
