:root {
    --primary-color: #e0006c;
    --primary-dark-color: #a0004a;
    --primary-light-color: #ff79ba;
    --black-dark: #000;
    --primary-gradient: linear-gradient(90deg, #e0006c 0%, #a0004a 100%);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;

}

/* Navbar header code start--------------------------------------------------------------- */
.main-header {
    background: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 0;
}

.header-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    height: 70px;
    justify-content: space-between;
}

.main-header .logo img {
    height: 50px;
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-actions a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    color: #222;
    font-size: 1rem;
    transition: color 0.2s;
    padding: 7px 12px;
    border-radius: 24px;
    background: #f1f1f1;
    gap: 7px;
}

.header-actions a.whatsapp {
    color: #25D366;
    background: #e8f7ee;
}

.header-actions a.whatsapp:hover {
    background: #25d36622;
}

.header-actions a.phone {
    color: #e0006c;
    background: #ffeaf4;
}

.header-actions a.phone:hover {
    background: #ffeaf4b6;
}

.header-actions svg {
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* Responsive */
@media (max-width: 767px) {
    .header-container {
        height: 56px;
        padding: 0 10px;
    }

    .main-header .logo img {
        height: 38px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions a {
        font-size: 0;
        padding: 7px 7px;
        background: none;
    }

    .header-actions a span {
        display: none;
    }

    .header-actions svg {
        width: 28px;
        height: 28px;
    }
}

/* Navbar header code END-------------------------------------------------------------------- */

/* Banner css code Statt--------------------------------------------------------- */

/* =========================
   HERO BANNER STYLES
   ========================= */
.hero-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* prevents CLS before image loads */
    max-height: 70vh;
    /* limits height on desktops */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    contain: layout paint;
    /* isolates rendering area */
    isolation: isolate;
    /* separates stacking context */
}

/* Hero Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    will-change: transform, opacity;
    transition: opacity 1.2s ease, transform 1.2s ease;
    opacity: 0;
}

.hero-bg[src] {
    opacity: 1;
}

/* Overlay (semi-transparent gradient) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(224, 0, 108, 0.45), rgba(0, 0, 0, 0.25));
    z-index: 1;
    pointer-events: none;
    /* improves interactivity */
}

/* Hero Text Content */
.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    will-change: opacity, transform;
    animation: fadeUp 1s ease forwards;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin: 0;
}

/* Fade-up animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Tweaks */
@media (max-width: 991px) {
    .hero-banner {
        aspect-ratio: 3 / 2;
        max-height: 60vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* About content section ----------------------------------------------*/
section {
    padding: 44px 0 42px;
}

.about-section {
    background: #000;
    margin: 0;
}


.about-heading {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: #e0006c;
    margin-bottom: 20px;
    line-height: 1.18;
    letter-spacing: 1.1px;
}

.about-heading span {
    color: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(121, 23, 69) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.para {
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
    line-height: 1.5;
    margin: 0 auto;
}

.about-desc {
    color: var(--primary-dark-color);
    background: rgba(255, 255, 255);
    padding: 15px 22px 18px 22px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(224, 0, 108, 0.06);
}

@media (max-width: 991px) {
    .about-section {
        padding: 34px 0 30px 0;
    }

    .about-heading {
        font-size: 1.25rem;
    }

    .about-desc {
        padding: 13px 10px 13px 10px;
    }

    .para {
        font-size: 12px;
    }
}

/* Profile section --------------------------------------------------------------*/
.profile-section {
    background: var(--primary-dark-color);
}

.profile-heading {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .7px;
}

.profile-heading span {
    color: rgb(247 247 247);
    background: linear-gradient(132deg, rgb(255, 255, 255) 0%, rgb(120 115 117) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-card {
    background: #fff;
    border-radius: 12px;
    border: 3px solid #fff;
    box-shadow: 0 4px 20px 0 rgba(30, 0, 50, .07);
    /* padding: 0 0 24px 0; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .23s cubic-bezier(.4, 0, .2, 1), box-shadow .23s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}

.profile-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 36px 0 rgba(224, 0, 108, .22);
}

.profile-img-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f6f6f6;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    min-height: 260px;
}

.verified-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff;
    border-radius: 50%;
    padding: 3px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 7px 0 rgba(30, 0, 50, .06);
    z-index: 2;
}

/* Overlayed info on image */
.profile-info-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    background: rgb(0 0 0 / 60%);
    /* Glassy effect */
    box-shadow: 0 3px 16px 0 rgba(30, 0, 50, .06);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 12px 17px 10px 17px;
}

.profile-info-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.profile-info-left {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.profile-info-overlay .profile-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: 0;
    letter-spacing: .3px;
}

.profile-info-overlay .profile-age {
    color: #dadada;
    font-size: .9rem;
    font-weight: 400;
}

.profile-actions-inline {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.profile-actions-inline a {
    /* width: 34px; */
    /* height: 34px; */
    font-size: 1rem;
}

.profile-actions .profile-whatsapp {
    color: #25d366;

}

.profile-actions .profile-whatsapp:hover {
    color: #d0ffee;
}

.profile-actions .profile-call {
    color: var(--primary-color, #e0006c);

}

.profile-actions .profile-call:hover {
    color: #ffeaf4b6;
}


/* Hide the old (unused) .profile-info for safety -- don't remove in case the markup above uses it elsewhere */
.profile-info {
    display: none !important;
}

@media (max-width: 991px) {
    .profile-heading {
        font-size: 1.25rem;
    }

    .profile-section {
        padding: 34px 0 30px;
    }

    .profile-card {
        border-radius: 15px;
    }

    .profile-img-wrapper {
        min-height: 200px;
    }

    .profile-info-overlay {
        padding: 14px;
    }

    .profile-info-flex {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 7px;
    }

    .profile-actions-inline {
        justify-content: flex-start;
    }
}

/* Highlight - Side Photo Section css ----------------------------------------------------------*/

.highlight-side-section {
    background: #fff;
}

.highlight-side-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 0 18px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(224, 0, 108, 0.11);
    /* e0006c (primary) */
    background: #faf6f7;
}

.highlight-side-photo {
    flex: 1 1 330px;
    max-width: 380px;
    min-width: 240px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-side-photo img {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(224, 0, 108, 0.20);
    object-fit: cover;
    border: 3px solid black;
}

.highlight-side-content {
    flex: 2 1 480px;
    padding: 0 0 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-side-heading {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #e0006c;
    /* Primary pink */
    line-height: 1.15;
    letter-spacing: .7px;
}

.highlight-side-heading span {
    color: #202020;
    background: linear-gradient(90deg, #7c7a7a 0%, #6c0e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-side-text {
    color: #2a1a23;
    /* Deep primary dark */
    background: rgba(255, 255, 255, 0.9);
    padding: 19px 22px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(224, 0, 108, 0.06);
    margin: 0;
    border: 3px solid var(--primary-color);
}

/* Responsive styles */
@media (max-width: 991px) {
    .highlight-side-container {
        flex-direction: column;
        gap: 28px;
        padding: 10px 6px;
    }

    .highlight-side-section {
        padding: 34px 0 30px 0;
    }

    .highlight-side-photo {
        max-width: 100%;
        min-width: 0;
    }

    .highlight-side-content {
        padding: 0;
        width: 100%;
    }

    .highlight-side-heading {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .highlight-side-text {
        padding: 13px 11px;
    }
}

.a-link {
    color: #000;
    font-weight: 600;
}

.a-link:hover {
    color: #4a4949;
    text-decoration: none;
}

.a-link2 {
    color: var(--primary-color);
    font-weight: 600;
}

.a-link2:hover {
    color: var(--primary-dark-color);
    text-decoration: none;
}

/* Footer -----------------------------------------------*/
.footer {
    background: rgb(0, 0, 0) !important;
    color: #e2e2e2 !important;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.footer .container {
    padding-top: 1.5rem;
}

.footer .row {
    margin-bottom: 0;
}

.footer img {
    width: 95px;
}

.footer .fw-bold {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.footer-heading {
    font-size: 1.09rem;
    font-weight: bold;
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
    color: #f7ddf3;
}

.footer small,
.footer .text-secondary {
    color: #b0aec7 !important;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.footer ul {
    padding-left: 0;
    margin-bottom: 0;
}

.footer ul li {
    margin-bottom: 7px;
    font-size: 14px;
}

.footer ul li:last-child {
    margin-bottom: 0;
}

.footer .text-light,
.footer a.text-light {
    color: #f7ddf3 !important;
}

.footer a.text-decoration-none {
    text-decoration: none;
    transition: color 0.16s;
}

.footer a:hover,
.footer a:focus {
    color: #ffa4d2 !important;
}

.footer .bi {
    font-size: 1.15em;
    vertical-align: baseline;
    color: #e0006c;
}

.footer .border-top {
    border-top: 1.5px solid #393068 !important;
}

.footer .text-center {
    font-size: 14px;
    color: #bcaacb !important;
}

@media (max-width: 991px) {
    .footer .container {
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
    }

    .footer .fw-bold {
        font-size: 1rem;
    }

    .footer ul li {
        margin-bottom: 4px;
        font-size: 12px;
    }

    .footer .row {
        gap: 0;
    }

    .footer {
        font-size: 12px;
    }

    .footer .text-center {
        font-size: 12px;
    }

    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 576px) {
    .footer {
        margin-bottom: 32px;
    }
}

/*------------- footer icons css ---------------------*/
.fixed-icons {
    position: fixed;
    bottom: 4px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1000;
}

.fixed-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border: none;
    text-decoration: none;
}

.fixed-icons a.call-icon {
    background: #34B7F1;
    color: #fff;
}

.fixed-icons a.whatsapp-icon {
    background: #25d366;
    color: #fff;
}

.fixed-icons a .fa-telegram,
.fixed-icons a .fab.fa-telegram {
    color: #fff;
}



@media screen and (max-width: 600px) {
    .fixed-icons {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100vw;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 0;
        /* background: rgba(20, 20, 20, 0.97); */
        padding: 0 0 0 0;
        z-index: 1200;
        box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.13);

    }

    .fixed-icons a {
        width: 100%;
        height: 32px;
        border-radius: 0;
        margin: 0;
        flex: 1 1 0;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        background: none;
        box-shadow: none;
        transition: background 0.2s, color 0.2s;
        display: flex;
    }

    .fixed-icons a:last-child {
        border-right: none;
    }

    .fixed-icons a.call-icon {
        background: #34B7F1;
        color: #fff;
    }

    .fixed-icons a.whatsapp-icon {
        background: #25d366;
        color: #fff;
    }

    .fixed-icons a .fa-telegram,
    .fixed-icons a .fab.fa-telegram {
        color: #ffffff;
    }

    .fixed-icons a:hover {
        filter: brightness(1.1);
        transform: none;
    }
}