/********** Template CSS **********/

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-primary);
    border-right: 2px solid var(--bs-primary);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}


/*** Navbar ***/
/* Top Header */
.elegant-top {
    background-image: url("../img/111.jpg");
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;

    position: relative;
    padding: 6px;               /* keeps border visible on mobile */
}

/* Border overlay */
.elegant-top::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #000;
    pointer-events: none;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .elegant-top {
        padding: 8px;           /* extra breathing space on mobile */
    }
}



/* Inner Layout */
.elegant-top-inner {
    min-height: 90px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 10px 0;
}

/* Social Icons */
.top-social a {
    color: #8a8a8a;
    margin-right: 14px;
    font-size: 18px;
    transition: 0.3s;
}

.top-social a:hover {
    color: #000;
}

/* Logo */
.top-logo {
    text-align: center;
}

.top-logo img {
    max-height: 85px;
}

/* Search */
.top-search {
    text-align: right;
}

.top-search input {
    border: 1px solid #ddd;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 3px;
    outline: none;
}

/* ============================= */
/* NAVIGATION */
/* ============================= */
.elegant-nav {
    background: #fff;
    padding: 14px 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
}

.nav-menu li a:hover {
    color: #c9a24d;
}


.nav-menu li a:hover {
    color: #c9a24d;
}

.nav-menu li a:hover::after {
    width: 100%;
}
.elegant-nav {
    background: #fff;
    padding: 14px 0;
    border-bottom: 2px solid #000; /* black border */
}

/* ============================= */
/* MOBILE VIEW */
/* ============================= */
@media (max-width: 768px) {

    .elegant-top-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
        min-height: auto;
    }

    .top-social {
        justify-content: center;
    }

    .top-search {
        text-align: center;
    }

    .top-search input {
        width: 90%;
        max-width: 280px;
    }

    .top-logo img {
        max-height: 90px;
    }

    /* Mobile Menu */
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
/* ===== MOBILE TOGGLE BUTTON ===== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0 auto;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #000;
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 15px;
    }

    .nav-menu.active {
        display: flex;
    }
}




/*** Hero Header ***/
.hero-header {
    background: url(../img/hero-bg.jpg) top left no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }

    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next{
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
}

.page-header {
    background: url(../img/) center center no-repeat;
    background-size: contain;
}


/*** Service ***/
@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
}

.service .service-item .btn-primary:hover {
    background: var(--bs-primary);
}

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}





/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--bs-secondary);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}
/* =============================
   HERO SECTION (RESPONSIVE)
============================= */

/* =============================
   HERO SECTION – FIXED
============================= */

.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 160px); /* desktop header height */
    min-height: 420px;
    overflow: hidden;
}

/* Background wrapper */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Image */
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Remove overlay */
.hero-overlay {
    display: none !important;
}

/* =============================
   TABLET FIX
============================= */
@media (max-width: 1024px) {
    .hero-section {
        height: 65vh;
        min-height: 380px;
    }
}

/* =============================
   MOBILE FIX (IMPORTANT)
============================= */
@media (max-width: 768px) {
    .hero-section {
        height: 55vh;
        min-height: 300px;
    }

    .hero-bg img {
        object-position: center center;
    }
}

/* =============================
   SMALL MOBILE
============================= */
@media (max-width: 480px) {
    .hero-section {
        height: 50vh;
        min-height: 260px;
    }
}



/* ABOUT SECTION */
.about-section {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 28px;
    margin: 40px auto;
    padding: 80px 50px; /* top-bottom | left-right */
}

/* VIDEO */
.about-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CALL CARD */
.about-call-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-call-card i {
    font-size: 26px;
    color: #f58220;
}

.about-call-card h5 {
    margin: 0;
    font-size: 16px;
}

.about-call-card span {
    font-size: 13px;
    color: #666;
}

/* STATS */
.about-stat {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.about-stat:hover {
    transform: translateY(-8px);
}

.about-stat i {
    font-size: 36px;
    color: #f58220;
    margin-bottom: 10px;
}

.about-stat h2 {
    font-size: 36px;
    margin: 0;
}

.about-stat p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* ============================= */
/* BUTTON STYLE */
/* ============================= */

.about-section .btn {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 38px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
}

/* Hover Effect */
.about-section .btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Focus Fix */
.about-section .btn:focus {
    box-shadow: none;
}

/* ============================= */
/* RESPONSIVE BORDER ADJUST */
/* ============================= */

@media (max-width: 768px) {
    .about-section {
        border-radius: 20px;
        margin: 20px 10px;
        padding: 40px 0;
    }
}

/* =========================
   HERO MARQUEE
========================= */

.hero-marquee {
    background: #000;
    overflow: hidden;
    padding: 14px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.marquee-content span {
    color: #fff;
    font-size: 13px;
    font-weight: 450;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.marquee-content .sep {
    opacity: 0.7;
}

/* Animation */
@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.hero-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Mobile */
@media (max-width: 768px) {
    .marquee-content span {
        font-size: 12px;
        letter-spacing: 1px;
        padding: 0 12px;
    }
}

/* SECTION */
/* ============================= */
/* EVENT SERVICES */
/* ============================= */

.event-services {
    padding: 80px 15px;
    background: #dbc9ac;
}

/* TITLE */
.section-title {
    text-align: center;
}

.section-title span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #c9a45c;
}

.section-title h2 {
    font-size: 42px;
    margin: 10px 0 20px;
    color: #143c2c;
}

.star-divider {
    font-size: 22px;
    color: #e5c27a;
}

/* ============================= */
/* GRID */
/* ============================= */

.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* ============================= */
/* IMAGE CARD */
/* ============================= */

.service-img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
}

.service-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Title */
.img-title {
    position: absolute;
    bottom: 18px;
    left: 20px;
    z-index: 3;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-shadow: 0 6px 20px rgba(0,0,0,0.6);
    transition: 0.4s ease;
}

/* Hover Overlay */
.hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20, 60, 44, 0.25),
        rgba(20, 60, 44, 0.9)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s ease;
    z-index: 2;
}

.hover-overlay span {
    color: #fff;
    font-size: 18px;
    padding: 12px 28px;
    border: 1px solid #fff;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: 0.4s ease;
}

.hover-overlay span:hover {
    background: #f6821f;
    border-color: #f6821f;
}

/* Hover Effects */
.service-img-card:hover img {
    transform: scale(1.08);
}

.service-img-card:hover .hover-overlay {
    opacity: 1;
}

.service-img-card:hover .img-title {
    opacity: 0;
}

/* ============================= */
/* POPUP / MODAL */
/* ============================= */

/* ============================= */
/* POPUP BACKDROP */
/* ============================= */

.event-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    padding: 15px; /* 🔥 MOBILE SAFE */
}


/* ============================= */
/* POPUP BOX */
/* ============================= */

.popup-box {
    background: #ffffff;
    width: 100%;
    max-width: 420px;

    border-radius: 18px;
    padding: 26px;
    position: relative;

    max-height: 85vh;
    overflow-y: auto;

    margin: 0 auto; /* 🔥 FORCE CENTER */
    animation: popupZoom 0.3s ease;

    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* ============================= */
/* CLOSE BUTTON */
/* ============================= */

.popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 22px;
    cursor: pointer;
}

/* ============================= */
/* CONTENT */
/* ============================= */

.popup-box h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #143c2c;
}

.event-points {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.event-points li {
    background: #f7f7f7;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

.popup-contact p {
    margin: 6px 0;
}

.popup-contact a {
    color: #f6821f;
    font-weight: 600;
    text-decoration: none;
}

/* ============================= */
/* ANIMATION */
/* ============================= */

@keyframes popupZoom {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ============================= */
/* RESPONSIVE FIXES */
/* ============================= */

/* Tablet */
@media (max-width: 991px) {

    .services-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-img-card {
        height: 360px;
    }

    .section-title h2 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 575px) {

    .services-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-img-card {
        height: 260px;
        border-radius: 18px;
    }

    .img-title {
        font-size: 18px;
        bottom: 14px;
        left: 16px;
    }

    .hover-overlay span {
        font-size: 14px;
        padding: 10px 22px;
    }

    .popup-box {
        width: 100%;
        max-width: 92%;
        padding: 20px;
        border-radius: 16px;
    }

    .popup-box h2 {
        font-size: 22px;
    }

    .event-points li {
        font-size: 13px;
        padding: 9px 12px;
    }

    .popup-close {
        top: 10px;
        right: 14px;
        font-size: 20px;
    }
}



/* HOVER EFFECT */
.service-img-card:hover img {
    transform: scale(1.08);
}

.service-img-card:hover .img-overlay {
    opacity: 1;
}

.service-img-card:hover .img-title {
    opacity: 0;
}
.event-production-section {
    padding: 90px 0;
    background: #faf7f1;
    text-align: center;
}

.section-top-text {
    font-size: 13px;
    letter-spacing: 2px;
    color: #8a6d3b;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    color: #0f2f2b;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
}


/* Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.divider span {
    width: 80px;
    height: 1px;
    background: #000;
}

/* Grid */
.production-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 45px;
    justify-items: center;
}

/* Circle */
.production-item {
    width: 120px;
    height: 120px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.production-item img {
    width: 95px;
    height: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .production-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .production-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}/* ================= IMAGE HOVER OVERLAY ================= */

.hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20, 60, 44, 0.2),
        rgba(20, 60, 44, 0.85)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s ease;
    z-index: 2;
}

.hover-overlay span {
    color: #fff;
    font-size: 18px;
    padding: 12px 28px;
    border: 1px solid #fff;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: 0.4s ease;
}

.hover-overlay span:hover {
    background: #f6821f;
    border-color: #f6821f;
}

/* SHOW OVERLAY ON HOVER */
.service-img-card:hover .hover-overlay {
    opacity: 1;
}

/* SMOOTH TITLE FADE */
.service-img-card:hover .img-title {
    opacity: 0;
}
/* ================= POPUP – PREMIUM ================= */



/* ===============================
   ANIMATED SLIDER SECTION
================================ */

.triple-slider-section {
    padding: 60px 0;
    background: #dbc9ac;
    overflow: hidden;
}

.triple-slider {
    width: 100%;
    max-width: 1400px; /* increased container width */
    margin: auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: calc(380px * 6); /* updated */
    animation: scroll 18s linear infinite;
}

.slide {
    width: 380px; /* increased image width */
    padding: 12px;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

/* Hover effect */
.slide img:hover {
    transform: scale(1.05);
}

/* Pause on hover */
.triple-slider:hover .slider-track {
    animation-play-state: paused;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .slide {
        width: 300px;
    }
}

@media (max-width: 575px) {
    .slide {
        width: 240px;
    }
}
.features-modern-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #fff6ee, #ffffff);
}

.features-heading {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

.features-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #222; /* neutral */
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 12px;
}


.features-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.feature-card {
    display: flex;
    gap: 22px;
    padding: 28px;
    background: rgba(255,255,255,0.85);
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #ff7a00, #ffb36b);
    opacity: 0;
    transition: 0.4s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.07;
}

.feature-card:hover {
    transform: translateY(-8px);
}

/* ICON */
.feature-icon {
    min-width: 70px;
    height: 70px;
    background: #000;
    color: #fff;
    font-size: 28px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
   
    z-index: 1;
}

/* CONTENT */
.feature-content {
    z-index: 1;
}

.feature-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-heading h2 {
        font-size: 28px;
    }
}
.event-process-section {
    padding: 90px 0;
    background: #fff6ee;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title p {
    font-size: 16px;
    color: #666;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 25px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
}

.process-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #ff7a00, #ffb36b);
    border-radius: 22px 22px 0 0;
}

.process-box h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #ff7a00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-box ul li {
    padding: 6px 0;
    font-size: 15px;
    color: #444;
    position: relative;
    padding-left: 18px;
}

.process-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff7a00;
    font-size: 18px;
}

/* Hover */
.process-box:hover {
    transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
.media-section {
    padding: 70px 0;
    background: #fff7f0;
}

.media-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 30px;
    padding: 0 20px;
}

/* LEFT SIDE */
.media-left .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.media-left img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.4s ease;
}

.media-left img:hover {
    transform: scale(1.05);
}

/* RIGHT SIDE */
.media-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-box video {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
}

/* SMALL IMAGES BELOW VIDEO */
.small-image-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.small-image-row img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.3s ease;
}

.small-image-row img:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .media-container {
        grid-template-columns: 1fr;
    }

    .media-left img {
        height: 220px;
    }

    .video-box video {
        height: 300px;
    }
}
.wedding-content {
    max-width: 900px;
    margin: auto;
    padding: 20px 40px;   /* Left & Right Padding */
}

.center-text {
    text-align: center;
}

.sub-title {
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f47c20;
    margin-bottom: 12px;
    font-weight: 600;
}

.main-title {
    font-size: 44px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 22px;
    line-height: 1.2;
}

.description {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/* Responsive padding */
@media (max-width: 768px) {
    .wedding-content {
        padding: 20px 20px;
    }

    .main-title {
        font-size: 34px;
    }
}
.three-img-section {
    padding: 40px 0;
}

.three-img-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.three-img-container img {
    width: 33.33%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .three-img-container {
        flex-direction: column;
    }

    .three-img-container img {
        width: 100%;
        height: 220px;
    }
}
.wedding-event-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff7f0, #fff);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1d1d1d;
}

.wedding-event-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
}

/* Event Card */
.event-item {
    background: #ffffff;
    padding: 22px 28px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s ease;
}

/* Accent Line */
.event-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #f47c20;
    border-radius: 16px 0 0 16px;
}

/* Hover Effect */
.event-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

/* Sub text */
.event-item span {
    font-weight: 400;
    color: #777;
}

/* Full width last item */
.event-item.full {
    grid-column: span 2;
}

/* Mobile */
@media (max-width: 768px) {
    .wedding-event-list {
        grid-template-columns: 1fr;
    }

    .event-item.full {
        grid-column: span 1;
    }

    .section-title {
        font-size: 32px;
    }
}
/* ================= IMAGE GALLERY ================= */

/* Gallery Grid */
/* ===== GALLERY SECTION ===== */
/* ================= GALLERY SECTION ================= */

.image-gallery-section {
    padding: 80px 0;
    background: #f8f8f8;
}

/* EVENT ROW */
.gallery-event-row {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 80px;
    align-items: start;
}

/* IMAGES */
.gallery-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.image-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.4s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

/* VIDEOS */
.gallery-videos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-item video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.video-item video:hover {
    transform: scale(1.03);
}

/* TITLES */
.gallery-subtitle {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #143c2c;
    font-family: "Playfair Display", serif;
    position: relative;
    padding-left: 18px;
}

.gallery-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 70%;
    background: #c9a45c;
    border-radius: 5px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .gallery-event-row {
        grid-template-columns: 1fr;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(255,255,255,0.3);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.contact-info h2,
.contact-form h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    margin-bottom: 30px;
}

.info-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-box i {
    font-size: 22px;
    color: #f6821f;
    margin-right: 15px;
}

.info-box span {
    font-weight: 600;
}

.contact-form form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f6821f;
}

.btn-submit {
    background: #f6821f;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.btn-submit:hover {
    background: #e56f0f;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
/* Floating Contact Icons */
.floating-contact {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: 0.3s ease;
    text-decoration: none;
}

/* Individual colors */
.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.call {
    background: #0d6efd;
}

.float-btn.email {
    background: #f58220;
}

/* Hover effect */
.float-btn:hover {
    transform: translateX(-6px) scale(1.05);
    color: #fff;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .floating-contact {
        right: 12px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
