/* ============================================
   EVENTCRAFT - COMPLETE STYLESHEET
   ============================================ */
   @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


:root {
    --primary: #ef2f5b;
 /*   --primary-dark: #e05500;   */
 --primary-dark: #f14c73;
    --primary-light: #fff0e6;
    --dark: #1a1a2e;
    --dark2: #16213e;
    --text: #222222;
    --text-light: #222222;
    --white: #fff;
    --light: #f8f9fa;
    --border: #e8e8e8;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 36px rgba(255, 106, 0, 0.18);
    --radius: 14px;
    --transition: all 0.32s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-pad {
    padding: 30px 0;
}

/* ---- SECTION HEADER ---- */   
.section-header {
    text-align: center;
    margin-bottom: 26px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.93rem;
    border: 2px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.93rem;
    border: 2px solid rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-card {
    color: #000000;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-block;
    margin-top: 10px;
}

.btn-card:hover {
    letter-spacing: 0.04em;
}

.social-text {
    color: #e05500
}

/* ---- HEADER ---- */      /*
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.12);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.logo-icon {
    color: var(--primary);
    margin-right: 4px;
    font-size: 1.1rem;
}


.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
    min-width: 200px;
    padding: 8px 0;
    z-index: 200;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.btn-header {
    background: var(--primary);
    color: var(--white);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 0.87rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-header:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}     
 */
/* ---- HERO SLIDER ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.85s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    padding: 0 1.5rem;
    max-width: 780px;
}

.slide.active .slide-content {
    animation: slideUp 0.9s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 18px;
}

.slide-content h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.slide-content p {
    font-size: clamp(0.98rem, 1.8vw, 1.15rem);
    margin-bottom: 34px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(4px);
}

.slide-btn:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 0, 0, 0.4);
}

.slide-btn.prev {
    left: 28px;
}

.slide-btn.next {
    right: 28px;
}

.slide-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.25);
}

/* ---- EVENTS CAROUSEL SECTION ---- */
.events-carousel-section {
    padding: 50px 0;
}

.dark-section {
    background: var(--dark);
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.42s ease;
    will-change: transform;
}

/* EVENT CARD */
.event-card {
    min-width: 300px;
    max-width: 300px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    flex-shrink: 0;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.event-card-dark {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-card-dark:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.event-card-img {
    height: 210px;
    background-size: cover;
    background-position: center;
}

.event-card-body {
    padding: 22px 24px;
}

.event-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.event-card-dark .event-card-body h3 {
    color: var(--white);
}

.event-card-body p {
    font-size: 0.87rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.event-card-dark .event-card-body p {
    color: rgba(255, 255, 255, 0.52);
}

/* CAROUSEL BUTTONS */
.carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.carousel-btn-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.carousel-btn-light:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.c-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.c-dot.active {
    background: var(--primary);
    transform: scale(1.35);
}

.dark-section .c-dot {
    background: rgba(255, 255, 255, 0.25);
}

.dark-section .c-dot.active {
    background: var(--primary);
}

/* ---- WHY CHOOSE US ---- */
.why-us {
    background: var(--dark);
    padding: 50px 0;
}

.why-us .section-header h2 {
    color: var(--white);
}

.why-us .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.why-us .section-tag {
    background: rgba(255, 106, 0, 0.2);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 28px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 106, 0, 0.12);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 1.6rem;
    margin-bottom: 16px;
    display: block;
}

.why-card h3 {
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.88rem;
}

/* ---- TESTIMONIALS ---- */
.testimonial-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 46px 42px;
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    font-size: 5rem;
    color: var(--primary);
    font-family: Georgia, serif;
    line-height: 0.6;
    opacity: 0.15;
    position: absolute;
    top: 30px;
    left: 34px;
}

.testimonial-card>p {
    font-size: 1rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 26px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    text-align: center;
}

.reviewer {
  /*  display: flex;  */
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.reviewer strong {
    display: block;
    color: var(--dark);
    font-size: 0.97rem;
    text-align: center;
}
.reviewer {
    text-align: center !important;
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--text-light);
    align-items: center !important;
}

.stars {
    color: var(--primary);
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-align: center;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
}

.t-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.t-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.t-dots {
    display: flex;
    gap: 8px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.t-dot.active {
    background: var(--primary);
    transform: scale(1.35);
}

.impact {
    color: white !important;
}

.impact-section {
    background: #16213e;
    text-align: center;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    color: #222222;
    margin-bottom: 40px;
}

.impact-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.impact-item {
    flex: 1;
    min-width: 150px;
}

.impact-item h3 {
    font-size: 36px;
    color: #ef2f5b;
    margin-bottom: 5px;
}

.impact-item p {
    font-size: 14px;
    color: white;
}

/* ---- PARTNERS ---- */
.partners-track-wrap {
    overflow: hidden;
    position: relative;
}

.partners-track-wrap::before,
.partners-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.partners-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.partners-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.partners-track {
    display: flex;
    gap: 24px;
    animation: scrollPartners 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    min-width: 200px;
    height: 120px;
    display: flex;
 /*   align-items: center;  */
    justify-content: center;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
    cursor: default;
    flex-shrink: 0;
    letter-spacing: -0.5px;
}

.partner-logo:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow);
}

/* ---- PAGE BANNER ---- */
.page-banner {
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 76px;
}

.page-banner-content {
    color: var(--white);
    padding: 0 2rem;
}

.page-banner-content .section-tag {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.page-banner-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 10px 0 0px;
  /*  color: #ff4d6d;   */
}

.page-banner-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 0.88rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    margin: 0 6px;
}

/* ---- INTRO GRID ---- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.intro-text .section-tag {
    margin-bottom: 14px;
}

.intro-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 0.96rem;
}

.intro-img {
    position: relative;
}

.intro-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-list {
    margin: 18px 0 28px;
}

.about-list li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.about-list li:last-child {
    border-bottom: none;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 22px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
}

.about-badge strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge span {
    font-size: 0.76rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ---- DETAIL GRID (Social / Corporate Events) ---- */
.detail-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.detail-card:nth-child(even) .detail-img {
    order: 2;
}

.detail-card:nth-child(even) .detail-body {
    order: 1;
}

.detail-img {
    min-height: 380px;
    background-size: cover;
    background-position: center;
}

.detail-body {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    width: fit-content;
}

.detail-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.detail-body>p {
    color: var(--text-light);
    font-size: 0.94rem;
    margin-bottom: 16px;
}

.detail-list {
    margin-bottom: 24px;
}

.detail-list li {
    padding: 7px 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.detail-list li:last-child {
    border-bottom: none;
}

/* ---- MINI CTA ---- */
.mini-cta {
    background: var(--dark);
    padding: 70px 0;
    text-align: center;
}

.mini-cta h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.mini-cta p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    font-size: 0.98rem;
}

/* ---- GALLERY PAGE ---- */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 9px 24px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    font-family: inherit;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gal-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gal-item:hover img {
    transform: scale(1.08);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.82) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: var(--transition);
}

.gal-item:hover .gal-overlay {
    opacity: 1;
}

.gal-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.92rem;
}

.gal-item.hidden {
    display: none;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lb-close {
    position: absolute;
    top: 22px;
    right: 26px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
}

.lb-close:hover {
    color: var(--primary);
}

.lb-img-wrap {
    text-align: center;
    max-width: 880px;
    padding: 0 70px;
}

.lb-img-wrap img {
    max-height: 78vh;
    border-radius: 10px;
}

.lb-img-wrap p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    font-size: 0.9rem;
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.lb-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lb-prev {
    left: 18px;
}

.lb-next {
    right: 18px;
}

/* ---- ABOUT PAGE ---- */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.mv-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.mv-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.mv-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.team-img {
    height: 260px;
    background-size: cover;
    background-position: center top;
}

.team-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin: 18px 20px 4px;
}

.team-card span {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0 20px 24px;
}

/* ---- SERVICES PAGE ---- */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-full-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-full-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.svc-icon-wrap {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.service-full-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffa00;
    margin-bottom: 12px;
}

.service-full-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.process-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.18;
    line-height: 1;
    margin-bottom: 12px;
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-family: inherit;
    font-size: 0.91rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.09);
}

.form-group textarea {
    resize: vertical;
}

.form-msg {
    margin-top: 12px;
    font-size: 0.9rem;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.form-msg.success {
    background: #e8f9ee;
    color: #1a7a3a;
    display: block;
}

.form-msg.error {
    background: #fde8e8;
    color: #c0392b;
    display: block;
}

.contact-info-box {
    background: var(--dark);
    color: var(--white);
    padding: 38px 34px;
    border-radius: var(--radius);
}

.contact-info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 26px;
    color: var(--white);
}

.info-item {
    display: flex;
    gap: 13px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.info-item span {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ---- FOOTER ---- */
.footer {
    background: var(--dark2);
    color: rgba(255, 255, 255, 0.65);
    padding: 68px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 46px;
    margin-bottom: 46px;
}

.footer-brand p {
    font-size: 0.87rem;
    margin: 16px 0 22px;
    color: rgb(255 255 255);
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col ul a {
    color: rgba(255, 255, 255);
    font-size: 0.87rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-col>p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: inherit;
    font-size: 0.87rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.contact-mini {
    font-size: 0.84rem;
    color: rgba(255, 255, 255);
    line-height: 2.2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    text-align: center;
    font-size: 0.83rem;
    color: rgb(255 255 255);
}

/* ---- BACK TO TOP ---- */
.back-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}

.back-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ============ BOOTSTRAP ICONS STYLING ============ */

/* General icon styling */
.bi {
    display: inline-block;
    font-size: 1.2em;
    vertical-align: middle;
    margin-right: 8px;
    color: inherit;
    transition: var(--transition);
}

/* Info item icons */
.info-item .bi {
    font-size: 1.3em;
    color: var(--primary);
    margin-right: 12px;
    min-width: 20px;
    text-align: center;
}

/* Contact mini icons */
.contact-mini .bi {
    font-size: 1.2em;
    color: var(--primary);
    margin-right: 10px;
    min-width: 18px;
}

/* CTA icons */
.cta-icon .bi {
    font-size: 1.8em;
    display: block;
    margin-right: 0;
    margin-bottom: 12px;
    color: var(--primary);
}

.cta-item:hover .cta-icon .bi {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Why card icons */
.why-icon .bi {
    font-size: 1.8em;
    color: var(--primary);
    display: block;
    margin-right: 0;
    margin-bottom: 16px;
}

.why-card:hover .why-icon .bi {
    color: var(--primary-dark);
    transform: scale(1.15);
}

/* Detail list icons */
.detail-list .bi {
    font-size: 1.1em;
    color: var(--primary);
    margin-right: 10px;
    min-width: 16px;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.detail-list li .bi {
    flex-shrink: 0;
    margin-top: 2px;
}

/* About list icons */
.about-list .bi {
    font-size: 1.15em;
    color: var(--primary);
    margin-right: 10px;
    min-width: 18px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.about-list li .bi {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Social button icons */
.social-btn .bi {
    font-size: 1.4em;
    display: block;
    margin: 0;
    color: inherit;
}

.social-btn:hover .bi {
    color: var(--primary);
    transform: scale(1.1);
}

/* Hover effects for interactive icons */
a:hover .bi,
button:hover .bi {
    transition: var(--transition);
}

/* Responsive icon sizing */
@media (max-width: 768px) {
    .bi {
        font-size: 1em;
    }

    .cta-icon .bi {
        font-size: 1.5em;
    }

    .why-icon .bi {
        font-size: 2em;
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .intro-img img {
        height: 360px;
    }

    .detail-card {
        grid-template-columns: 1fr;
    }

    .detail-card:nth-child(even) .detail-img,
    .detail-card:nth-child(even) .detail-body {
        order: unset;
    }

    .detail-img {
        min-height: 260px;
    }

    .detail-body {
        padding: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 60px 0;
    }

    .nav {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        z-index: 999;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 13px 2rem;
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        display: none !important;
        position: static;
        transform: none;
        box-shadow: none;
        background: #f5f5f5;
        border-radius: 0;
    }

    .dropdown.open .dropdown-menu {
        display: block !important;
    }

    .btn-header {
        display: none;
    }

    .burger {
        display: flex;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-full-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .event-card {
        min-width: 270px;
        max-width: 270px;
    }

    .page-banner {
        height: 320px;
        margin-top: 0px;
    }
}

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .slide-content h1 {
        font-size: 1.9rem;
    }

    .event-card {
        min-width: 240px;
        max-width: 240px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* SLIDES */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ACTIVE SLIDE */
.slide.active {
    opacity: 1;
    z-index: 1;
}

/* BACKGROUND IMAGES */
.slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58)),
        url('../assets/images/wedding.png') center/cover no-repeat;
}

.slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58)),
        url('../assets/images/seminars.png') center/cover no-repeat;
}

.slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58)),
        url('../assets/images/productlunch.png') center/cover no-repeat;
}

.slide-4 {
    background: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58)),
        url('../assets/images/home_img4.png') center/cover no-repeat;
}

/* CONTENT */
.slide-content {
    color: #fff;
    max-width: 700px;
}

.slide-tag {
    background: #ef2f5b;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.slide-content h1 {
    font-size: 42px;
    margin: 15px 0;
}

.slide-content p {
    margin-bottom: 20px;
}

/* BUTTONS */
.btn-primary {
    background: #ef2f5b;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

/* NAV BUTTONS */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: #4a4748a1;
    color: #ffffff;
    border: none;
 /*   padding: 10px;  */
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* MOBILE */
@media(max-width:768px) {
    .slide-content h1 {
        font-size: 28px;
    }
}

.why-icon i {
    font-size: 28px;
    color: #ef2f5b;
}

.why-card {
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
}

/* COMMON STYLE */
.event-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px 10px 0 0;
}

/* SOCIAL EVENTS ONLY */
.event-img1 {
    background-image: url('https://images.unsplash.com/photo-1529636798458-92182e662485?auto=format&fit=crop&w=600&q=80');
    /* Engagement */
}

.event-img2 {
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=600&q=80');
    /* Reception */
}

.event-img3 {
    background-image: url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=600&q=80');
    /* Birthday */
}

.event-img4 {
    background-image: url('https://images.unsplash.com/photo-1578357078586-491adf1aa5ba?auto=format&fit=crop&w=600&q=80');
    /* Anniversary */
}

.event-img4 {

    background-image: url('https://images.unsplash.com/photo-1546015720-b8b30df5aa27?auto=format&fit=crop&w=600&q=80');
    /* Baby Shower */
}

.events-grids {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-items: center;
}

/* All cards same width */
.event-card {
    width: 100%;
    max-width: 320px;
    background: #ef2f5b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Center LAST card perfectly */
.events-grids .event-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
}

/* Image */
.event-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

/* Content */
.event-card-body {
    padding: 15px;
    text-align: left;
}

/* Mobile */
@media (max-width: 768px) {
    .events-grids {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   BACKGROUND IMAGES - REFACTORED FROM INLINE STYLES
   ======================================== */

/* INDEX PAGE - SOCIAL EVENTS CAROUSEL */
.event-card-img1 {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=600&q=80');
}

.event-card-img2 {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=600&q=80');
}

.event-card-img3 {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1529543544282-ea669407fca3?auto=format&fit=crop&w=600&q=80');
}

.event-card-img4 {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1578357078586-491adf1aa5ba?auto=format&fit=crop&w=600&q=80');
}

.event-card-img5 {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1546015720-b8b30df5aa27?auto=format&fit=crop&w=600&q=80');
}

.event-card-img6 {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=600&q=80');
}

/* INDEX PAGE - CORPORATE EVENTS CAROUSEL */
.corp-event-img1 {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=600&q=80');
}

.corp-event-img2 {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=600&q=80');
}

.corp-event-img3 {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?auto=format&fit=crop&w=600&q=80');
}

.corp-event-img4 {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1528605248644-14dd04022da1?auto=format&fit=crop&w=600&q=80');
}

.corp-event-img5 {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=600&q=80');
}

.corp-event-img6 {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1606761568499-6d2451b23c66?auto=format&fit=crop&w=600&q=80');
}

/* PAGE BANNERS */
.page-banner-social {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.6)), url('../assets/images/socialevents.png');
}

.page-banner-about {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.6)), url('../assets/images/aboutus.png');
}

.page-banner-corporate {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.6)), url('../assets/images/corporateevents.png');
}

.page-banner-services {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.6)), url('../assets/images/services.png');
}

.page-banner-contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.6)), url('../assets/images/contact.png');
}

.page-banner-gallery {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=1600&q=80');
}

/* SOCIAL EVENTS DETAIL CARDS */
.detail-img-wedding {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-image: url('../assets/images/servicepage/wedding.png');
}

.detail-img-birthday {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-image: url('../assets/images/servicepage/birthday.png');
}

.detail-img-engagement {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1529543544282-ea669407fca3?auto=format&fit=crop&w=700&q=80');
}

.detail-img-babyshower {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-image: url('../assets/images/servicepage/babyshower.png');
}

.detail-img-anniversary {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-image: url('../assets/images/servicepage/anniversary.png');
}

.detail-img-festival {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-image: url('../assets/images/servicepage/festiveevent.png');
}

/* CORPORATE EVENTS DETAIL CARDS */
.corp-detail-img-conference {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-image: url('../assets/images/servicepage/conferences.png');
}

.corp-detail-img-productlaunch {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-image: url('../assets/images/servicepage/productlaunch.png');
}

.corp-detail-img-teambuilding {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-image: url('../assets/images/servicepage/teambuilding.png');
}

.corp-detail-img-gala {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-image: url('../assets/images/servicepage/award.png');
}

.corp-detail-img-exhibition {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-image: url('../assets/images/servicepage/exhibitions.png');
}

.corp-detail-img-seminar {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-image: url('../assets/images/servicepage/training.png');
}

/* TEAM MEMBER IMAGES */
.team-img-arjun {
    height: 260px;
    background-size: cover;
    background-position: center top;
    background-image: url('../assets/images/placeholder.jpg');
}

.team-img-priya {
    height: 260px;
    background-size: cover;
    background-position: center top;
    background-image: url('../assets/images/placeholder.jpg');
}

.team-img-rohan {
    height: 260px;
    background-size: cover;
    background-position: center top;
    background-image: url('../assets/images/placeholder.jpg');
}

.team-img-kavya {
    height: 260px;
    background-size: cover;
    background-position: center top;
    background-image: url('../assets/images/placeholder.jpg');
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

.faq-item summary {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 25px;
}

/* Remove default arrow */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Custom arrow ▼ */
.faq-item summary::after {
    content: "▼";
    position: absolute;
    right: 0;
    font-size: 14px;
    transition: 0.3s ease;
}

/* Rotate arrow when open */
.faq-item[open] summary::after {
    transform: rotate(180deg);
}

/* Answer */
.faq-item p {
    margin-top: 10px;
    color: #555;
}

.social-float {
    position: fixed;
    top: 75%;
    left: 15px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 9999;
}

.social-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Colors */
.fb {
    background: #1877f2;
}

.wa {
    background: #25d366;
}

.ig {
    background: #ef2f5b;
}

.ln {
    background: #0a66c2;
}

/* Hover */
.social-btn:hover {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .social-float {
        display: none;
    }
}

/* Hide by default */
.mobile-bottom-bar {
    display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {

    body {
        padding-bottom: 65px;
        /* prevent overlap */
    }

    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: #2f3e4e;
        z-index: 9999;
    }

    .mobile-bottom-bar .bar-item {
        flex: 1;
        text-align: center;
        color: #ffffff;
        text-decoration: none;

        display: flex;
        justify-content: center;
        align-items: center;

        font-size: 20px;
        position: relative;
    }

    /* Middle text (Enquiry) */
    .mobile-bottom-bar .enquiry {
        font-size: 16px;
        font-weight: 500;
    }

    /* Divider lines */
    .mobile-bottom-bar .bar-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 15px;
        height: 30px;
        width: 1px;
        background: rgba(255, 255, 255, 0.2);
    }

    /* Icons */
    .mobile-bottom-bar i {
        font-size: 22px;
    }

    /* Click effect */
    .mobile-bottom-bar .bar-item:active {
        background: rgba(255, 255, 255, 0.1);
    }
}

/*************************************************/
/* SECTION */
.ev-section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  text-align: center; /* ✅ CENTER */
}

.ev-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.ev-subtitle {
  color: #666;
  max-width: 650px;
  margin: 0 auto 40px; /* ✅ CENTER ALIGN */
  line-height: 1.6;
}

/* WRAPPER */
.ev-slider-wrap {
  position: relative;
  overflow: hidden;
}

/* MOBILE SPACE */
@media(max-width:768px){
  .ev-slider-wrap {
    padding: 0 15px;
  }
}

/* TRACK */
.ev-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

/* CARD */
.ev-card {
  flex: 0 0 calc(33.33% - 14px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.ev-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CARD CONTENT */
.ev-card-body {
  background: #ef2f5b;
  color: #fff;
  padding: 18px;
  text-align: left;
}

.ev-card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.ev-card-body p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.ev-card-body a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

/* BUTTONS */
.ev-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #ef2f5b;
  background: #fff;
  cursor: pointer;
  z-index: 10;
}

.ev-prev { left: 0; }
.ev-next { right: 0; }

/* RESPONSIVE */
@media(max-width:768px){
  .ev-card { flex: 0 0 calc(50% - 10px); }
}
@media(max-width:500px){
  .ev-card { flex: 0 0 100%; }
}

.ev-dark-bg {
  background-color: #1a1a2e;
  padding: 60px 20px;
}

/* Optional: make text visible on dark background */
.ev-dark-bg .ev-title {
  color: #ffffff;
}

.ev-dark-bg .ev-subtitle {
  color: #cccccc;
}

/* Optional: card styling for better contrast */
.ev-dark-bg .ev-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.events-section {
  padding: 50px;
  background: #0f1226;
  color: #fff;
  text-align: center;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden; /* IMPORTANT */
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.event-card {
  min-width: 300px;
  height: 200px;
  background: #1c1f3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.prev { left: 0; }
.next { right: 0; }

@media(max-width:768px){
.slide-btn.prev{
    display: none;
}
.slide-btn.next {
    display: none;
}
}

.whitecolor{
    color: #ffffff !important;
}

.service-full-card {
    background: #1c1f3a;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    max-width: 320px;
}

/* IMAGE */
.svc-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ICON */
.svc-icon-wrap {
    font-size: 30px;
    color: #ef2f5b;
    margin-bottom: 10px;
}

/* TEXT */
.service-full-card h3 {
    margin: 10px 0;
}

.service-full-card p {
    font-size: 14px;
    color: #ccc;
}

/* BUTTON */
.btn-card {
    display: inline-block;
    margin-top: 10px;
    color: #ef2f5b;
    text-decoration: none;
}


/*****************popup********************/
/* Button */
/* Overlay */
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease;
}

/* Popup Card */
.popup-content {
    width: 90%;
    max-width: 420px;
    margin: auto;
    margin-top: 6%;
    padding: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    animation: slideUp 0.4s ease;
}

/* Heading */
.popup-content h2 {
    margin-bottom: 5px;
    color: #ef2f5b;
}

.subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 22px;
    cursor: pointer;
    color: #555;
}

/* Floating Inputs */
.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.input-group textarea {
    resize: none;
    height: 80px;
}

/* Labels */
.input-group label {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #777;
    font-size: 13px;
    pointer-events: none;
    transition: 0.3s;
    background: #fff;
    padding: 0 5px;
}

/* Floating effect */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -8px;
    font-size: 11px;
    color: #ef2f5b;
}

/* Button */
.popup-content button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ef2f5b, #ef2f5b);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.popup-content button:hover {
    transform: scale(1.03);
}

/* Animations */
@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.whiteorange{
    color: #ef2f5b;
}
/****************************************/

.burger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: rgb(0, 0, 0); /* change color here */
  margin: 2% 0;
}


/********************************************************************************************/

 /* MAIN SECTION */
.wedding-section-box{
    width:100%;
    max-width:1150px;
    margin:0px auto;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    display:flex;
    align-items:stretch;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* LEFT SLIDER */
.wedding-slider-side{
    flex:1;
    min-width:50%;
    position:relative;
}

.customWeddingSlider{
    width:100%;
    height:100%;
}

.customWeddingSlider .swiper-slide{
    width:100%;
    height:100%;
}

.customWeddingSlider .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* RIGHT CONTENT */
.wedding-content-side{
    flex:1;
    padding:45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.wedding-content-side h3{
    font-size:40px;
    color:#111;
    margin-bottom:20px;
    line-height:1.3;
}

.wedding-content-side p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

/* LIST */
.detail-list{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.detail-list li{
    padding:14px 0;
    border-bottom:1px solid #eee;
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:15px;
    color:#444;
}

.detail-list li i{
    color:#ef2f5b;
    margin-top:4px;
    font-size:12px;
}

/* BUTTON */
.wedding-btn{
    display:inline-block;
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s ease;
    width:fit-content;
}

.wedding-btn:hover{
    background:#ef2f5b;
}

/* ARROWS */
.custom-next,
.custom-prev{
    width:42px !important;
    height:42px !important;
    border-radius:50%;
    background:rgba(0,0,0,0.45);
    color:#fff !important;
}

.custom-next::after,
.custom-prev::after{
    font-size:16px !important;
    font-weight:bold;
}

/* PAGINATION */
.custom-pagination{
    bottom:15px !important;
}

.custom-pagination .swiper-pagination-bullet{
    background:#fff;
    opacity:1;
}

.custom-pagination .swiper-pagination-bullet-active{
    background:#ef2f5b;
}

/* TABLET */
@media(max-width:991px){

    .wedding-section-box{
        flex-direction:column;
    }

    .wedding-slider-side{
        width:100%;
        min-width:100%;
        height:350px;
    }

    .wedding-content-side{
        width:100%;
        padding:30px;
    }

    .wedding-content-side h3{
        font-size:30px;
    }
}

/* MOBILE */
@media(max-width:576px){

    .wedding-slider-side{
        height:250px;
    }

    .wedding-content-side{
        padding:20px;
    }

    .wedding-content-side h3{
        font-size:24px;
    }

    .wedding-content-side p{
        font-size:14px;
        line-height:1.7;
    }

    .detail-list li{
        font-size:14px;
    }

    .wedding-btn{
        width:100%;
        text-align:center;
        padding:13px 20px;
        font-size:14px;
    }

    .custom-next,
    .custom-prev{
        width:35px !important;
        height:35px !important;
    }
}
/********************************************************/
  /* SECTION */
        .clients-section-new{
            padding:40px 0;
            background:#fff;
        }

        .clients-container{
            width:90%;
            max-width:1300px;
            margin:auto;
        }

        /* HEADER */
        .clients-heading{
            text-align:center;
            margin-bottom:70px;
        }

        .clients-heading span{
            display:inline-block;
            background:#fff3eb;
            color:#ef2f5b;
            padding:10px 22px;
            border-radius:50px;
            font-size:14px;
            font-weight:600;
            margin-bottom:18px;
        }

        .clients-heading h2{
            font-size:52px;
            color:#111;
            margin-bottom:18px;
            font-weight:700;
        }

        .clients-heading p{
            max-width:700px;
            margin:auto;
            color:#666;
            font-size:18px;
            line-height:1.8;
        }

        /* LOGO WRAPPER */
        .clients-logo-wrapper{
            display:grid;
            grid-template-columns:repeat(6,1fr);
            gap:35px;
        }

        /* SINGLE CARD */
        .client-card{
            background:#fff;
            border-radius:22px;
      /*      height:150px;  */

            display:flex;
            align-items:center;
            justify-content:center;

      /*      padding:25px;   */

            border:1px solid #eee;

            transition:0.4s ease;

            position:relative;
            overflow:hidden;
        }

        .client-card::before{
            content:"";
            position:absolute;
            inset:0;
            background:linear-gradient(135deg,#ef2f5b,#ef2f5b);
            opacity:0;
            transition:0.4s;
            z-index:1;
        }

        .client-card img{
            max-width:350px;
            max-height:150px;
            object-fit:contain;
            position:relative;
            z-index:2;
            transition:0.4s;
        }

        /* HOVER */
        .client-card:hover{
            transform:translateY(-8px);
            box-shadow:0 15px 35px rgba(0,0,0,0.08);
        }

        .client-card:hover::before{
            opacity:0.05;
        }

        .client-card:hover img{
            transform:scale(1.08);
        }

        /* RESPONSIVE */
        @media(max-width:1100px){

            .clients-logo-wrapper{
                grid-template-columns:repeat(3,1fr);
            }
        }

        @media(max-width:768px){

            .clients-logo-wrapper{
                grid-template-columns:repeat(2,1fr);
                gap:20px;
            }

            .clients-heading h2{
                font-size:36px;
            }

            .client-card{
                height:120px;
            }
        }

        @media(max-width:480px){

            .clients-logo-wrapper{
                grid-template-columns:1fr;
            }
        }

        /*******************************************************/
        .clients-but{
            padding: 20px;
         /*   align-items: center;  */
            text-align: center;
        }


        /*********************************************************/

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(12px);
    z-index:99999;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.header-container{
    max-width:1280px;
    margin:auto;
    padding:14px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* =========================
   LOGO
========================= */

.site-logo img{
    height:75px;
    display:block;
}

/* =========================
   NAVIGATION
========================= */

.main-nav{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:26px;
    list-style:none;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
    position:relative;
}

/* Hover Effect */

.nav-menu li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#ef2f5b;
    transition:0.3s;
}

.nav-menu li a:hover::after{
    width:100%;
}

.nav-menu li a:hover{
    color:#ef2f5b;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-btn{
    background:none;
    border:none;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:500;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:6px;
    color:#222;
    transition:0.3s;
}

.dropdown-btn:hover{
    color:#ef2f5b;
}

.dropdown-btn i{
    font-size:12px;
}

.submenu{
    position:absolute;
    top:140%;
    left:0;
    width:280px;
    background:#fff;
    border-radius:18px;
    padding:12px 0;
    list-style:none;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.35s;
}

.menu-dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.submenu li a{
    display:block;
    padding:13px 22px;
    font-size:14px;
}

.submenu li a:hover{
    background:#faf7f1;
    color:#ef2f5b;
}

/* =========================
   CALL BUTTON
========================= */

.call-btn{
    background:linear-gradient(135deg,#ef2f5b,#ef2f5b);
    color:#fff;
    text-decoration:none;
    padding:8px 20px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(212,162,76,0.25);
}

.call-btn:hover{
    transform:translateY(-2px);
}

/* =========================
   HAMBURGER
========================= */

.menu-toggle{
    width:42px;
    height:42px;
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    border:none;
    background:none;
    cursor:pointer;
}

.menu-toggle span{
    width:100%;
    height:3px;
    background:#111;
    border-radius:10px;
}

/* =========================
   OVERLAY
========================= */

.menu-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    opacity:0;
    visibility:hidden;
    transition:0.4s;
    z-index:9999;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* =========================
   FLOATING SOCIAL
========================= */

.floating-social{
    position:fixed;
    left:10px;
    top:80%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:999;
}

.social-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    text-decoration:none;
    transition:0.3s;
}

.social-icon:hover{
    transform:translateY(-3px);
}

.facebook{
    background:#1877f2;
}

.instagram{
    background:#f21873;
}
.whatsapp{
    background:#25d366;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

    body{
        padding-top:85px;
    }

    .header-container{
        padding:14px 18px;
    }

    .site-logo img{
        height:65px;
    }

    .menu-toggle{
        display:flex;
        z-index:999999;
    }

    /* =========================
       MOBILE SIDEBAR
    ========================= */

    .main-nav{
        position:fixed;
        top:0;
        left:-100%;
        width:82%;
        max-width:320px;
        height:100vh;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        padding:0;
        transition:0.4s ease;
        overflow-y:auto;
        z-index:99999;
        box-shadow:10px 0 40px rgba(0,0,0,0.15);
        border-top-right-radius:28px;
        border-bottom-right-radius:28px;
    }

    .main-nav.active{
        left:0;
    }

    /* =========================
       MOBILE LOGO
    ========================= */

    .mobile-logo{
        width:100%;
        padding:24px 24px 20px;
        border-bottom:1px solid rgba(0,0,0,0.06);
    }

    .mobile-logo img{
        height:70px;
    }

    /* =========================
       MOBILE MENU
    ========================= */

    .nav-menu{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:0px 24px;
    }

    .nav-menu li{
        width:100%;
        list-style:none;
    }

    /* PERFECT EQUAL SPACING */

    .nav-menu li a,
    .dropdown-btn{
        width:100%;
        height:62px;
        padding:0;
        margin:0;
        border:none;
        border-bottom:1px solid rgba(0,0,0,0.06);
        background:none;

        display:flex;
        align-items:center;
        justify-content:space-between;

        font-family:'Poppins',sans-serif;
        font-size:18px;
        font-weight:600;
        line-height:1;

        color:#111;
        text-decoration:none;

        appearance:none;
        -webkit-appearance:none;
    }

    .dropdown-btn i{
        font-size:14px;
    }

    /* =========================
       MOBILE DROPDOWN
    ========================= */

    .submenu{
        position:static;
        width:100%;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        box-shadow:none;
        border-radius:14px;
        background:#faf7f1;
        padding:8px 0;
        margin-top:10px;
    }

    .submenu.show{
        display:block;
    }

    .submenu li a{
        height:auto;
        padding:13px 18px;
        font-size:14px;
        border:none;
        line-height:1.4;
    }

    /* =========================
       MOBILE CALL BUTTON
    ========================= */

    .call-btn{
        margin:15px 24px 100px;
        width:calc(100% - 48px);
        height:56px;
        font-size:16px;
    }

    /* Hide Desktop Social */

    .floating-social{
        display:none;
    }

}

/* =========================
   MOBILE BOTTOM BAR
========================= */

.mobile-bottom-bar{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    background:#081120;
    padding:10px 0;
    display:none;
    justify-content:space-around;
    align-items:center;
    z-index:999999;
}

.mobile-bottom-bar a{
    text-decoration:none;
    color:#fff;
    font-size:13px;
    font-weight:500;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:5px;
}

.mobile-bottom-bar i{
    font-size:20px;
}

@media(max-width:991px){

    .mobile-bottom-bar{
        display:flex;
    }

}
@media(min-width:992px){
.mobile-logo img{
  display: none;
}
}


/*************************************************/
/* Mobile Responsive */
@media (max-width: 768px) {

    .custom-next,
    .custom-prev {
        display: none;
    }

    .wedding-slider-side {
        margin-bottom: 20px;
    }
}


/*************************preloader****************************/
/* PRELOADER */

#preloader{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    top: 0;
    left: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.8s ease;
}

/* CENTER */
.loader-wrapper{
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGO */
.preloader-logo{
    width: 170px;
    position: relative;
    z-index: 20;
    animation: logoPulse 2s ease-in-out infinite;
}

/* LOGO ANIMATION */
@keyframes logoPulse{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.05);
    }

    100%{
        transform: scale(1);
    }

}

/* ROTATING GOLD CIRCLE */
.circle{
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border-top: 4px solid #f17592;
    border-bottom: 4px solid #f17592;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;

    animation: rotateCircle 2s linear infinite;
}

/* SECOND INNER CIRCLE */
.circle::before{
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 50%;

    border-left: 3px solid #ef2f5b;
    border-right: 3px solid #ef2f5b;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;

    animation: rotateReverse 3s linear infinite;
}

/* OUTER GLOW */
.circle::after{
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    border: 2px solid #ff85a2;

    animation: pulseGlow 2s ease infinite;
}

/* ROTATION */
@keyframes rotateCircle{

    100%{
        transform: rotate(360deg);
    }

}

/* REVERSE ROTATION */
@keyframes rotateReverse{

    100%{
        transform: rotate(-360deg);
    }

}

/* GLOW EFFECT */
@keyframes pulseGlow{

    0%{
        transform: scale(1);
        opacity: 0.5;
    }

    50%{
        transform: scale(1.08);
        opacity: 1;
    }

    100%{
        transform: scale(1);
        opacity: 0.5;
    }

}

/* HIDE */
.hide-preloader{
    opacity: 0;
    visibility: hidden;
}

/* MOBILE */
@media(max-width:768px){

    .loader-wrapper{
        width: 220px;
        height: 220px;
    }

    .preloader-logo{
        width: 130px;
    }

    .circle{
        width: 190px;
        height: 190px;
    }

}
/*******************end preloade***********************/

.testimonials{
    background: #f8f9fa;
}

.about-sec{
    position: relative;
}
.vission{
    background:#bbbbbb;
}

.cont-head{
   margin-bottom:1.5rem;
   font-size:1.4rem;
   color:var(--dark);
}
.cont-but{
    font-size:1rem;
    padding:16px;
}
.cont-location{
    margin-top:4rem; 
    border-radius:14px; 
    overflow:hidden; 
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}
.event-pg{
    background:#f8f9fa;
}
.footer .logo{
    color:#fff; 
    text-decoration:none;
}
.process{
    background:#f8f9fa;
}

.slide-content h1,h2 {
    font-size: 42px !important;
    margin: 15px 0;
    line-height: 1.15;
}

.wedding-section-box .btn-primary {
    text-align: center;
}
