
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&amp;display=swap");

/* ===== Base Styles ===== */

*{
  font-family: "Rubik", !important;
}


body {
    margin: 0;
    padding-top: 80px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1030;
    transition: all 0.3s ease;
    box-shadow: 0 15px 22px rgba(46, 127, 232, 0.1);
    border-bottom: 1px solid #e5e5e5;
}

.navbar {
    padding: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Logo Styles */
.navbar-brand {
    margin-left: -120px;
}

.navbar-brand img {
    height: 50px !important;
    width: auto !important;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 25px !important;
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: #2563eb !important;
}

/* Dropdown Styles */
.dropdown-toggle::after {
    content: '\25BC';
    border: none;
    font-size: 10px;
    color: #666;
    margin-left: 8px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 15px 0;
    min-width: 220px;
    margin-top: 10px;
    z-index: 999999999;
}

.dropdown-item {
    padding: 12px 20px;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #2563eb;
}

/* Contact Button */
.contact-btn {
    background: #153783;
    color: white !important;
    padding: 16px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    font-size: 12px;
    margin-right: -60px;
}

.contact-btn:hover {
    color: white !important;
    text-decoration: none;
}

/* Custom Hamburger - FIXED */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    background: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px auto;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Fixed hamburger animation (closed) */
.navbar-toggler[aria-expanded="false"] .hamburger-line:nth-child(1) {
    transform: rotate(0deg) translate(0px, 0px);
}

.navbar-toggler[aria-expanded="false"] .hamburger-line:nth-child(2) {
    opacity: 1;
}

.navbar-toggler[aria-expanded="false"] .hamburger-line:nth-child(3) {
    transform: rotate(0deg) translate(0px, 0px);
}

/* Fixed hamburger animation (open) */
.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #2563eb;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #2563eb;
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar-brand {
        margin-left: -60px;
    }

    .contact-btn {
        margin-right: -20px;
        padding: 14px 20px;
        font-size: 11px;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }
}

@media (max-width: 769px) {
      .navbar-nav .nav-item:last-child .nav-link {
        margin-bottom: 15px;
    }
}

/* Fix for smaller desktop screens */
@media (max-width: 1200px) {
    .navbar-brand {
        margin-left: -60px !important;
    }

    .contact-btn {
        margin-right: -30px !important;
    }
}

@media (max-width: 1024px) {
    .navbar-brand {
        margin-left: 0 !important;
    }

    .contact-btn {
        margin-right: 0 !important;
    }
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    body {
        padding-top: 70px;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar-brand {
        margin-left: 0 !important;
    }

    .navbar-brand img {
        height: 50px !important;
        width: auto;
        object-fit: contain;
    }

    .contact-btn {
        margin-right: 0 !important;
        font-size: 14px;
        padding: 12px 20px;
        margin-top: 20px;
    }

    /* Mobile Menu Styling */
    .navbar-collapse {
        background: white;
        margin-top: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .navbar-nav .nav-link {
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(229, 229, 229, 0.5);
        margin: 0;
        font-size: 16px;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
        margin-bottom: 15px;
    }

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

    .dropdown-item {
        padding: 12px 40px;
        font-size: 14px;
        color: #666;
    }

    .dropdown-item:hover {
        background: rgba(37, 99, 235, 0.1);
        color: #2563eb;
    }
}
/* header end  */

.new-hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    padding-left: 5%;
}

.new-hero-overlay {
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 100%;
}

.new-hero-content {
    position: absolute;
    z-index: 2;
    /* padding-top: 375px;
    padding-left: 20px;
    padding-bottom: 60px; */
    bottom:2rem
}

.new-hero-content h1 {
    font-size: 89.54px;
    font-weight: 600;
    margin-bottom: 10px;
    max-width: 78%;
    color: white !important;
}

.new-hero-content p {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 58%;
    color: white !important;
}

/* ===== Responsive Breakpoints ===== */

/* Tablet screens (<=1024px) */
@media screen and (max-width: 1024px) {
    .new-hero {
        padding-left: 3%;
        height: 100vh;
        padding-top: 100px;
    }

    .new-hero-content {
        padding-top: 288px;
        padding-left: 36px;
        padding-bottom: 50px;
    }

    .new-hero-content h1 {
        font-size: 56px;
        max-width: 70%;
    }

    .new-hero-content p {
        font-size: 20px;
        max-width: 100%;
    }
}

/* Mobile screens (<=768px) */
@media screen and (max-width: 768px) {
    .new-hero {
        justify-content: center;
        padding-left: 0;
        text-align: bottom;
        height: 90vh;
        padding-top: 80px;
    }

    .new-hero-content {
        padding-left: 10px;
        padding-right: 10px;
        text-align: left;
    }

    .new-hero-content h1 {
        font-size: 36px;
        max-width: 95%;
    }

    .new-hero-content p {
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Small mobile screens (<=480px) */
@media screen and (max-width: 480px) {
    .new-hero-content {
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .new-hero-content h1 {
        font-size: 28px;
    }

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

/* Mobile screens */
@media screen and (max-width: 320px) {
    .new-hero {
        justify-content: center;
        padding-left: 0;
        text-align: bottom;
        height: 50vh;
        padding-top: 80px;
    }
}

/* Large laptop / desktop (>=1440px) */
@media screen and (min-width: 1440px) {
    .new-hero-content {
        padding-top: 313px;
        padding-left: 14px;
    }

}


.services-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.services-container .card {
  position: relative !important;
  border-radius: 10px;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.services-container .card::after {
  content: "";
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
  z-index: 0;
}

.services-container .card .card-content-1 {
  position: absolute !important;
  bottom: 0 !important;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 1 !important;
  text-align: left !important;
}

.services-container .card .card-content {
  position: absolute !important;
  bottom: 0 !important;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 1 !important;
  text-align: left !important;
}

.services-container .card .card-content-1 h3 {
  font-family: "Rubik" !important;
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
}

.services-container .card .card-content h3 {
  font-family: "Rubik" !important;
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
}

.services-container .card .card-content-1 p {
  margin: 0;
  font-family: "Rubik" !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  max-width: 38%;
}

.services-container .card .card-content p {
  margin: 0;
  font-family: "Rubik" !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  max-width: 80%;
}

    .video-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 15px;
    }
    video {
      width: 100%;
      height: 550px !important ;
      object-fit: cover;
      display: block;
      /* padding: 0px 20px; */
    }

    @media (max-width: 768px) {
      video {
        height: 300px !important;
      }
    }


    .video-wrapper:hover .play-button {
      display: block;
    }

    .carousel-control-prev,
    .carousel-control-next {
     width: 11%;
     opacity: 1 !important;
    }

    /* Custom black arrows */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-image: none;
    }
    .carousel-control-prev-icon::after,
    .carousel-control-next-icon::after {
      font-size: 7rem; /* arrow size */
      color:#010817;
      font-weight: bold;
    }
    .carousel-control-prev-icon::after { content: '‹'; }
    .carousel-control-next-icon::after { content: '›'; }




@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;   /* make touch area larger */
  }

  .carousel-control-prev-icon::after,
  .carousel-control-next-icon::after {
    font-size: 6rem;   /* slightly smaller for mobile */
  }
}

.top-card {
  height: 538px;
  width: auto;
  background:
              linear-gradient(
              180deg,
              rgba(35, 29, 96, 0) 25.32%,
              rgba(22, 28, 44, 0.76) 74.18%
              ),
              linear-gradient(
              180deg,
              rgba(11, 41, 77, 0) 27.85%,
              rgba(8, 20, 34, 0.3) 84.17%
              );
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

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

.bottom-card {
  height: 450px !important;
}

.waiter {
  height: auto;
  width: auto;
  background:
  linear-gradient(
              180deg,
              rgba(35, 29, 96, 0) 25.32%,
              rgba(22, 28, 44, 0.76) 74.18%
              ),
              linear-gradient(
              180deg,
              rgba(11, 41, 77, 0) 27.85%,
              rgba(8, 20, 34, 0.3) 84.17%
              );
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.bartender {
  background:
  linear-gradient(
              180deg,
              rgba(35, 29, 96, 0) 25.32%,
              rgba(22, 28, 44, 0.76) 74.18%
              ),
              linear-gradient(
              180deg,
              rgba(11, 41, 77, 0) 27.85%,
              rgba(8, 20, 34, 0.3) 84.17%
              );
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Tablet Styles (768px and below) */
@media (max-width: 768px) {
  .services-container {
    margin: 20px auto;
    padding: 15px;
    gap: 20px;
  }

  .top-card {
    height: 400px;
  }

  .bottom-card {
    height: 350px !important;
  }

  .services-container .card .card-content {
    padding: 15px;
  }

  .services-container .card .card-content h3 {
    font-size: 22px;
  }

  .services-container .card .card-content p {
    font-size: 15px;
    max-width: 90%;
  }

  .services-container .card .card-content-1 p {
    font-size: 15px;
    max-width: 90%;
  }

  .bottom-cards {
    gap: 20px 20px;
  }
}

/* Mobile Styles (480px and below) */
@media (max-width: 480px) {
  .services-container {
    margin: 15px auto;
    padding: 10px;
    gap: 15px;
  }

  .top-card {
    height: 300px;
  }

  .bottom-card {
    height: 280px !important;
  }

  .services-container .card .card-content {
    padding: 12px;
  }

  .services-container .card .card-content h3 {
    font-size: 20px;
    margin: 0 0 8px;
  }

  .services-container .card .card-content-1 {
    padding: 12px;
  }

  .services-container .card .card-content-1 p {
    font-size: 14px;
    max-width: 95%;
    line-height: 1.5;
  }

  .services-container .card .card-content p {
    font-size: 14px;
    max-width: 95%;
    line-height: 1.5;
  }

  .bottom-cards {
    gap: 15px 15px;
  }
}

    @media (max-width: 768px) {
      .bottom-cards {
        grid-template-columns: 1fr;
      }
    }

    .hero-diamond-pattern {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #000;
    background-image:
        repeating-linear-gradient(60deg, rgba(255, 215, 0, 0.05) 0px, rgba(255, 215, 0, 0.05) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(-60deg, rgba(255, 215, 0, 0.05) 0px, rgba(255, 215, 0, 0.05) 1px, transparent 1px, transparent 60px);
}

    .luxe-section {
      padding: 116px 0;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      min-height: 500px;
    }

    .luxe-content {
      width: 955px;
      margin-left: 112px;
      color: #fff;
    }

    /* Title styling */
    .luxe-title {
      font-size: 105px;
      line-height: 1;
      margin: 0 0 63px;
    }

    .luxe-title .the,
    .luxe-title .touch {
      font-weight: 700;
      background: linear-gradient(90deg, #6b5735, #a88956, #6b5735);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .luxe-title .luxe {
      font-weight: 700;
      background: linear-gradient(90deg, #A06E14, #F9EDA0, #B4882D);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Paragraph text (from Figma) */
    .luxe-text {
      font-weight: 400;
      font-size: 32.13px;
      line-height: 132%;
      letter-spacing: 0;
      text-transform: capitalize;
      width: 955px;
      height: 128px;
      margin: 0;
      color: #fff;
    }

/* Tablet Responsive (max 1024px) */

@media (max-width: 1024px) {
  .luxe-section {
    padding: 80px 40px;
    min-height: auto;
  }

  .luxe-content {
    width: 100%;
    margin-left: 0;
  }

  .luxe-title {
    font-size: 72px;
    margin-bottom: 40px;
  }

  .luxe-text {
    font-size: 24px;
    width: 100%;
    line-height: 1.4;
  }
}

/* Mobile Responsive (max 767px) */
@media (max-width: 767px) {
  .luxe-section {
    padding: 60px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .luxe-content {
    width: 100%;
    margin-left: 0;
  }

  .luxe-title {
    font-size: 42px;
    margin-bottom: 25px;
  }

  .luxe-text {
    font-size: 18px;
    width: 100%;
    line-height: 1.5;
  }
}


  /* Gold gradient for 'Experience' */
.gold-text {
  background: linear-gradient(126.79deg, #ab8c52 15.51%, #F9EDA0 49.43%, #c19c52 86.29%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  opacity:80%;
}

.bartending {
  position: relative;
  width: 100%;
  height: 100vh !important;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 40px;
  color: #fff;
}

.bartending::before {
  content: "";
  position: absolute;
  inset: 0;
  background:linear-gradient(
    196.58deg,
    rgba(0, 0, 0, 0) 11.47%,
    rgba(0, 0, 0, 0.81) 74.76%
  );
}

.bartending-content {
  width: 84rem;
  margin-left: 35px;
  z-index: 1;
  text-transform: capitalize;
  font-family: "Rubik" !important;
  margin-top:15rem;
}

.bartending-heading {
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(90deg, #A06E14, #F9EDA0, #B4882D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bartending-para {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 12px;
  color: #fff;
  white-space: normal;
}

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  .bartending {
    height: auto;
    padding: 60px 30px;
    text-align: center;
  }

  .bartending-content {
    width: 100%;
    margin: 8rem 0 0 0;
  }

  .bartending-heading {
    font-size: 42px;
  }

  .bartending-para {
    font-size: 18px;
    line-height: 1.5;
    max-width: 100%;
    /* margin: 10px auto 0; */
  }
}


/* Mobile (max 767px) */

@media (max-width: 767px) {
  .bartending {
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .bartending-content {
    width: 100%;
    margin: 5rem 0 0 0;
  }

  .bartending-heading {
    font-size: 28px;
  }

  .bartending-para {
    font-size: 16px;
    line-height: 1.4;
    max-width: 100%;
    margin-top: 10px;
  }
}

/* events section below client section  */

/* Parent Section */
.celebration-home-section {
  width: 100%;
  background: #fff;
  padding: 60px 7%;
  color: #000;
}

.section-container {
  max-width: 1266px;
  margin: 0 auto;
}

/* Celebration Section */
.celebration-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 40px;
}

.celebration-heading {
  flex: 0 0 40%;
}

.celebration-heading h2 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 31.9px;
  line-height: 132%;
  margin: 0;
  text-transform: capitalize;
}

.celebration-text {
  flex: 0 0 60%;
  font-size: 16px;
  line-height: 1.6;
}

.celebration-text p {
  margin-bottom: 20px;
  width: 96%;
  font-family: "Futura Bk", sans-serif !important;
  font-size: 18px;
  line-height: 132%;
}

.celebration-text ul {
  list-style-type: disc;
  margin: 0;
}

.celebration-text li {
  margin-bottom: 10px;
  color: #000;
}

.celebration-text li::marker {
  color: #000;
}

.celebration-text li b {
  font-weight: 600;
}

.celebration-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin: 0 auto 40px auto;
  display: block;
}


/* Tablet Responsive (max 1024px) */

@media (max-width: 1024px) {
  .celebration-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .celebration-heading {
    flex: 0 0 100%;
    text-align: center;
  }

  .celebration-heading h2 {
    font-size: 26px;
  }

  .celebration-text {
    flex: 0 0 100%;
    font-size: 15px;
    text-align: center;
  }

  .celebration-text p {
    width: 100%;
    font-size: 16px;
  }
}


/* Mobile Responsive (max 767px) */

@media (max-width: 767px) {
  .celebration-home-section {
    padding: 40px 5%;
  }

  .celebration-container {
    flex-direction: column;
    gap: 20px;
  }

  .celebration-heading h2 {
    font-size: 22px;
    line-height: 1.3;
    text-align: left;
  }

  .celebration-text {
    font-size: 14px;
    text-align: left;
  }

  .celebration-text p {
    font-size: 15px;
    line-height: 1.5;
  }

  .celebration-text ul {
    padding-left: 18px;
  }
}


/*  Home Events Section*/
.home-events-text h2 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 31.96px;
  line-height: 161%;
  margin-bottom: 2px;
}

.home-events-text p {
  font-family: "Futura Bk", sans-serif;
  font-weight: 400;
  font-style: Book;
  font-size: 20px;
  line-height: 161%;
  margin-bottom: 18px;
  color: #000;
}

.events-grid,
.events-grid-2 {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}

/*First grid */
.events-grid {
  grid-template-columns: 2fr 1fr;
}

/* Second grid */
.events-grid-2 {
  grid-template-columns: 1fr 2fr;
}

.event-card {
  border-radius: 10px;
  overflow: hidden;
}

.event-card img {
  width: 100% !important;
  height: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}


/* Tablet (max-width: 1024px) */

@media (max-width: 1024px) {
  .home-events-text h2 {
    font-size: 26px;
    line-height: 140%;
    text-align: center;
  }

  .home-events-text p {
    font-size: 18px;
    text-align: center;
  }

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

  .event-card img {
    max-width: 80%;
    margin: 0 auto;
    height: auto;
  }
}


/* Mobile (max-width: 767px) */

@media (max-width: 767px) {
  .home-events-text h2 {
    font-size: 22px;
    line-height: 130%;
    text-align: left;
  }

  .home-events-text p {
    font-size: 16px;
    line-height: 150%;
    text-align: left;
  }

  .events-grid,
  .events-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-card img {
    max-width: 100%;
    margin: 0 auto;
    height: auto;
  }
}


/*  Outdoor Events Section  */
.block-outdoor-events {
  margin: 40px 0;
 max-width: 1266px;
}

.gallery-outdoor-events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
  width: 100%;
}

.card-outdoor-events {
  border-radius: 10px;
  overflow: hidden;
}

.card-outdoor-events img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/*  Corporate Events Section  */
.block-corporate-events {
  margin: 40px 0;
  max-width: 1266px;
}

.gallery-corporate-events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
  width:100%;
}

.card-corporate-events {
  border-radius: 10px;
  overflow: hidden;
}

.card-corporate-events img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Large Laptop Screen (1440px) */
@media (min-width: 1440px) {
  /* Outdoor Events */
  .block-outdoor-events {
    /* max-width: 1400px; */
    margin: 60px auto;
    /* padding: 0 40px;    */
  }

  .gallery-outdoor-events {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
  }

  /* Corporate Events */
  .block-corporate-events {
    /* max-width: 1400px; */
    margin: 60px auto;
    /* padding: 0 40px; */
  }

  .gallery-corporate-events {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
  }

  /* Cards - consistent look */
  .card-outdoor-events img,
  .card-corporate-events img {
    height: 350px;
    object-fit: cover;
  }
}


/* Tablet & Mobile */

@media (max-width: 1024px) {
  .gallery-outdoor-events,
  .gallery-corporate-events {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 20px;
  }

  .card-outdoor-events img,
  .card-corporate-events img {
    height: auto;
  }
}

/* book services section  */

.professional-videos-heading {
  font-family: "Futura Hv BT", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 56px;
  line-height: 132%;
  letter-spacing: 0;
  vertical-align: middle;
  text-transform: capitalize;
}


.book-services-reset {
            margin: 0;
            padding: 0;

        }

  .book-services-main-wrapper {
  background: linear-gradient(90deg, #150958 0%, #156CB6 50%, #15B8FE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  min-height: 76vh;
  }

  .book-services-layout-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
  height: 100%;
  }

  .book-services-text-content {
  flex: 1;
  color: white;
  max-width: 500px;
  margin-top: 98px;
  }

  .book-services-main-heading {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #fff !important;
  }

  .book-services-primary-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
  color: #ffffff !important;
  }

  .book-services-secondary-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 40px;
  opacity: 0.8;
  color: #fff !important;
  }

  .book-services-app-buttons-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  }

  .book-services-download-button {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
  }

  .book-services-download-button:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }

  .book-services-app-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  }

  .book-services-button-text {
  display: flex;
  flex-direction: column;
  }

  .book-services-button-text small {
  font-size: 0.8rem;
  opacity: 0.8;
  }

  .book-services-button-text strong {
  font-size: 1rem;
  font-weight: 600;
  }

  .book-services-phones-display {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 100%;
  }

  .book-services-phones-image {
  max-width: 118%;
  height: auto;
  object-fit: contain;
  }


/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .book-services-layout-container {
    gap: 40px;
    padding: 0 20px;
  }

  .book-services-text-content {
    margin-top:50px;
  }

  .book-services-main-heading {
    font-size: 3rem;
  }

  .book-services-primary-description,
  .book-services-secondary-description {
    font-size: 1rem;
  }

  .book-services-phones-image {
    max-width: 140%;
    margin-right: 130px;
  }
}

/* Tablet Portrait / Small Screens */
@media (max-width: 768px) {
  .book-services-layout-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .book-services-text-content {
    margin-top: 40px;
    max-width: 100%;
  }

  .book-services-phones-display {
    align-items: center;
    justify-content: center;
  }

  .book-services-main-heading {
    font-size: 2.5rem;
  }

  .book-services-primary-description,
  .book-services-secondary-description {
    font-size: 0.95rem;
  }

  .book-services-download-button {
    justify-content: center;
    width: 100%;
    max-width: 280px;
  }

  .book-services-app-buttons-wrapper {
    justify-content: center;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .book-services-main-heading {
    font-size: 2rem;
  }

  .book-services-primary-description,
  .book-services-secondary-description {
    font-size: 0.9rem;
  }

  .book-services-download-button {
    padding: 10px 16px;
  }

  .book-services-app-icon {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }

  .book-services-button-text strong {
    font-size: 0.95rem;
  }

  .book-services-button-text small {
    font-size: 0.75rem;
  }
}

/* Large Laptops & Desktops */
@media (min-width: 1440px) {
  .book-services-layout-container {
    max-width: 1400px;
    gap: 80px;
  }

  .book-services-main-heading {
    font-size: 4rem;
  }

  .book-services-primary-description {
    font-size: 1.25rem;
  }

  .book-services-secondary-description {
    font-size: 1.1rem;
  }

  .book-services-app-icon {
    width: 36px;
    height: 36px;
  }

  .book-services-download-button {
    padding: 14px 24px;
  }

  .book-services-button-text strong {
    font-size: 1.1rem;
  }

  .book-services-button-text small {
    font-size: 0.9rem;
  }

  .book-services-phones-image {
    max-width: 120%;
  }
}


  .book-hospitality-img {
  position: relative;
  width: 100%;
  height: 100vh !important;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 40px;
  }


.professionals-section {
  text-align: center;
  padding: 50px 20px;
}

.professionals-section h1 {
  font-family: "Futura Md BT", sans-serif !important;
  font-weight: bold;
  font-style: normal;
  font-size: 57px;
  line-height: 132%;
  letter-spacing: 0;
  vertical-align: middle;
  text-transform: capitalize;
}

/* Tablet (up to 1024px) */
@media (max-width: 1024px) {
  .professionals-section {
    padding: 40px 15px;
  }

  .professionals-section h1 {
    font-size: 42px;
    line-height: 130%;
  }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
  .professionals-section {
    padding: 30px 12px;
  }

  .professionals-section h1 {
    font-size: 32px;
    line-height: 125%;
    text-align: left;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .professionals-section {
    padding: 25px 10px;
  }

  .professionals-section h1 {
    font-size: 26px;
    line-height: 120%;
  }
}
