body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
    letter-spacing: 1px;
	font-family: "Roboto", sans-serif;
}

.gilda-display-regular {
  font-family: "Gilda Display", serif;
  font-style: normal;
}


a {
    text-decoration: none;
}

p {
    font-size: 18px;
	font-family: "Roboto", sans-serif !important;
}

.bg-grey {
    background-color: #f8f8f8;
}

/* @font-face {
    font-family: 'FS Siena';
    src: url('./fonts/38733215ec18d82fcec1ad1365f05cd4.woff') format('woff2'),
        url('./fonts/38733215ec18d82fcec1ad1365f05cd4.woff2') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
} */


.roboto-<uniquifier> {
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-family: "Gilda Display", serif !important;
}

/* NAVBAR */
.navbar {
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
}

.navbar .container {
    position: relative;
}

.navbar-nav {
    gap: 50px;
}

.navbar .menu-item {
	align-content: center;
}

.navbar .menu-item a {
    color: #fff !important;
    font-size: 18px;
    text-transform: uppercase;
}

.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-center img {
    height: 60px;
	object-fit: contain;
}

.side-arrow {
    --fa-rotate-angle: -45deg;
}

/* HERO */
/* .hero {
    height: 100vh;
    background: url('./images/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: end;
    padding-bottom: 100px;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
} */

.hero-content {
    position: relative;
    color: #fff;
    max-width: 800px;
    padding: 0 15px;
}

.hero h1 {
    color: #ffffff;
    font-family: 'FS Siena', serif;
    text-align: center;
    filter: drop-shadow(-0.487px 3.97px 2px rgba(0, 0, 0, 0.15));
    font-size: 65px;
    margin-bottom: 20px;
}

.hero p {
    color: #ffffff;
    font-weight: 300;
    text-align: center;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-custom {
    padding: 10px 38px;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-white {
    background: #fff;
    border: 1px solid #fff;
    color: #000;
    transition: all 0.3s;
}

.btn-white:hover {
    background: transparent;
    border: 1px solid #fff;
}

.btn-black:hover {
    background-color: #fff;
    border: 1px solid #000;
}

.btn-black {
    background: #000;
    border: 1px solid #000;
    color: #fff;
    transition: all 0.3s;
	display: block;
	width: fit-content;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #fff;
    color: black;
}

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

    .navbar {
        background: rgba(0, 0, 0, 0.8);
        padding: 15px 0;
    }

    .logo-center {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 10px;
    }

    .navbar-collapse {
        background: #000;
        padding: 20px;
        border-radius: 10px;
    }

    .navbar-nav {
        gap: 15px;
        text-align: center;
    }

    .hero {
        height: auto;
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 14px;
    }
}




/* about */

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title small {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 19px;
    text-transform: uppercase;
    color: #292929;
    font-weight: 600;
}

.section-title h2 {
    font-size: 45px;
    font-family: 'FS Siena', serif;
}

/* decorative line */
/* .section-title .line {
    width: 80px;
    height: 1px;
    background: #000;
    margin: 15px auto 0;
    position: relative;
}

.section-title .line::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #000;
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
} */


/* ================= ABOUT SECTION ================= */
.about-wrapper {
    display: grid;
    grid-template-columns: 0.7fr 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-img-left img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.about-content {
    padding: 40px;
    text-align: left !important;
}

.about-content p {
    letter-spacing: 1px;
    line-height: 30px;
    color: #585858;
    font-weight: 300;
}

.about-img-right {
    position: relative;
}

.about-img-right img {
    width: 100%;
}

.about-img-small {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px !important;
    width: 150px;
    border: 5px solid #fff;
}


/* ================= SERVICES ================= */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #f5f5f5;
    padding: 40px;
    text-align: center;
    position: relative;
}

.service-card.dark {
    background: #111;
    color: #fff;
}

.service-card h5 {
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 54px;
    text-align: center;
}

.service-card p {
    font-size: 15px;
    letter-spacing: 1px;
    color: #585858;
}

.service-card h5,
.testi-card h6,
.styling-box h5,
.contact-info h6 {
    font-family: 'FS Siena', serif;
}

.service-card img.tape {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.service-card .icon-img {

    margin-bottom: 15px;
}


/* ================= VENUE ================= */
.venue-grid {
/*     display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; */
	
	display: flex;
    justify-content: center;
}

.venue-img {
    border: 6px solid #eee;
    padding: 6px;
    margin-bottom: 15px;
}

.venue-img img {
    width: 100%;
    height: 250px;
	object-fit: cover;
}

.venue-item p {
    font-size: 16px;
    letter-spacing: 1px;
    margin: 0;
    color: #585858;
    font-weight: 300;
    text-align: center;
}

@media(max-width:991px) {
    .venue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.venue-item {
    background: transparent;
    padding: 20px;
    border: 2px solid #ddd;
    text-align: center;
    position: relative;
    padding-bottom: 50px;
}

.venue-img {
    border: 6px solid #eee;
    padding: 6px;
    margin-bottom: 15px;
}

.venue-img img {
    width: 100%;
}

/* BUTTON OVERLAP */
.venue-item .btn {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.fancy-line {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fancy-line span {
    position: relative;
    padding: 0 20px;
    font-size: 18px;
    max-width: 500px;
    color: #585858;
    font-weight: 500;
}

/* LEFT & RIGHT LINES */
.fancy-line span::before,
.fancy-line span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 400px;
    height: 2px;
    background: #ccc;
}

.fancy-line span::before {
    right: 100%;
}

.fancy-line span::after {
    left: 100%;
}


@media(max-width:576px) {

    .fancy-line span::before,
    .fancy-line span::after {
        display: none;
    }
}


/* ================= TESTIMONIAL ================= */
.testimonial-section {
    padding: 80px 0;
    background: url('images/testibg-bg.png') center/cover no-repeat;
}

/* STACK */
.testi-stack {
    position: relative;
    width: 100%;
}

/* CARDS */
.testi-card {
    display: flex;
    gap: 15px;
    padding: 25px;
    align-items: center;
}

.testi-card h6 {
    font-size: 25px;
    margin: 0;
}

.testi-card img {
    width: 100px;
}

.testi-card.dark {
    background: #111;
    color: #fff;
}

/* OVERLAP (IMPORTANT) */
.testi-card.light {
    background: #f3f3f3;
    margin-top: 30px;
    z-index: 2;
}

/* IMAGE SHAPE */
.testi-image {
    height: 520px;
    overflow: hidden;
}

.testi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 260px;
    border-bottom-left-radius: 260px;
}

/* PAGINATION */
.custom-pagination {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-pagination .swiper-pagination-bullet {
    display: block;
    margin: 6px 0;
    width: 6px;
    height: 6px;
    background: #bbb;
}

.custom-pagination .swiper-pagination-bullet-active {
    background: #000;
    height: 20px;
    border-radius: 10px;
}

/* logos */
.brand-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-logos img {
    height: 100px;
}


/* ================= STYLING GRID ================= */
/* WRAPPER */
.styling-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* LEFT BIG, RIGHT SMALL */
    gap: 40px;
    align-items: center;
}

/* LEFT GRID */
.styling-left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
}

/* BOXES */
.styling-box {
    background: #f5f5f5;
    padding: 25px;
    text-align: center;
}

.styling-box h5 {
    font-size: 26px;
}

.styling-box.dark {
    background: #111;
    color: #fff;
}

/* IMAGES */
.styling-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT TEXT */
.styling-right h2 {
    font-family: 'FS Siena', serif;
    margin-bottom: 15px;
}

.styling-right small {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.styling-box {
    background: #f5f5f5;
    padding: 25px;
    text-align: center;
    position: relative;
    align-content: center;
}

/* INNER BORDER */
.styling-box::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px solid #ddd;
    pointer-events: none;
}

/* DARK BOX (no border like design) */
.styling-box.dark::after {
    display: none;
}

.center-line {
    width: 2px;
    height: 40px;
    background: #ddd;
    margin: 11px auto;
    display: none;
}



@media(max-width:576px) {
    .styling-left {
        grid-template-columns: 1fr;
    }
}


/* ================= CONTACT ================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info h2 {
    font-family: 'FS Siena', serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.contact-form textarea {
    border-radius: 15px;
}

.contact-form button {
    border-radius: 30px;
}

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

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

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

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


/* WRAPPER */
.showcase-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* IMAGE */
.showcase-img img {
    width: 100%;
    width: 750px;
    height: 400px;
    object-fit: cover;
}

/* RIGHT SIDE */
.showcase-right {
    position: relative;
    width: 550px;
    margin-left: -70px;
    margin-bottom: -90px;
}

/* TEXT CARD */
.showcase-content {
    background: #fff;
    padding: 40px;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.showcase-content h2 {
    font-size: 45px;
    font-family: 'FS Siena', serif;
    margin-bottom: 20px;
}

/* PAGINATION RIGHT CENTER */
.showcase-pagination {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

/* DOTS VERTICAL */
.showcase-pagination .swiper-pagination-bullet {
    display: block;
    margin: 6px 0;
    width: 6px;
    height: 6px;
    background: #bbb;
    opacity: 1;
}

.showcase-pagination .swiper-pagination-bullet-active {
    background: #000;
    height: 20px;
    border-radius: 10px;
}

.showcase-pagination {
    position: absolute !important;
    top: 50% !important;
    right: -60px !important;
    /* adjust as needed */
    left: auto !important;
    transform: translateY(-50%) !important;

    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto !important;
}

.showcase-text-slider {
    position: relative;
}

.showcase-pagination .swiper-pagination-bullet {
    display: block;
    margin: 8px 0;
    width: 6px;
    height: 6px;
    background: #bbb;
    opacity: 1;
}

.showcase-pagination .swiper-pagination-bullet-active {
    background: #000;
    height: 22px;
    border-radius: 10px;
}

.showcase-text-slider .swiper-wrapper .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px solid #ddd;
    pointer-events: none;
}

/* ================= FOOTER ================= */
.footer {
    background: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

.footer p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.footer-links h4 {
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'FS Siena', serif;
}

.footer-links ul {
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #444245;
    font-size: 16px;
}

.footer-links ul li {
    color: #444245;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.footer-gallery img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    color: #444245;
}

.footer-bottom a {
    color: #444245;
}

.footer-icon i {
    font-size: 15px;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    width: 40px;
    align-content: center;
    height: 40px;
    transition: all 0.4s;
}

.footer-icon i:hover {
    background-color: #000;
    color: white;
}

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

    .showcase-wrapper {
        flex-direction: column;
    }

    .showcase-content {
        position: static;
        transform: none;
        margin-top: 20px;
        max-width: 100%;
    }

    .footer .row>div {
        margin-bottom: 25px;
    }
}




/* ======================================= ABOUT ===================================== */

.about-hero-premium {
    position: relative;
    background: url('./images/breadcrumb.jpg') center/cover no-repeat;
    padding: 140px 0;
    color: #fff;
}

.about-hero-premium .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.about-hero-premium .container {
    position: relative;
}

.about-hero-premium h1 {
    font-size: 60px;
    font-family: 'FS Siena', serif;
}


.about-story-wrapper {
    position: relative;
}

.about-img img {
    width: 70%;
}

.about-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 50px;
    max-width: 420px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

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

.why-card {
    padding: 40px;
    border: 1px solid #eee;
    background: #fff;
    transition: 0.3s;
}

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


/* RESPONSIVE */
@media(max-width:991px) {
    .about-card {
        position: static;
        transform: none;
        margin-top: 30px;
    }

    .about-img img {
        width: 100%;
    }

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


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

.process-box {
    border: 1px solid #eee;
    padding: 40px 20px;
    background: #fff;
    transition: 0.3s;
    position: relative;
}

.process-box span {
    font-size: 40px;
    font-family: 'FS Siena', serif;
    color: #ddd;
}

.process-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.experience-section {
    position: relative;
    background: url('./images/breadcrumb.jpg') center/cover fixed no-repeat;
    padding: 140px 0;
    color: #fff;
}

.experience-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.experience-section .container {
    position: relative;
}

.experience-section h2 {
    font-family: 'FS Siena', serif;
    font-size: 40px;
}

.experience-section h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

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

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

    .experience-section {
        background-attachment: scroll;
        /* fix mobile */
    }
}



/* ==================================== Gallery ===================================== */


.gallery-filter {
    margin-bottom: 40px;
}

.gallery-filter button {
    border: none;
    background: transparent;
    margin: 0 10px;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
}

.gallery-filter button.active::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    margin-bottom: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    transition: 0.4s;
}

/* HOVER ZOOM */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* DARK OVERLAY */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}


.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 80%;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}



/* =========================================== Contact ===================================== */


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT */
.contact-info small {
    letter-spacing: 2px;
    font-size: 12px;
}

.contact-info h2 {
    font-family: 'FS Siena', serif;
}

.contact-info h6 a{
    font-size: 21px;
    font-family: 'FS Siena', serif;
    color: #000;
}

.contact-item {
    margin-top: 20px;
}

/* FORM */
.contact-form-box {
    background: #fff;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

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

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 5px;
    outline: none;
}

/* focus effect */
.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #000;
}


@media(max-width:991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}



/* ================================================== pop-up ================================== */


.quote-modal {
    padding: 20px;
    border-radius: 10px;
}

/* inputs */
.quote-modal input,
.quote-modal textarea,
.quote-modal select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 5px;
    margin-bottom: 20px;
    outline: none;
/*     background: transparent; */
}

/* focus effect */
.quote-modal input:focus,
.quote-modal textarea:focus,
.quote-modal select:focus {
    border-color: #000;
}

/* remove select default style */
.quote-modal select {
    appearance: none;
}

/* modal title */
.quote-modal .modal-title {
    font-family: 'FS Siena', serif;
}

.modal-backdrop.show {
    backdrop-filter: blur(5px);
}




img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

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

@media(max-width:576px) {
    .section-padding {
        padding: 50px 0;
    }
}

@media(max-width:991px) {

    .about-card,
    .showcase-content,
    .testi-card {
        position: static !important;
        transform: none !important;
        margin-top: 20px;
        max-width: 100%;
    }
}

@media(max-width:991px) {

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

@media(max-width:576px) {

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

@media(max-width:576px) {
    .venue-item .btn {
        position: static;
        transform: none;
        margin-top: 15px;
    }
}

@media(max-width:991px) {
    .showcase-img img {
        height: auto;
    }
	
	.services-wrapper,
    .about-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
	
	.fancy-line span::before, .fancy-line span::after {
    	width: 100px;
	}
}

@media(max-width:576px) {
    .testi-card.light {
        margin-left: 0;
        margin-top: 15px;
    }

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

.justify-self-center{
	justify-self: center;
}

/* .venue-feature {
    display: flex;
    align-items: center;
    gap: 40px;
} */

.venue-feature-img img {
    width: 100%;
    max-width: 600px;
}

.venue-feature-content {
    max-width: 450px;
}


.venue-grid-2 {
/*     display: grid; */
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.venue-card {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.venue-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* overlay */
.venue-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}

.venue-card:hover img {
    transform: scale(1.1);
}

.venue-card:hover .venue-overlay {
    opacity: 1;
}

.venue-overlay h5{
    color: #fff;
}

@media(max-width:991px) {
    .venue-feature {
        flex-direction: column;
    }

    .venue-grid-2 {
        grid-template-columns: 1fr;
    }
}


.venue-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    border: 1px solid #eee;
    padding: 40px 20px;
    background: #fff;
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media(max-width:991px) {
    .venue-services {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:576px) {
    .venue-services {
        grid-template-columns: 1fr;
    }
}


.styling-right h6 {
    font-size: 26px;
    margin-bottom: 40px;
}

.styling-right p {
    margin-bottom: 30px;
}



/* ======================================== SERVICE ======================================= */


.service-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-wrapper.reverse {
    flex-direction: row-reverse;
}

.service-img img {
    width: 100%;
    max-width: 600px;
    height: 400px;
	object-fit: cover;
}

.service-content {
    max-width: 645px;
}

.service-content small {
    font-size: 14px;
    letter-spacing: 2px;
}

.service-content h2 {
    font-family: 'FS Siena', serif;
}

.service-content ul {
    padding-left: 18px;
}

.service-content ul li {
    margin-bottom: 8px;
}



@media(max-width:991px) {
    .service-wrapper {
        flex-direction: column;
    }

    .service-wrapper.reverse {
        flex-direction: column;
    }

    .service-img img {
        max-width: 100%;
    }
}



/* ================= PAGINATION ================= */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 70px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    min-width: 50px;
    height: 50px;
    padding: 0 18px;
    border: 1px solid #dcdcdc;
    background: #fff;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease;
}

.pagination .page-numbers:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.pagination .current {
    background: #111;
    border: 1px solid #111;
    color: #fff !important;
}

.pagination .next,
.pagination .prev {
    padding: 0 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.modal-body .form-group{
	margin: 0 !important;
}


@media (max-width: 1199px){
	.navbar-nav {
    	gap: 30px;
	}
	
	.navbar .menu-item a {
    	font-size: 16px;
	}
	
	.fancy-line span::before, .fancy-line span::after{
		width: 200px;
	}
	
	.service-img img {
    	height: 300px;
		object-fit: cover;
	}

	
	.venue-grid {	
    	grid-template-columns: repeat(2, 1fr);
	}
	
	.styling-wrapper {
		grid-template-columns: 1fr;
	}
	
	.showcase-content{
		height: auto;
	}

}

/* RESPONSIVE */
@media(max-width: 991px) {
    .styling-wrapper {
        grid-template-columns: 1fr;
    }
	
	.about-hero-premium {
    	padding: 140px 0 55px;
	}
	
	#menu-primary-left-menu{
		margin-bottom: 30px;
	}
	
	.showcase-right {
		width: auto !important;
		margin: 0 !important;
	}
	
	.venue-feature-content {
    	max-width: unset;
    	margin-top: 20px;
	}

    .styling-left {
        grid-template-columns: 1fr 1fr;
    }
	
	.service-content {
    	max-width: inherit;
	}
	
	.showcase-text-slider .swiper-wrapper .swiper-slide::after{
		display: none;
	}
	
	.venue-overlay h5 {
    	padding: 10px;
	}
	
	.about-img-left img,
	.venue-img img,
	.showcase-content,
	.service-img img,
	.venue-card,
	.venue-main-img img,
	.venue-gallery-grid img,
	.sidebar-box{
		height: auto !important;
	}
	
	.showcase-content,
	.about-content,
	.styling-right,
	.contact-form-box,
	.about-card,
	.why-card,
	.process-box{
		padding: 15px;
	}
	
	.about-img-small {
		left: 0;
	}
}

.sidebar-box a{
	color: black; 
}

.venue-content-box ul li,
.service-content-box ul li{
    margin: 8px 0;
    line-height: 1.6;
}

.footer p{
	margin-top: 15px;
}

@media (max-width: 767px){
	 .styling-left {
        grid-template-columns: 1fr;
    }
	
	.venue-grid {
        grid-template-columns: repeat(1, 1fr);
    }
	
	.about-hero-premium {
    	padding: 130px 0 30px;
	}
}

/* Mobile */

@media (max-width: 575px) {

    .pagination {
        gap: 8px;
        margin-top: 50px;
    }

    .pagination .page-numbers {
        min-width: 42px;
        height: 42px;
        font-size: 14px;
        padding: 0 14px;
    }

    .pagination .next,
    .pagination .prev {
        padding: 0 16px;
        font-size: 11px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    h1 {
        font-size: 46px !important;
    }

    h2 {
        font-size: 38px !important;
    }

    h3 {
        font-size: 32px !important;
    }

    h4 {
        font-size: 28px !important;
    }

    h5 {
        font-size: 22px !important;
    }

    h6 {
        font-size: 18px !important;
    }

    p {
        font-size: 15px !important;
    }
		.gallery-grid {
    column-count: 2;
}
	
}


/* Mobile */
@media (max-width: 767px) {
    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 30px !important;
    }

    h3 {
        font-size: 26px !important;
    }

    h4 {
        font-size: 22px !important;
    }

    h5 {
        font-size: 20px !important;
    }

    h6 {
        font-size: 18px !important;
    }

    p {
        font-size: 15px !important;
        line-height: 1.6;
    }
	
	.gallery-grid {
    column-count: 1;
}

}

.navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



/* Navbar default */
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: all 0.3s ease;
    padding: 20px 0;
}

/* Scroll hone ke baad */
.navbar.scrolled{
    background: rgba(0,0,0,0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    padding: 20px 0;
}


.gallery-item img {
    width: 100%;
    transition: 0.4s;
    height: 200px;
    object-fit: cover;
}

.lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox-img{
    max-width:90%;
    max-height:90vh;
}

.close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

/* .prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    font-size:40px;
    cursor:pointer;
    padding:15px;
} */

.prev{
    left:20px;
}

.next{
    right:20px;
}




.hero{
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45); /* optional dark overlay */
    z-index: -1;
}

.hero-content{
    position: relative;
    z-index: 2;
}