 /* ================= HEADER ================= */
    .main-header {
      background: #000;
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 999;
      width: 100%;
    }

    .container {
      width: 90%;
      margin: auto;
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      width: 130px;
    }

    /* DESKTOP NAVIGATION */
    .nav-menu ul {
      display: flex;
      gap: 30px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-menu ul li a {
      color: #fff;
      font-size: 16px;
      text-decoration: none;
      transition: 0.3s;
    }

    .nav-menu ul li a:hover {
      color: #c8a96a;
    }

    .contact-btn {
      background: #c8a96a;
      padding: 10px 22px;
      color: #000;
      font-weight: 600;
      border-radius: 4px;
      text-decoration: none;
      transition: 0.3s;
    }

    .contact-btn:hover {
      background: #fff;
    }

    /* ========== HAMBURGER BUTTON ========== */
    .hamburger {
      display: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background: #fff;
      transition: 0.4s;
    }

    /* ========== MOBILE MENU ========== */
    .mobile-menu {
      display: none;
      background: #000;
      padding: 20px 0;
      text-align: center;
      width: 100%;
    }

    .mobile-menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mobile-menu ul li {
      margin: 15px 0;
    }

    .mobile-menu ul li a {
      color: #fff;
      font-size: 18px;
      text-decoration: none;
    }

    .mobile-active {
      display: block !important;
    }

    /* ========== RESPONSIVE HEADER ========== */
    @media (max-width: 768px) {
      .nav-menu,
      .header-inner > .contact-btn {
        display: none;
      }

      .hamburger {
        display: flex;
      }
    }


    /* ================= BANNER SECTION ================= */
    .banner {
      width: 100%;
      height: 60vh;
      background: url("img/corporate-event.jpg") no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 5%;
      text-align: center;
      position: relative;
      color: white;
    }

    .banner-overlay {
      position: absolute;
      background: rgba(0,0,0,0.5);
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .banner-content {
      position: relative;
      z-index: 10;
      max-width: 700px;
    }

    .banner-icon {
      width: 80px;
      margin-bottom: 20px;
    }

    .banner h1 {
      font-size: 46px;
      margin-bottom: 15px;
      color: #c8a96a;
      font-weight: 700;
    }

    .banner p {
      font-size: 18px;
      line-height: 1.7;
      color: #fff;
    }


    /* ================= STORY SECTION ================= */
    .story-section {
      background: #fff;
      padding: 80px 10%;
      text-align: left;
    }

    .story-section h2 {
      font-size: 36px;
      color: #c8a96a;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .story-section p {
      font-size: 18px;
      color: #444;
      line-height: 1.8;
      margin-bottom: 15px;
    }


    /* ================= TIMELINE ================= */
    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Georgia', serif;
      background-color: #fff;
      margin: 0;
      padding: 0;
      color: #070000;
      overflow-x: hidden;
    }

    .timeline-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 0;
      position: relative;
    }

    .story-btn {
      display: block;
      margin: 0 auto 50px;
      padding: 14px 30px;
      background-color: black;
      color: white;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
      transition: 0.3s ease;
    }

    .story-btn:hover {
      background-color: #444;
      transform: scale(1.05);
    }

    .timeline {
      position: relative;
      margin: 0 auto;
      padding: 20px 0;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 3px;
      background-color: #c8a96a;
      transform: translateX(-50%);
    }

    .timeline-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      margin-bottom: 70px;
      flex-wrap: wrap;
    }

    .timeline-item::before {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      background-color: #c8a96a;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      top: 50%;
      z-index: 2;
    }

    .timeline-content img {
      width: 100%;
      max-width: 420px;
      height: auto;
      border-radius: 6px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }

    .timeline-text {
      width: 40%;
      padding: 20px;
    }

    .timeline-text h2 {
      color: #c8a96a;
      font-size: 26px;
      margin-bottom: 10px;
    }

    .timeline-text p {
      font-size: 16px;
      color: #000;
      line-height: 1.6;
    }

    .timeline-item.left .timeline-content { order: 1; }
    .timeline-item.left .timeline-text { order: 2; text-align: left; }

    .timeline-item.right .timeline-content { order: 2; }
    .timeline-item.right .timeline-text { order: 1; text-align: right; }

    @media (max-width: 768px) {
      .timeline::before { left: 25px; }

      .timeline-item {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        margin-bottom: 80px;
        padding-left: 40px;
      }

      .timeline-item::before {
        left: 25px;
        top: 0;
        transform: translateY(0);
      }

      .timeline-content,
      .timeline-text {
        width: 100%;
        text-align: left;
        padding-left: 20px;
      }

      .timeline-content img {
        max-width: 100%;
        margin-bottom: 20px;
      }
    }


    /* ================= FOOTER ================= */
    .footer {
      background: #000;
      color: #fff;
      padding: 60px 20px 20px;
      font-family: Arial, sans-serif;
      margin-top: 80px;
    }

    .footer-container {
      max-width: 1300px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .footer-col h4 {
      font-size: 22px;
      color: #c8a96a;
      margin-bottom: 18px;
      font-weight: bold;
    }

    .footer-logo img {
      width: 160px;
      margin-bottom: 15px;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
    }

    .footer-col ul li {
      margin: 10px 0;
    }

    .footer-col ul li a {
      color: #ccc;
      text-decoration: none;
      font-size: 15px;
      transition: 0.3s;
    }

    .footer-col ul li a:hover {
      color: #c8a96a;
    }

    .newsletter-input {
      margin-top: 15px;
      padding: 12px;
      width: 100%;
      border: 1px solid #444;
      background: #111;
      color: white;
      border-radius: 5px;
    }

    .newsletter-btn {
      margin-top: 10px;
      width: 100%;
      padding: 12px;
      background: #c8a96a;
      border: none;
      color: #000;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
    }

    .footer-social a {
      display: inline-block;
      padding: 8px 10px;
      font-size: 18px;
      color: #c8a96a;
    }

    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
        text-align: center;
      }
      .footer-logo img {
        margin: auto;
      }
    }

    @media (max-width: 576px) {
      .footer-container {
        grid-template-columns: 1fr;
      }
    }


/* ================= MENU PAGE ==================== */

.banner {
      width: 100%;
      height: 60vh;
      background: url("img/corporate-event.jpg") no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 5%;
      text-align: center;
      position: relative;
      color: white;
    }

    .banner-overlay {
      position: absolute;
      background: rgba(0,0,0,0.5);
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .banner-content {
      position: relative;
      z-index: 10;
      max-width: 700px;
    }

    .banner-icon {
      width: 80px;
      margin-bottom: 20px;
    }

    .banner h1 {
      font-size: 46px;
      margin-bottom: 15px;
      color: #c8a96a;
      font-weight: 700;
    }

    .banner p {
      font-size: 18px;
      line-height: 1.7;
      color: #fff;
    }

    /* ---- 50/50 Section ---- */
.split-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    gap: 30px;
    max-width: 1300px;
    margin: auto;
}

/* Left Image */
.split-left {
    flex: 1;
}

.split-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

/* Right Text Area */
.split-right {
    flex: 1;
    padding: 20px;
}

.split-right h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.split-right p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
}

/* Button */
.split-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #c8a96a;
    color: #000;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.split-btn:hover {
    background: #b00;
}
strong{
    color: #c8a96a
}


/* ---- Responsive ---- */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
        text-align: center;
    }

    .split-right {
        padding: 10px 0;
    }
}

.booking-section {
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Title */
.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.booking-header p {
    font-size: 16px;
    color: #555;
    margin-top: -8px;
}

/* ===================== MAIN GRID ===================== */
.booking-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f5efe5;
    border-radius: 8px;
    overflow: hidden;
}

/* LEFT IMAGE */
.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT FORM BOX */
.booking-form-box {
    padding: 40px 35px;
    background: #f7efdf;
}

.booking-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.booking-form-box p {
    font-size: 14px;
    color: #444;
    margin-bottom: 25px;
}

/* ===================== FORM ===================== */
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

/* Textarea */
.booking-form textarea {
    height: 110px;
    resize: none;
}

/* Button */
.booking-btn {
    width: 100%;
    padding: 14px;
    background: #c8a96a;
    border: none;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.booking-btn:hover {
    background: #000;
    color: #fff;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-image img {
        height: 330px;
    }
}

@media (max-width: 600px) {
    .booking-form-box {
        padding: 25px 20px;
    }

    .booking-header h2 {
        font-size: 30px;
    }
}




/* =========================== HOME PAGE ========================== */

/* ====================== GLOBAL ====================== */

.events-wrapper {
    background: #faf6f1;
    padding: 60px 20px;
    overflow: hidden;
    position: relative;
}

/* ====================== TITLE ====================== */
.events-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1d;
    margin-bottom: 8px;
}

.events-subtitle {
    text-align: center;
    color: #6e6e6e;
    margin-bottom: 45px;
    font-size: 16px;
}

/* ====================== EVENT CARDS ====================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: auto;
    gap: 15px;
}

.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* IMAGE */
.event-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Image hover zoom only (no opacity change) */
.event-card:hover img {
    transform: scale(1.07);
}

/* DARK OVERLAY ALWAYS ON */
.event-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);   /* Always dark */
    z-index: 1;
}

/* CONTENT */
.event-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 85%;
    z-index: 2;
}

.event-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.event-content p {
    font-size: 14px;
    line-height: 1.4;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .event-card img {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    .event-card img {
        height: 260px;
    }
}


/* ====================== FOOD SECTION ====================== */
.food-section {
    margin-top: 80px;
    position: relative;
    text-align: center;
}

.food-center {
    width: 520px;
    max-width: 90%;
    border-radius: 50%;
}

.food-side {
    width: 280px;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
}

.food-left {
    left: 4%;
}
.food-right {
    right: 4%;
}

/* ====================== VIDEO SECTION ====================== */
.video-section {
    background: #faf6f1;
    padding: 60px 20px;
    text-align: center;
}

.video-box {
    max-width: 1250px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.video-box iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* ====================== RESPONSIVE ====================== */
@media(max-width: 1200px) {
    .food-left { left: 5%; }
    .food-right { right: 5%; }
}

@media(max-width: 992px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    .event-card img {
        height: 260px;
    }
    .food-section {
        margin-top: 60px;
    }
    .food-center {
        width: 320px;
    }
    .food-side {
        width: 140px;
        top: 75%;
    }
}

@media(max-width: 600px) {
    .events-title {
        font-size: 26px;
    }
    .events-subtitle {
        font-size: 14px;
    }
    .food-center {
        width: 240px;
    }
    .food-side {
        width: 100px;
        top: 80%;
    }
    .food-left {
        left: -10px;
    }
    .food-right {
        right: -10px;
    }
    .video-box iframe {
        height: 240px;
    }
}


/* ======== GRIDS ============= */
.split-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    gap: 30px;
    max-width: 1300px;
    margin: auto;
}

/* Left Image */
.split-left {
    flex: 1;
}

.split-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

/* Right Text Area */
.split-right {
    flex: 1;
    padding: 20px;
}

.split-right h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.split-right p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
}

/* Button */
.split-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #c8a96a;
    color: #000;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.split-btn:hover {
    background: #b00;
}
strong{
    color: #c8a96a
}


/* ---- Responsive ---- */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
        text-align: center;
    }

    .split-right {
        padding: 10px 0;
    }
}

.booking-section {
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Title */
.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.booking-header p {
    font-size: 16px;
    color: #555;
    margin-top: -8px;
}

/* ===================== MAIN GRID ===================== */
.booking-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f5efe5;
    border-radius: 8px;
    overflow: hidden;
}

/* LEFT IMAGE */
.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT FORM BOX */
.booking-form-box {
    padding: 40px 35px;
    background: #f7efdf;
}

.booking-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.booking-form-box p {
    font-size: 14px;
    color: #444;
    margin-bottom: 25px;
}

/* ===================== FORM ===================== */
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

/* Textarea */
.booking-form textarea {
    height: 110px;
    resize: none;
}

/* Button */
.booking-btn {
    width: 100%;
    padding: 14px;
    background: #c8a96a;
    border: none;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.booking-btn:hover {
    background: #000;
    color: #fff;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-image img {
        height: 330px;
    }
}

@media (max-width: 600px) {
    .booking-form-box {
        padding: 25px 20px;
    }

    .booking-header h2 {
        font-size: 30px;
    }
}

/* ------------------ SLIDER WRAPPER ------------------ */
.slider {
    width: 100%;
    height: 50vh;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* --- Slider Images --- */
.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

/* Active slide visible */
.slide.active {
    opacity: 1;
}

/* ----------- TEXT OVERLAY ------------ */
/* SLIDER BASIC */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* TEXT BOX WITH BLACK OPACITY (APPLIES TO ALL SLIDES) */
.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 550px;
    z-index: 5;

    color: #ffffff;
    background: rgba(0, 0, 0, 0.6); /* BLACK OPACITY */
    padding: 25px 30px;
    border-radius: 8px;
}

/* HEADING */
.slide-content h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* TEXT */
.slide-content p {
    font-size: 18px;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .slide-content {
        left: 5%;
        right: 5%;
        max-width: 100%;
        padding: 20px;
    }

    .slide-content h2 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
    }
}



/* ---------- ARROWS --------- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    z-index: 10;
    padding: 8px;
    transition: 0.3s;
}

.slider-arrow:hover {
    opacity: 0.7;
}

.prev { left: 20px; }
.next { right: 20px; }

/* ----------- DOTS ----------- */
.slider-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.slider-dots span {
    display: inline-block;
    height: 12px;
    width: 12px;
    background: #ddd;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .active-dot {
    background: #fff;
}

/* -------- RESPONSIVE -------- */
@media(max-width: 768px) {
    .slide-content h2 {
        font-size: 32px;
    }
    .slide-content p {
        font-size: 15px;
    }
}

@media(max-width: 480px) {
    .slide-content {
        left: 5%;
        max-width: 90%;
    }
    .slide-content h2 {
        font-size: 26px;
    }
}


/* ============ PARALLAX SECTION ============ */
/* ================= PARALLAX SECTION ================= */
.parallax-section {
    position: relative;
    width: 100%;
    min-height: 95vh;
    background: url("img/cutlary.jpg") center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    color: #fff;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* TEXT WRAPPER */
.parallax-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
}

/* ================= HEADING ================= */
.parallax-content h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* ================= PARAGRAPH ================= */
.parallax-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* ================= BUTTON GROUP ================= */
.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.p-btn {
    padding: 14px 32px;
    background: #c9a152;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.p-btn:hover {
    background: #ffa200;
    transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

/* Medium screens */
@media (max-width: 991px) {
    .parallax-section {
        min-height: 80vh;
        padding: 50px 25px;
    }

    .parallax-content h2 {
        font-size: 34px;
    }

    .parallax-content p {
        font-size: 17px;
    }

    .p-btn {
        padding: 12px 26px;
        font-size: 15px;
    }
}

/* Tablets & Small Tablets */
@media (max-width: 768px) {
    .parallax-content h2 {
        font-size: 30px;
    }

    .parallax-content p {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Mobile screens */
@media (max-width: 600px) {
    .parallax-section {
        min-height: auto;
        padding: 40px 20px;
    }

    .parallax-content h2 {
        font-size: 26px;
    }

    .parallax-content p {
        font-size: 15px;
    }

    .btn-group {
        gap: 10px;
    }

    .p-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Extra small phones */
@media (max-width: 400px) {
    .parallax-content h2 {
        font-size: 22px;
    }
}

/* ===================== BLOG ======================= */

/* ================= BLOG SECTION ================= */
.blog-section {
    padding: 80px 20px;
    background: #fafafa;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.blog-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.blog-section p.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* Grid Layout */
.blog-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Blog Card */
.blog-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    cursor: pointer;
}

.blog-box:hover {
    transform: translateY(-6px);
}

.blog-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.blog-content {
    padding: 20px;
    text-align: left;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #222;
}

.blog-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Read More Button */
.blog-btn {
    display: inline-block;
    padding: 15px 25px;
    background: #c8a96a;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.blog-btn:hover {
    background: #fff;
    color: #000;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-section h2 {
        font-size: 28px;
    }
}
/* ====================== BLOG END ===================== */
/* ====================== GALLERY PAGE ===================== */

.banner {
      width: 100%;
      height: 60vh;
      background: url("img/corporate-event.jpg") no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 5%;
      text-align: center;
      position: relative;
      color: white;
    }

    .banner-overlay {
      position: absolute;
      background: rgba(0,0,0,0.5);
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .banner-content {
      position: relative;
      z-index: 10;
      max-width: 700px;
    }

    .banner-icon {
      width: 80px;
      margin-bottom: 20px;
    }

    .banner h1 {
      font-size: 46px;
      margin-bottom: 15px;
      color: #c8a96a;
      font-weight: 700;
    }

    .banner p {
      font-size: 18px;
      line-height: 1.7;
      color: #fff;
    }
/* ---- GALLERY SECTION ---- */
.lc-gallery-section {
    width: 100%;
    padding: 40px 20px;
    background: #f8f8f8;
    box-sizing: border-box;
}

.lc-gallery-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
    letter-spacing: 1px;
}

/* GRID */
.lc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.lc-gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: 0.35s ease-in-out;
    cursor: pointer;
}

/* Hover zoom effect */
.lc-gallery-grid img:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* ================= feedback section start ================= */
/* MAIN SECTION */
.feedback-section-unique {
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
}

/* HEADINGS */
.feedback-heading-unique {
  text-align: center;
  margin-bottom: 40px;
}

.feedback-heading-unique h2 {
  font-size: 32px;
  font-weight: 800;
  color: #222;
}

.feedback-heading-unique p {
  font-size: 18px;
  color: #c8a96a;
  margin-top: 8px;
  font-weight: 600;
}

/* FLEX WRAPPER */
.feedback-container-unique {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 25px;
}

.text-slider-unique,
.image-slider-unique {
  width: 50%;
  overflow: hidden;
}

/* HIDE ALL SLIDES */
.slide-unique,
.img-slide-unique {
  display: none;
  animation: fade 0.9s ease-in-out;
}

/* ACTIVE SLIDE */
.slide-unique.active,
.img-slide-unique.active {
  display: block;
}

/* QUOTATION ICON */
.quote-icon-unique {
  font-size: 55px;
  color: #c8a96a;
  text-align: center;
  margin-bottom: 5px;
  opacity: 0.95;
  font-weight: 700;
}

/* TEXT STYLE */
.text-slider-unique h3 {
  text-align: center;
  color: #222;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.text-slider-unique p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  padding: 20px;
  text-align: justify;
}

.text-slider-unique h4 {
  text-align: right;
  padding-right: 40px;
  color: #c8a96a;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
}

/* IMAGE SLIDER */
.image-slider-unique img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

/* ANIMATION */
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .feedback-container-unique {
    flex-direction: column;
  }

  .text-slider-unique,
  .image-slider-unique {
    width: 100%;
  }

  .quote-icon-unique {
    font-size: 45px;
  }

  .text-slider-unique h3 {
    font-size: 22px;
  }

  .text-slider-unique p {
    font-size: 15px;
  }

  .feedback-heading-unique h2 {
    font-size: 26px;
  }
}




/* ================= feedback section end ================= */

/* ================= Why choose us start ================= */

/* SECTION WRAPPER */
.whychoose-section {
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
}

/* HEADING */
.whychoose-heading {
  text-align: center;
  margin-top: -100px;
  margin-bottom: 40px;
}

.whychoose-heading h2 {
  font-size: 32px;
  font-weight: 800;
  color: #222;
}

.whychoose-heading p {
  font-size: 18px;
  color: #c8a96a;
  font-weight: 600;
  margin-top: 8px;
}

/* MAIN CONTAINER */
.whychoose-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* IMAGE */
.whychoose-image {
  width: 50%;
}

.whychoose-image img {
  width: 100%;
  height: 450px;
  /* border-radius: 16px;
  box-shadow: 0px 6px 25px rgba(0,0,0,0.12); */
  object-fit: cover;
}

/* TEXT SECTION */
.whychoose-content {
  width: 50%;
}

.whychoose-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

/* BULLET POINTS */
.whychoose-content ul {
  padding: 0;
  margin: 0 0 20px 0;
  list-style: none;
}

.whychoose-content ul li {
  font-size: 17px;
  margin-bottom: 12px;
  color: #444;
  font-weight: 500;
}

/* BUTTON */
.whychoose-btn {
  background: #c8a96a;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.whychoose-btn:hover {
  background: #b08d54;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .whychoose-container {
    flex-direction: column;
    text-align: center;
  }

  .whychoose-image,
  .whychoose-content {
    width: 100%;
  }

  .whychoose-content ul li {
    text-align: left;
  }
}

/* ================= why chhose us end ================= */

/* <!--  ================= Gallery start =================  --> */
/* --------------------------
GALLERY SECTION MAIN WRAPPER
----------------------------*/
/* MAIN SECTION */
.gallery-section-unique {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    padding: 60px 0;
}

/* HEADER */
.gallery-header-unique {
    text-align: center;
    margin-bottom: 35px;
}

.gallery-header-unique h2 {
    font-size: 35px;
    font-weight: 700;
    color: #1a1a1a;
}

.gallery-header-unique p {
    margin-top: 5px;
    color: #555;
    font-size: 16px;
}

/* ROW FORMAT */
.gallery-row-unique {
    display: flex;
    justify-content: space-between;
    gap: 2%;
    margin-bottom: 20px;
}

/* IMAGE BOXES */
.gallery-box-large-unique,
.gallery-box-small-unique {
    position: relative;
    overflow: hidden;
    /* border-radius: 12px; */
}

.gallery-box-large-unique {
    width: 50%;
    height: 350px;
}

.gallery-box-small-unique {
    width: 30%;
    height: 350px;
}

.gallery-box-large-unique img,
.gallery-box-small-unique img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* OVERLAY TEXT + ARROW */
.gallery-text-unique {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-text-unique span {
    font-size: 22px;
}

/* DARK OVERLAY EFFECT */
.gallery-box-large-unique::before,
.gallery-box-small-unique::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-box-large-unique:hover:before,
.gallery-box-small-unique:hover:before {
    opacity: 1;
}

.gallery-box-large-unique:hover img,
.gallery-box-small-unique:hover img {
    transform: scale(1.1);
}

/* LIGHTBOX POPUP */
#lightbox-unique {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox-unique img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

#close-lightbox-unique {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.lightbox-controls-unique span {
    color: white;
    font-size: 50px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#prev-unique { left: 5%; }
#next-unique { right: 5%; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .gallery-row-unique {
        flex-direction: column;
    }

    .gallery-box-large-unique,
    .gallery-box-small-unique {
        width: 100%;
        height: 280px;
    }
}

@media (max-width: 500px) {
    .gallery-header-unique h2 { font-size: 26px; }
}



/* <!--  ================= Gallery end =================  --> */
/* SECTION BACKGROUND */
/* SECTION BACKGROUND */
.special-offers-section {
    background: #f6f0e6;
    padding: 70px 0;
    text-align: center;
}

/* HEADER */
.special-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1c1c1c;
}

.special-header p {
    margin-top: 8px;
    color: #555;
    font-size: 16px;
}

/* GRID */
.special-grid {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* OFFER BOX */
.offer-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.07);
    
    /* hidden border */
    border: 2px dashed transparent;

    transition: 0.3s ease-in-out;
}

/* HOVER EFFECT */
.offer-box:hover {
    border-color: #c8a96a;
}

.offer-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.offer-box p {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .special-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .special-header h2 {
        font-size: 28px;
    }
}


/* =================== CONTACT PAGE ============== */

.banner {
      width: 100%;
      height: 60vh;
      background: url("img/corporate-event.jpg") no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 5%;
      text-align: center;
      position: relative;
      color: white;
    }

    .banner-overlay {
      position: absolute;
      background: rgba(0,0,0,0.5);
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .banner-content {
      position: relative;
      z-index: 10;
      max-width: 700px;
    }

    .banner-icon {
      width: 80px;
      margin-bottom: 20px;
    }

    .banner h1 {
      font-size: 46px;
      margin-bottom: 15px;
      color: #c8a96a;
      font-weight: 700;
    }

    .banner p {
      font-size: 18px;
      line-height: 1.7;
      color: #fff;
    }




/* ------------------ MAIN WRAPPER ------------------ */
.contact-wrapper{
    max-width:1200px;
    margin:60px auto;
    padding:20px;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
}

/* LEFT */
.contact-left{
    padding:50px;
    border:1px solid #ddd;
}

.contact-left h2{
    font-size:32px;
    margin-bottom:10px;
}

.contact-left p{
    font-size:16px;
    color:#444;
    margin-bottom:30px;
}

.contact-info-box{
    margin-bottom:25px;
}

.contact-info-box h4{
    font-size:18px;
    margin:8px 0 5px;
}

.contact-info-box p{
    font-size:15px;
    color:#444;
    line-height:1.6;
}

.contact-icon{
    width:30px;
    height:30px;
    fill:#c8a96a;
}

/* RIGHT */
.contact-right{
    padding:50px;
    background:#faf6ef;
    border-radius:12px;
}

.contact-right h3{
    font-size:28px;
}

.contact-right p{
    margin:10px 0 25px;
    color:#444;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    border:none;
    margin-bottom:18px;
    border-radius:6px;
    font-size:15px;
    box-shadow:0 0 4px rgba(0,0,0,0.1);
}

.contact-form textarea{
    height:140px;
    resize:none;
}

.contact-btn{
    width:100%;
    padding:15px;
    background:#c8a96a;
    color:#fff;
    border:none;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    border-radius:4px;
}

.contact-btn:hover{
    background:#000;
}

/* ================= MAP ================= */
.map-container{
    max-width:1200px;
    margin:0 auto 60px;
    padding:0 20px;
}

.map-container iframe{
    width:100%;
    height:450px;
    border-radius:12px;
    box-shadow:0 5px 18px rgba(0,0,0,0.15);
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px){
    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-left,
    .contact-right{
        padding:35px;
    }
}

@media(max-width:768px){
    .banner-content h1{
        font-size:32px;
    }

    .contact-left h2{
        font-size:26px;
    }

    .contact-right h3{
        font-size:24px;
    }

    .map-container iframe{
        height:350px;
    }
}

@media(max-width:480px){
    .banner{
        height:260px;
    }

    .banner-content h1{
        font-size:26px;
    }

    .banner-content p{
        font-size:14px;
    }

    .contact-left,
    .contact-right{
        padding:25px;
    }

    .map-container iframe{
        height:300px;
    }
}