:root {
    --primary-color: #43121C;
    --primary-dark-color: #3E0C19;
    --black-dark: #000;
    --primary-gradient: linear-gradient(90deg, #43121C 0%, #3E0C19 100%);
    --gradient-decor-line: linear-gradient(90deg, #E6C27A 0%, #D4AF37 100%);
    --gradient-heading-text: linear-gradient(90deg, #F1D08A 10%, #E6C27A 55%, #B8964A 80%, #D4AF37 100%);
    --gradient-brand-highlight: linear-gradient(90deg, #E6C27A 0%, #D4AF37 65%, #B8964A 100%);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;

}

/* Navbar header code start--------------------------------------------------------------- */
.main-header {
    background: var(--primary-dark-color);
    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: 110px;
    justify-content: space-between;
}

.main-header .logo img {
    height: 110px;
    display: block;
}


/* Responsive */
@media (max-width: 767px) {
    .header-container {
        height: 56px;
        padding: 0 10px;
    }

    .main-header .logo img {
        height: 70px;
    }

    .header-actions {
        gap: 8px;
    }

}

/* Menu Css  -------------------------------------*/
.custom-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.custom-logo img {
    height: 120px;
    display: block;
}

.custom-main-nav .custom-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 28px;
}

.custom-main-nav .custom-nav-list li a {
    display: block;
    padding: 8px 18px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}

.custom-main-nav .custom-nav-list li a:hover,
.custom-main-nav .custom-nav-list li a:focus {
    background: #fff;
    color: #43121C;
    text-decoration: none;
}

@media (max-width: 991px) {
    .custom-header-container {
        padding: 0 6px;
    }

    .custom-main-nav .custom-nav-list {
        gap: 14px;
    }

    .custom-logo img {
        height: 80px;
    }
}

@media (max-width: 600px) {
    .custom-header-container {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 8px 2px;
        gap: 10px;
    }

    .custom-logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .custom-logo img {
        height: 38px;
    }

    .custom-main-nav {
        width: 100%;
    }

    .custom-main-nav .custom-nav-list {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 6px;
    }

    .custom-main-nav .custom-nav-list li {
        flex: 1 1 auto;
    }

    .custom-main-nav .custom-nav-list li a {
        width: 100%;
        padding: 10px 0;
        border-radius: 9px;
        text-align: center;
        font-size: 14px;
    }
}

/* Navbar header code END-------------------------------------------------------------------- */

/* Banner css code Statt--------------------------------------------------------- */

/* =========================
   HERO BANNER STYLES
   ========================= */
.hero-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    contain: layout paint;
    isolation: isolate;
}

/* 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;
}

/* 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;
    }
}

/* Use full image in mobile with object-fit: cover and full height */
@media (max-width: 576px) {
    .hero-banner {
        aspect-ratio: unset;
        max-height: unset;
        height: 38vw;
        min-height: 170px;
        max-height: 250px;
    }

    .hero-bg {
        object-fit: cover;
        width: 100vw;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}


/*  content section ----------------------------------------------*/
section {
    padding: 44px 0 42px;
}

.primary-content-section {
    background: var(--primary-color, #43121C);
}

.primary-section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    gap: 18px;
    position: relative;
}


.heading-decor-line {
    display: inline-block;
    height: 4px;
    width: 40px;
    border-radius: 2px;
    background: var(--gradient-decor-line);
    opacity: 0.9;
    margin: 0 4px;
}

.heading-gradient-text {
    background: var(--gradient-heading-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-highlight {
    color: #D4AF37;
    background: var(--gradient-brand-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 1px;
}


.primary-section-para {
    color: #fff;
    font-size: 16px;
    text-align: justify;
    line-height: 1.8;
    margin: 0 auto;
}

.alink {
    background: var(--gradient-brand-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 600px) {
    .primary-content-section {
        padding: 28px 5px;
    }

    .primary-section-heading {
        font-size: 1.32rem;
        gap: 10px;
    }

    .heading-decor-line {
        width: 18px;
        height: 3px;
    }

    .heading-gradient-text {
        font-size: 1em;
    }

    .brand-highlight {
        font-size: 1.01em;
    }

    .primary-section-para {
        font-size: 14px;
        line-height: 1.55;
    }
}

/* Profile section --------------------------------------------------------------*/
.profile-sec {
    background-color: #000;
}

.profile-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 32px;
    margin-bottom: 10px;
}

.profile-card {
    background: none;
    border-radius: 20px;
    box-shadow: 0 4px 16px 0 rgba(67, 18, 28, 0.13);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 0;
    padding: 0;
    position: relative;
}

.profile-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 12px 32px 0 rgba(67, 18, 28, 0.16);
}

.profile-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--primary-gradient);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    z-index: 0;
    display: block;
}

.profile-details.glass-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 74px;
    padding: 14px 12px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px) saturate(150%);
    -webkit-backdrop-filter: blur(6px) saturate(150%);
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-top-right-radius: 18px;
    border-top-left-radius: 18px;
    box-shadow: 0 2px 20px 0 rgba(67, 18, 28, 0.06);
    z-index: 1;
    /* Attractive glass style border */
    border: 1.2px solid rgba(255, 255, 255, 0.32);
    margin: 0;
}

.profile-name {
    font-weight: 700;
    font-size: 1.07rem;
    letter-spacing: 1px;
    margin-bottom: 3px;
    /* Remove gradient & transparent text for custom color */
    color: var(--primary-dark-color);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    padding-bottom: 0;
    line-height: 1.1;
}

.profile-name .model-age {
    color: #43121C;
    font-size: 0.97em;
    font-weight: 500;
    margin-left: 7px;
}

.profile-stats {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 7px 10px;
}

.stat {
    display: flex;
    gap: 4px;
    background: rgba(242, 236, 251, 0.66);
    border-radius: 7px;
    box-shadow: 0 2px 6px rgba(67, 18, 28, 0.02);
    padding: 3px 9px;
    font-size: 0.93em;
    align-items: center;
    margin-bottom: 0;
    color: #B8964A;
    border: 1px solid rgba(212, 175, 55, 0.13);
    font-weight: 500;
}

.stat-label {
    color: #B8964A;
    font-weight: 600;
}

.stat-value {
    color: #43121C;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
    .profile-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .profile-card-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .profile-card {
        margin: 0 auto;
        width: 100%;
    }

    .profile-img-wrapper {
        aspect-ratio: 3/4;
    }
}

/* CTA section */
.cta-parallax-section {
    position: relative;
    width: 100%;
    min-height: 340px;
    background: url('../images/cta.webp') center center/cover no-repeat fixed, rgba(62, 12, 25, 0.77);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-parallax-overlay {
    position: absolute;
    inset: 0;
    background: #3e0c1999;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 730px;
    margin: 0 auto;
    padding: 54px 16px 48px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-heading {
    font-size: 2.05rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 1.25em;
    line-height: 1.28;
    background: var(--gradient-brand-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subheading {
    font-size: 1.11rem;
    font-weight: 400;
    display: block;
    margin-top: 0.4em;
    color: #ffd8f0;
    letter-spacing: 0.15em;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
}

.cta-buttons {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1.13rem;
    font-weight: 700;
    border: none;
    border-radius: 22px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(67, 18, 28, 0.09);
    transition: background 0.18s, transform 0.17s;
    cursor: pointer;
    background: var(--gradient-brand-highlight);
}

.cta-call {
    background: var(--primary-gradient);
}

.cta-whatsapp {
    background: #25d366;
}

.cta-telegram {
    background: #229ED9;
}

.cta-btn:hover,
.cta-btn:focus {
    transform: translateY(-3px) scale(1.04);
    filter: brightness(1.09);
}

@media (max-width: 820px) {
    .cta-heading {
        font-size: 1.38rem;
    }

    .cta-content {
        padding: 38px 6px 36px 6px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .cta-content {
        padding: 28px 4px 24px 4px;
    }

    .cta-heading {
        font-size: 1.05rem;
    }

    .cta-subheading {
        font-size: 0.98rem;
    }

    .cta-buttons {
        gap: 13px;
    }

    .cta-btn {
        font-size: 0.99rem;
        padding: 10px 19px;
        width: 100%;
        min-width: 100px;
        text-align: center;
    }
}


/* Hotel cards css */
.hotel-section {
    background: var(--primary-dark-color);
}

.hotel-card {
    background: #fff;
    border: 2px solid #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-card:hover .hotel-img {
    transform: scale(1.1);
}

.hotel-img {
    object-fit: cover;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    width: 100%;
    display: block;
}

.hotel-badge {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark-color));
    color: #fff;
    font-size: 14px;
    z-index: 2;
    letter-spacing: 1px;
    border: 1px solid #fff;
}

.hotel-name-overlay {
    left: 0;
    bottom: 0;
    top: auto;
    z-index: 2;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #e0006c5c;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    text-shadow: 0 2px 8px var(--primary-dark-color);
    letter-spacing: 1px;
    backdrop-filter: blur(2px);
    padding-bottom: 0.7rem !important;
    padding-top: 0.7rem !important;
}

/* 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;
    }
}

/* Contact page csss */

.contact-section {
    background: var(--primary-gradient);
    /* padding: 60px 0; */
    position: relative;
}

.container {
    margin: 0 auto;
    padding: 0 16px;
}

.contact-row-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 56px;
}

.contact-details-card {
    flex: 1 1 320px;
    max-width: 500px;
    background: #000;
    border-radius: 20px;
    box-shadow: 0 6px 32px 0 rgba(65, 26, 20, 0.11);
    padding: 42px 30px 32px 30px;
    color: #fff;
    margin-bottom: 18px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-heading {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.7em;
    letter-spacing: 1px;
    line-height: 1.13;
}

.contact-desc {
    color: #edc7fa;
    font-size: 1.14rem;
    margin-bottom: 1.5em;
}

.contact-info-list {
    list-style: none;
    margin: 0 0 2.1em 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.15em;
}

.contact-info-item {
    display: flex;
    align-items: center;
    color: #efd4f3;
    font-size: 1.09rem;
    gap: 12px;
    transition: background 0.16s;
    padding: 4px 0;
    border-radius: 7px;
}

.contact-info-item:hover {
    background: #262116;
}

.contact-info-item .contact-icon-round {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #312346;
    box-shadow: 0 2px 9px rgba(80, 18, 72, 0.16);
    margin-right: 10px;
    font-size: 1.25em;
    flex-shrink: 0;
}

.contact-info-item a {
    color: inherit;
    text-decoration: none;
    transition: color .16s, text-decoration .16s;
    font-weight: 500;
}

.contact-info-item a:hover,
.contact-info-item a:focus {
    /* color: var(--primary-color, #e0006c); */
    text-decoration: underline;
}

.contact-icon {
    font-size: 1.19em;
    color: var(--primary-color, #e0006c);
    vertical-align: middle;
}

.contact-social {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1.5px solid #34244a;
}

.contact-social-btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #262232;
    color: #fff;
    font-size: 1.7em;
    transition: box-shadow .20s, filter .17s, transform .13s;
    border: none;
    text-decoration: none;
    box-shadow: 0 3px 14px rgba(54, 8, 40, 0.1);
    outline: none;
}

.contact-social-btn.whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 3px 14px #24b05340;
}

.contact-social-btn.telegram {
    background: #229ED9;
    color: #fff;
    box-shadow: 0 3px 14px #229ed955;
}

.contact-social-btn.call {
    background: #34B7F1;
    color: #fff;
    box-shadow: 0 3px 14px #34b7f144;
}

.contact-social-btn:hover,
.contact-social-btn:focus {
    filter: brightness(1.17);
    transform: translateY(-4px) scale(1.11);
    box-shadow: 0 7px 22px rgba(67, 18, 28, 0.16);
}

.contact-form-card {
    flex: 1 1 420px;
    max-width: 540px;
    background: #fff;
    padding: 42px 34px 36px 34px;
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(80, 18, 72, .10);
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 22px;
    margin-bottom: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-form .form-label {
    color: var(--primary-dark-color, #151218);
    font-weight: 600;
    font-size: 1.02rem;
    letter-spacing: 0.2px;
}

.contact-form .form-control,
.contact-form textarea.form-control {
    background: #f7f3fa;
    border: 1.5px solid #e1c9ee;
    box-shadow: none;
    padding: 13px 15px;
    font-size: 1em;
    border-radius: 9px;
    transition: border-color 0.17s, background 0.19s;
    color: #141024;
    resize: none;
    width: 100%;
    min-height: 45px;
}

.contact-form textarea.form-control {
    min-height: 100px;
    max-height: 280px;
}

.contact-form .form-control:focus,
.contact-form textarea.form-control:focus {
    border-color: var(--primary-color, #e0006c);
    background: #fff;
    outline: 2px solid #e0006c33;
}

.contact-submit-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 24px;
    font-size: 1.22em;
    padding: 15px 0;
    cursor: pointer;

    margin-top: 20px;
    box-shadow: 0 4px 16px rgba(130, 18, 74, .10);
    letter-spacing: 0.2px;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
    filter: brightness(1.07);
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 1080px) {
    .contact-row-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 36px;
    }

    .contact-details-card,
    .contact-form-card {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-form-card {
        margin-top: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 34px 0;
    }
}

@media (max-width: 700px) {
    .contact-section {
        padding: 16px 0;
    }

    .container {
        padding: 0 5px;
    }

    .contact-details-card,
    .contact-form-card {
        padding: 12px 4vw 9px 4vw;
        border-radius: 13px;
    }

    .contact-heading {
        font-size: 1.23rem;
    }

    .contact-form-card {
        padding-top: 14px;
    }

    .contact-social {
        gap: 13px;
        padding-top: 13px;
        border-top-width: 1px;
        border-top-style: solid;
    }
}

@media (max-width: 460px) {

    .contact-form-card,
    .contact-details-card {
        padding: 25px
    }

    .contact-heading {
        font-size: 1rem;
    }

    .contact-desc,
    .contact-info-item,
    .contact-form .form-label {
        font-size: 14px;
    }

    .contact-social-btn {
        font-size: 1em;
        width: 36px;
        height: 36px;
    }

    .contact-form .form-control {
        padding: 8px 14px;
    }

    .contact-info-item .contact-icon-round {
        font-size: 14px;
    }

    .contact-details-card {
        min-width: 0;
    }

    .contact-form-card {
        min-width: 0;
    }

    .contact-submit-btn {
        padding: 10px 0;
        font-size: 16px;
    }

    .contact-row-flex {
        gap: 0;
    }
}

/* Blog section css */

/* blog section css */
.blog-section {
    background: var(--primary-gradient);
}

.blog-heading {
    color: var(--primary-color, #E0006C);
    font-weight: 700;
}



.blog-card {
    background: #232323;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 24px 0 rgba(224, 0, 108, 0.13), 0 1.5px 8px 0 rgba(0, 0, 0, 0.10);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;

}

.blog-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 16px 48px 0 rgba(224, 0, 108, 0.22), 0 2px 12px 0 rgba(0, 0, 0, 0.13);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 2px 12px 0 rgba(224, 0, 108, 0.10);
}

.blog-img {
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s;
    border-bottom: 0;
    border-radius: 0 0 2rem 2rem;
    filter: grayscale(10%) brightness(0.98);
}

.blog-card:hover .blog-img {
    transform: scale(1.08) rotate(-1deg);
    filter: grayscale(0%) brightness(1.05);
}

.blog-date-badge {
    z-index: 3;
    background: linear-gradient(90deg, var(--primary-color, #E0006C) 60%, #fff 100%);
    border-radius: 16px 0 16px 16px;
    padding: 0.35rem 1.1rem 0.35rem 0.9rem;
    box-shadow: 0 2px 8px rgba(224, 0, 108, 0.10);
    font-size: 14px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.blog-date {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0.3em;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.13);
}

.blog-date i,
.blog-date svg {
    font-size: 14px;
    margin-right: 0.3em;
    color: #fff;
    opacity: 0.85;
}

.blog-title {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.25rem;
}

.blog-desc {
    color: #d1cbe1;
    margin-bottom: 1.2rem;
    font-size: 14px;
    display: none;
}

.blog-link {
    color: #e0006c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
    letter-spacing: 0.2px;
}

.blog-link:hover {
    text-decoration: underline;
    color: #fff;
}

.blog-card .p-3 {
    padding-top: 1.5rem !important;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (max-width: 576px) {


    .blog-date-badge {
        font-size: 12px;
        padding: 0.22rem 0.7rem 0.22rem 0.5rem;
        min-width: 90px;
    }
}