@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* =========================================================
   DESIGN SYSTEM
   Brand: #be4d92
   ========================================================= */

:root {
    scroll-behavior: auto !important;
    /* Brand */
    --color-brand-50: #f8eaf3;
    --color-brand-100: #f1d6e7;
    --color-brand-200: #e6b4d2;
    --color-brand-300: #d990bc;
    --color-brand-400: #cb6aa6;
    --color-brand-500: #be4d92;
    --color-brand-600: #a6407c;
    --color-brand-700: #8f376b;
    --color-brand-800: #742c56;
    --color-brand-900: #592141;
    /* Neutrals */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text: #555555;
    --color-heading: #021738;
    --color-heading-soft: #24324a;
    --color-muted: #6c757d;
    /* Surfaces */
    --color-bg: #ffffff;
    --color-bg-soft: #f2f6f9;
    --color-surface: #ffffff;
    --color-surface-alt: #f8fafc;
    --color-border: #ecf0f3;
    --color-border-soft: rgba(255, 255, 255, 0.1);
    --color-overlay-dark: rgba(2, 23, 56, 0.7);
    /* Semantic tokens */
    --color-primary: var(--color-brand-500);
    --color-primary-hover: var(--color-brand-600);
    --color-primary-active: var(--color-brand-700);
    --color-secondary: var(--color-heading);
    --color-secondary-hover: #0d234c;
    --color-text-body: var(--color-text);
    --color-text-heading: var(--color-heading);
    --color-text-inverse: var(--color-white);
    --color-text-link: var(--color-heading);
    --color-text-link-hover: var(--color-primary);
    --color-success: #00c851;
    --color-danger: #dc3545;
    /* Typography */
    --font-heading: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
    --fs-body: 1rem;
    --fs-p: 1rem;
    --lh-body: 1.5;
    --lh-p: 24px;
    --lh-heading: 1.3;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    /* Radius */
    --radius-xs: 2px;
    --radius-sm: 3px;
    --radius-md: 5px;
    --radius-pill: 999px;
    --radius-circle: 50%;
    /* Shadows */
    --shadow-soft: 0 0 5px rgba(136, 136, 136, 0.1);
    --shadow-brand: 0px 5px 20px 0px rgba(190, 77, 146, 0.35);
    /* Motion */
    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    /* Layout */
    --container-max: 1170px;
    /* Buttons */
    --btn-height-mobile: 42px;
    --btn-height-desktop: 56px;
    --btn-padding-mobile: 0 1.3rem;
    --btn-padding-desktop: 0 2rem;
    /* Forms */
    --input-bg: rgba(255, 255, 255, 0.1);
    --input-border: rgba(255, 255, 255, 0.1);
    --input-bg-light: #ffffff;
    --input-border-light: #ecf0f3;
    /* Component aliases */
    --theme-bg: var(--color-primary);
    --theme-bg-dark: var(--color-secondary);
    --theme-text: var(--color-primary);
    --section-dark-bg: var(--color-secondary);
    --section-light-bg: var(--color-bg-soft);
    --icon-bg: var(--color-primary);
    --tag-bg: var(--color-primary);
    --pageheader-bg: var(--color-secondary);
    --preloader-bg: var(--color-primary);
}

/* Optional future dark theme */
[data-theme="dark"] {
    --color-bg: #0f172a;
    --color-bg-soft: #162033;
    --color-surface: #111827;
    --color-surface-alt: #1f2937;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-text: #cbd5e1;
    --color-heading: #f8fafc;
    --color-heading-soft: #e2e8f0;
    --color-text-body: #cbd5e1;
    --color-text-heading: #f8fafc;
    --color-text-link: #f8fafc;
    --color-secondary: #1e293b;
    --color-secondary-hover: #334155;
    --color-overlay-dark: rgba(15, 23, 42, 0.72);
    --input-bg: rgba(255, 255, 255, 0.06);
    --input-border: rgba(255, 255, 255, 0.08);
}

/* =========================================================
   BASE
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--color-bg);
    color: var(--color-text-body);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

body,
button,
input,
select,
optgroup,
textarea {
    color: var(--color-text-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
a h1,
a h2,
a h3,
a h4,
a h5,
a h6 {
    clear: both;
    color: var(--color-text-heading);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: var(--lh-heading);
    transition: var(--transition-fast);
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

@media (min-width: 576px) {
    h1 {
        font-size: 3.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.875rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    h6 {
        font-size: 1.125rem;
    }
}

p {
    margin-bottom: 15px;
    font-size: var(--fs-p);
    font-weight: var(--fw-regular);
    line-height: var(--lh-p);
}

a {
    color: var(--color-text-link);
    text-decoration: none;
    transition: var(--transition-fast);
}

    a:hover,
    a:focus,
    a:active {
        color: var(--color-text-link-hover);
        text-decoration: none;
        outline: none;
    }

    a:visited,
    a:focus {
        outline: none;
    }

img {
    max-width: 100%;
    height: auto;
    transition: var(--transition-fast);
}

ul li {
    list-style: none;
}

/* =========================================================
   FORMS
   ========================================================= */

select {
    border: 1px solid var(--color-border);
}

input,
textarea,
select {
    outline: none;
    width: 100%;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    padding: 15px;
    color: var(--color-text-body);
}

    input::placeholder,
    textarea::placeholder {
        color: var(--color-text-body);
    }

.contact__form form input,
.contact__form form textarea {
    border: 1px solid var(--input-border-light);
    background-color: var(--input-bg-light);
}

.callAaction__form form input,
.callAaction__form form textarea,
.callAaction__form form .custom-select {
    background-color: var(--color-bg-soft);
}

.custom-select {
    position: relative;
    width: 100%;
}

    .custom-select::after {
        position: absolute;
        content: "";
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 6px 0 6px;
        border-color: var(--color-text-heading) transparent transparent transparent;
    }

    .custom-select select {
        appearance: none;
        background: transparent;
    }

/* =========================================================
   LAYOUT TOKENS
   ========================================================= */

.bg-color {
    background-color: var(--section-light-bg);
}

.bg-theme {
    background: var(--theme-bg);
}

.bg-prime,
.bg-primary,
.bg-title,
.feature {
    background: var(--section-dark-bg) !important;
}

.theme-color {
    color: var(--theme-text) !important;
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: var(--container-max) !important;
    }
}

/* =========================================================
   BUTTON SYSTEM
   ========================================================= */

.lab-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    line-height: var(--btn-height-mobile);
    padding: var(--btn-padding-mobile);
    border-radius: var(--radius-xs);
    background: var(--color-primary);
    color: var(--color-text-inverse);
    font-weight: var(--fw-bold);
    text-transform: capitalize;
    transition: var(--transition-fast);
}

@media (min-width: 1200px) {
    .lab-btn {
        line-height: var(--btn-height-desktop);
        padding: var(--btn-padding-desktop);
    }
}

.lab-btn,
.lab-btn i {
    color: var(--color-text-inverse);
    transition: var(--transition-fast);
}

    .lab-btn:hover {
        background-color: var(--color-primary-hover);
        color: var(--color-text-inverse);
    }

    .lab-btn.style-2 {
        background: transparent;
        border: 2px solid var(--color-white);
    }

        .lab-btn.style-2 span {
            color: var(--color-primary);
        }

.text-btn {
    font-size: 0.875rem;
    color: var(--color-black);
    transition: var(--transition-fast);
}

    .text-btn:hover {
        padding-left: 10px;
        color: var(--color-primary);
    }

/* =========================================================
   PRELOADER
   ========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--preloader-bg);
}

    .preloader .preloader-inner {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        .preloader .preloader-inner .preloader-icon {
            position: relative;
            display: inline-block;
            width: 72px;
            height: 72px;
        }

            .preloader .preloader-inner .preloader-icon span {
                position: absolute;
                display: inline-block;
                width: 72px;
                height: 72px;
                border-radius: 100%;
                background: var(--color-white);
                animation: preloader-fx 1.6s linear infinite;
            }

                .preloader .preloader-inner .preloader-icon span:last-child {
                    animation-delay: -0.8s;
                }

@keyframes preloader-fx {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/* =========================================================
   PAGINATION
   ========================================================= */

.pagination li .page-link {
    width: 50px;
    height: 50px;
    line-height: 50px;
    outline: none;
    background-color: var(--color-white);
    color: var(--color-text-heading);
    text-align: center;
    border-radius: 100%;
    transition: var(--transition-fast);
}

    .pagination li .page-link:hover {
        background-color: var(--color-primary);
        color: var(--color-white);
    }

    .pagination li .page-link:focus {
        box-shadow: none;
    }

.paginations ul li a {
    width: 46px;
    height: 46px;
    z-index: 1;
    color: var(--color-text-body);
    background: var(--color-secondary);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-circle);
    transition: var(--transition-fast);
}

    .paginations ul li a.active,
    .paginations ul li a:hover {
        background: var(--color-primary);
        color: var(--color-white);
    }

    .paginations ul li a.dot:hover {
        background: transparent;
        color: var(--color-text-body);
    }

/* =========================================================
   TAGS / SOCIAL
   ========================================================= */

.tags-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 30px;
    border: 1px solid var(--color-border);
    border-top: none;
}

    .tags-section .tags {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
        margin: 0;
        padding: 0;
    }

        .tags-section .tags li {
            padding: 5px 0;
        }

            .tags-section .tags li span {
                position: relative;
                display: inline-block;
                margin-right: 20px;
                padding: 10px 15px;
                color: var(--color-white);
                background: var(--tag-bg);
            }

                .tags-section .tags li span::after {
                    position: absolute;
                    content: "";
                    top: 50%;
                    right: 0;
                    width: 15px;
                    height: 15px;
                    background: var(--tag-bg);
                    transform: rotate(45deg) translateY(-50%);
                }

            .tags-section .tags li a {
                display: inline-block;
                margin: 0 3px;
                padding: 10px;
                border: 1px solid var(--color-border);
                border-radius: var(--radius-sm);
                color: var(--color-text-heading);
                font-size: 0.875rem;
                font-weight: var(--fw-semibold);
                transition: var(--transition-fast);
            }

                .tags-section .tags li a:hover {
                    background: var(--color-primary);
                    color: var(--color-white);
                }

    .tags-section .social-link-list {
        margin-top: 0;
    }

        .tags-section .social-link-list li {
            display: inline-block;
            margin-right: 10px;
            padding: 5px 0;
        }

            .tags-section .social-link-list li:last-child {
                margin-right: 0;
            }

            .tags-section .social-link-list li a {
                display: inline-block;
                width: 40px;
                height: 40px;
                line-height: 40px;
                border-radius: var(--radius-xs);
                text-align: center;
                color: var(--color-white);
                background-color: var(--color-primary);
                transition: var(--transition-fast);
            }

                .tags-section .social-link-list li a:hover {
                    border-radius: var(--radius-circle);
                }

                .tags-section .social-link-list li a.facebook {
                    background: #3b5998;
                }

                .tags-section .social-link-list li a.dribble {
                    background: #ea4c89;
                }

                .tags-section .social-link-list li a.twitter {
                    background: #55acee;
                }

                .tags-section .social-link-list li a.linkedin {
                    background: #007bb5;
                }

/* =========================================================
   SECTION HEADERS
   ========================================================= */

.section-header {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

@media (min-width: 992px) {
    .section-header {
        max-width: 70%;
        margin: 0 auto 50px;
    }
}

@media (min-width: 1200px) {
    .section-header {
        max-width: 65%;
    }
}

.section-header h4,
.section-header h2,
.section-header p {
    color: var(--color-white);
}

.section-header h2 {
    position: relative;
    margin-top: -10px;
    margin-bottom: 50px;
}

    .section-header h2::after {
        position: absolute;
        content: "";
        width: 330px;
        height: 21px;
        left: 50%;
        top: calc(100% + 5px);
        transform: translateX(-50%);
        background: url(../../assets/images/title-shape.png) no-repeat;
    }

.section-header.text-left {
    max-width: 100%;
    text-align: left;
}

    .section-header.text-left h2::after {
        left: 0;
        transform: translateX(0);
    }

.section__header h6,
.banner__one .banner__content h6,
.banner__two .banner__content h6,
.banner__three .banner__content h6,
.banner__btngroup .video__btn i,
.infotext p a {
    color: var(--color-primary);
}

/* =========================================================
   BANNERS
   ========================================================= */

.banner__btngroup .lab-btn {
    min-width: 170px;
    background-color: var(--color-white);
    color: var(--color-text-heading);
}

    .banner__btngroup .lab-btn:hover {
        background-color: var(--color-primary);
        color: var(--color-white);
    }

.banner__two .banner__btngroup .lab-btn,
.banner__three .banner__btngroup .lab-btn,
.banner__five .banner__btngroup a:first-child {
    background-color: var(--color-primary);
    color: var(--color-white);
}

    .banner__three .banner__btngroup .lab-btn:last-child {
        background-color: var(--color-secondary);
        color: var(--color-white);
    }

        .banner__three .banner__btngroup .lab-btn:last-child:hover,
        .banner__five .banner__btngroup a:first-child:hover {
            background-color: var(--color-primary-hover);
        }

.banner__five::after {
    position: absolute;
    content: "";
    inset: 0;
    background-color: var(--color-overlay-dark);
}

/* =========================================================
   UTILITIES / COMMON COMPONENTS
   ========================================================= */

.information__icon,
.footer__about ul li a,
.scrollToTop i,
.project__icon,
.testimonial__thumb .thumb i,
.testimonial__three .testimonial__video .icon,
.service__content .round-btn {
    background-color: var(--icon-bg);
    color: var(--color-white);
}

.scrollToTop i {
    border: 1px solid var(--color-border-soft);
}

    .scrollToTop i:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-brand);
    }

.callAaction::after {
    background-color: var(--color-primary);
}

.pageheader__content,
.history__year,
.information__item,
.specialtie__inner,
.testimonial__inner,
.testimonial__navigation .navi,
.work__thumb,
.work__two .work__inner,
.teamMember__two .teamMember__content,
.service__two .service__thumb,
.feature__four .feature__inner,
.feature__three .feature__item,
.feature__two .feature__item {
    text-align: center;
}

    .pageheader__content h2,
    .pageheader__content .breadcrumb .breadcrumb-item a,
    .blog--single .blog__content blockquote p,
    .blog--single .blog__content blockquote i,
    .project__content h4 a,
    .project__content span,
    .work__two .work__content h5,
    .work__thumb span {
        color: var(--color-white);
    }

    .footer__copytext p a,
    .footer__post .footer__wrapper ul li:hover .content h6 a,
    .footer__page .footer__wrapper ul li a:hover,
    .form-message.error,
    .information__content p span,
    .history__year > span span,
    .specialtie__content > span,
    .specialtie__content h2,
    .blog.home .blog__meta ul li i,
    .blog.home .blog__inner:hover .blog__content .read-more,
    .blog.home .blog__inner:hover .blog__content h4 a,
    .testimonial__author .rating i,
    .project__icon:hover,
    .service__content span,
    .service__inner:hover .service__content .read-more,
    .service__inner:hover .service__content h4 a,
    .about__content > h6 {
        color: var(--color-primary);
    }

.header__four .header__top--center .info ul li span,
.header__two .header__top .header__toparea .info ul li .text p,
.misson__tabul li .lab-btn,
.appointment__content input,
.appointment__content input::placeholder,
.service__three .service__content .read-more,
.service__three .service__content h4 a,
.banner__three .banner__content h2,
.banner__two .banner__content h2,
.filters-button-group .button,
.pagination li .page-link {
    color: var(--color-text-heading);
}

.sidebar__categorie .body ul li a i,
.sidebar .body ul li .content span,
.service__three .service__content p,
.feature__three .infotext p {
    color: var(--color-text-body);
}

.filters-button-group .button {
    background-color: var(--color-bg-soft);
}

    .filters-button-group .button.is-checked {
        background-color: var(--color-primary);
        color: var(--color-white);
    }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 575px) {
    .bpc {
        background-position: center;
    }

    .banner__btngroup .lab-btn {
        margin-bottom: 25px;
    }

    .banner__btngroup .video__btn {
        width: 100%;
        justify-content: center;
    }
}
.header__bottom {
    background: #be4d92;
}

    .header__bottom .area .menu ul li > a,
    .header__bottom .area .menu ul li ul li a {
        color: #fff !important;
    }

        .header__bottom .area .menu ul li:hover > a,
        .header__bottom .area .menu ul li > a:hover,
        .header__bottom .area .menu ul li.active > a,
        .header__bottom .area .menu ul li.current-menu-item > a {
            color: #f8eaf3 !important;
        }

/* =========================
   HEADER BRAND OVERRIDE
   ========================= */

/* Main menu background */
.header__four .header__bottom {
    background: #be4d92 !important;
}

    /* Menu links */
    .header__four .header__bottom .menu ul li a {
        color: #ffffff !important;
    }

        /* Hover + active states */
        .header__four .header__bottom .menu ul li:hover > a,
        .header__four .header__bottom .menu ul li a:hover,
        .header__four .header__bottom .menu ul li a.active {
            color: #f8eaf3 !important;
        }

    /* Dropdown background (if you later add submenu) */
    .header__four .header__bottom .menu ul li ul {
        background: #ffffff !important;
    }

        /* Dropdown links */
        .header__four .header__bottom .menu ul li ul li a {
            color: #021738 !important;
        }

            .header__four .header__bottom .menu ul li ul li a:hover {
                color: #be4d92 !important;
                background: #f8eaf3 !important;
            }



.header__bottom {
    margin-bottom: 0;
}

.pageheader {
    margin-top: 0;
}

.faq h3 {
    margin-bottom: 20px;
}

.table td,
.table th {
    vertical-align: middle;
}

.table img {
    max-width: 24px;
}

.dataTable-wrapper .dataTable-top,
.dataTable-wrapper .dataTable-bottom {
    padding: 10px 0;
}