
Html,body{
Overflow-x:hidden important 
}
   
   
   #preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #38006b; /* dark for event theme */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
}

header
{
  background-color: #38006b;
  color: white;
}



.loader .dot {
  width: 15px;
  height: 15px;
  margin: 5px;
  border-radius: 50%;
  background: #fcb336;
  animation: bounce 1s infinite ease-in-out;
}

.loader .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.loader .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.loader span {
  margin-top: 10px;
  font-size: 16px;
  color: white;
  font-weight: bold;
  font-family: 'Arial Rounded MT', sans-serif;
  animation: pulse 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}


    .navbar {
      background-color: white;
      padding: 1rem 2rem;
    }

    .navbar-brand {
      color: #ff3b3f;
      font-weight: bold;
      font-size: 28px;
      letter-spacing: 2px;
    }
    .btn-red:hover
    {
      background-color: #fcb336;
    }
    .btn-orange:hover
    {
      background-color: #fcb336;
      color: black;
    }

    .navbar-nav .nav-link {
  color: black;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 19px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #fcb336;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 50%;
}

.navbar-nav .nav-link:hover {
  color: #fcb336;
}


    .call-btn {
      background-color: #fcb336;
      color: white;
      border-radius: 50px;
      padding: 8px 20px;
      font-weight: bold;
      border: none;
    }

    @media (max-width: 767.98px) {
      .navbar-nav {
        text-align: center;
      }

      .navbar-collapse {
        justify-content: center;
      }

      .call-btn {
        margin-top: 10px;
      }
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23d32f2f' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
    }

    .herok-section {
      padding: 60px 20px;
      min-height: 100vh;
      display: flex;
      align-items: center;
      margin-top: -5rem;
      padding: 40px;
    }

    @media(max-width:550px)
    {
      .herok-section {

      margin-top: 1rem;

    }
    }

    .highlight-tag {
      color: #d4af37;
      background: rgba(255, 60, 60, 0.1);
      display: inline-block;
      padding: 6px 14px;
      border: 1px solid #d4af37;
      border-radius: 6px;
      font-weight: 600;
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .herok-heading {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.2;
    }

    .hero-buttons .btn {
      font-weight: 600;
      border-radius: 50px;
      padding: 10px 24px;
      font-size: 1rem;
    
    }

    .btn-red {
      background-color: #fcb336;
      color: black;
      border: none;
    }

    .btn-orange {
      background-color: #fcb336;
      color: #000;
      border: none;
    }

    .video-wrapper {
  width: 100%;
  height: 500px; /* Increased height */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


    @media (max-width: 768px) {
      .hero-heading {
        font-size: 2rem;
      }
    }
     .why-us-section {
      background-image: url('image/whyus.jpg'); /* Replace with actual image path */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 10px 0;
      position: relative;
      padding-bottom: 30px;
    }

    .why-us-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 1;
    }

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

    .why-item {
      text-align: center;
      margin-bottom: 40px;
      padding: 20px;
    }
    .btn-gold:hover
    {
      background-color: #fcb336;
      color: black;
    }

    .why-icon {
      width: 100px;
      height: 100px;
      border: 2px solid #fcb336;
      border-radius: 50%;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      color: #fcb336;
      background-color: rgba(255, 0, 0, 0.1);
    }

    .why-title {
      font-size: 1.3rem;
      color: #fff;
      margin-bottom: 15px;
    }

    .why-text {
      color: #ddd;
      font-size: 1rem;
      line-height: 1.6;
    }

    .btn-explore {
      background-color: #fcb336;
      color: #fff;
      border: none;
      padding: 12px 30px;
      font-weight: bold;
      font-size: 1rem;
      margin-top: -30px;
    }

    .btn-explore:hover {
      background-color: darkred;
    }

    @media (max-width: 767px) {
      .why-icon {
        font-size: 30px;
        width: 80px;
        height: 80px;
      }

      .why-title {
        font-size: 1.1rem;
      }

      .why-text {
        font-size: 0.95rem;
      }
    }


    .service-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    color: white;
  }

  .bg-img {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* black with 60% opacity */
    z-index: 3;
  }

  .service-content {
    position: relative;
    z-index: 3; /* higher than overlay */
    padding: 2rem;
  }

  .service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .service-text {
    font-size: 19px;
    line-height: 1.6;
    text-align: justify;
  }

    .btn-learn-more {
      background-color: #fcb336;
      color: black;
      border: none;
      padding: 12px 25px;
      border-radius: 25px;
      font-weight: bold;
      margin-top: 30px;
    }

    .btn-learn-more:hover {
      background-color: #d4af37;
    }

    @media (max-width: 768px) {
      .service-title {
        font-size: 1.3rem;
      }
      .service-text {
        font-size: 0.9rem;
      }
    }
     .step-icon {
      width: 120px;
      height: 120px;
      background-color: #1a1a1a;
      border: 2px solid gold;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-bottom: 20px;
    }
    .step-icon i {
      color: gold;
      font-size: 48px;
    }
    .step-title {
      font-size: 1.5rem;
      font-weight: bold;
    }
    .step-description {
      font-size: 1rem;
      color: white;
      max-width: 300px;
      margin: auto;
    }
     .heros-sections {
      background: url('image/herosection.jpg') no-repeat center center/cover;
      margin-top: 3rem;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10rem;
      position: relative;
      background-color: white;
    }
    @media(max-width:550px)
    {
      .heros-sections
      {
        padding: 2rem;
      }
    }

    .heros-overlay {
      background: rgba(0, 0, 0, 0.6);
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
    }

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

    .heros-title {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .heros-subtitle {
      font-size: 1.25rem;
      margin-top: 1rem;
      margin-bottom: 2rem;
    }

    .heros-button {
      background-color: #fcb336;
      border: none;
      padding: 0.75rem 2rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 8px;
      color: white;
      transition: background 0.3s;
      
    }
    

    .heros-button:hover {
      background-color: #d32f2f;
    }

    @media (max-width: 768px) {
      .heros-title {
        font-size: 1.75rem;
      }

      .heros-subtitle {
        font-size: 1rem;
      }
    }
    .gold {
      color: #d4af37;
    }
    .gold-bg {
      background-color: #d4af37;
      color: #000;
    }
    .content-section {
      padding: 4rem 2rem;
      text-align: center;
    }
    .image-frame {
      border: 10px solid #fff;
      transform: rotate(-2deg);
      margin: 1rem;
      max-width: 100%;
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    }
    .top-images .col-md-6:nth-child(1) img {
      transform: rotate(-3deg);
    }
    .top-images .col-md-6:nth-child(2) img {
      transform: rotate(3deg);
    }
    .bottom-images .col-md-6:nth-child(1) img {
      transform: rotate(-3deg);
    }
    .bottom-images .col-md-6:nth-child(2) img {
      transform: rotate(2deg);
    }
    .gold-divider {
      width: 80px;
      height: 3px;
      background: #d4af37;
      margin: 1rem auto;
    }
    .btn-gold {
      background-color: #d4af37;
      color: black;
      border: none;
      padding: 0.5rem 1.5rem;
    }
    @media(max-width:550px)
    {
      .hero-section
      {
        margin-top: 3rem;
      }
    }
     #backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 3rem;
  background: none;
  border: none;
  color: #fcb336;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#backToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#backToTopBtn:hover {
  color: #d4af37;
}


/* abouts us */

    .herop-section {
      background-color: #38006b;
      color: white;
      text-align: center;
      padding: 80px 20px;
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;

    }

    .herop-section h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    @media(max-width:550px)
    {
      .herop-section h1 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }
    }

    .herop-section .highlights {
      color: #fcb336;
    }

    .herop-section p {
      max-width: 700px;
      margin: auto;
      font-size: 1rem;
      color: #ccc;
    }

    /* Why Choose Us Section */
    .choose-us {
      padding: 80px 20px;
      background-color: #fff;
      text-align: center;
    }

    .choose-us h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 40px;
    }

    .choose-box {
      background-color: #38006b;
      color: white;
      border-radius: 20px;
      padding: 30px 20px;
      height: 100%;
      transition: transform 0.3s;
    }

    .choose-box:hover {
      transform: translateY(-5px);
    }

    .choose-box i {
      font-size: 40px;
      color: #ffb400;
      margin-bottom: 20px;
    }

    .choose-box h5 {
      color: white;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .choose-box p {
      color: #ddd;
      font-size: 0.95rem;
    }

    .cta-btn {
      background-color: #fcb336;
      color: white;
      border-radius: 50px;
      padding: 10px 25px;
      font-weight: 500;
      margin-top: 40px;
      transition: 0.3s;
      border: none;
    }

    .cta-btn:hover {
      background-color: #e02c22;
    }

    @media (max-width: 768px) {
      .hero-section h1 {
        font-size: 2.2rem;
      }

      .choose-box {
        margin-bottom: 30px;
      }
    }
     .section-title {
      font-size: 2.5rem;
      font-weight: bold;
      color: #fcb336;
    }

    .mission-vision-card {
      background: #38006b;
      border-radius: 1rem;
      padding: 2rem;
      height: 100%;
      box-shadow: 0 0 20px rgba(255, 60, 60, 0.2);
      transition: transform 0.3s ease;
    }

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

    .icon-box {
      width: 60px;
      height: 60px;
      background-color: #fcb336;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .icon-box i {
      font-size: 1.5rem;
      color: #fff;
    }

    @media (max-width: 767.98px) {
      .section-title {
        font-size: 2rem;
      }
    }
    .counter-section {
      padding: 100px 0;
      text-align: center;
      background: linear-gradient(to right, #38006b);
    }
    .counter {
      font-size: 3rem;
      font-weight: bold;
      color: #ffcc00;
    }
    .label {
      font-size: 1.2rem;
      color: #ccc;
      margin-top: 10px;
    }
    .counter-box {
      padding: 30px;
      border-radius: 12px;
      background-color: #1e1e1e;
      margin: 15px;
      border: 1px #d4af37 solid;
      transition: transform 0.3s ease;
    }
    .counter-box:hover {
      transform: scale(1.05);
    }
     .client-section {
      padding: 70px 0;
      margin-top: 3rem;
      padding-bottom: 0px;

    }

    .client-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 12px 22px rgba(0, 0, 0, 0.05);
      text-align: center;
      padding: 30px 20px;
      transition: transform 0.3s ease;
      font-weight: 600;
      font-size: 1.1rem;
      color: #2a2c2f;
      border: 1px solid #38006b;
    }

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

    .client-icon {
      font-size: 40px;
      color: #38006b;
      margin-bottom: 15px;
    }
    .video-bg-container {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .video-bg-container video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      z-index: 1;
      object-fit: cover;
    }

    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 2;
    }

    .video-content {
      position: relative;
      z-index: 3;
      color: #fff;
      text-align: center;
      padding: 20px;
      top: 50%;
      transform: translateY(-50%);
    }

    .video-content h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .video-content p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 20px auto;
    }

    .cta-btn {
      padding: 10px 25px;
      font-size: 1.1rem;
      background-color: #fcb336;
      border: none;
      border-radius: 30px;
      color: #fff;
      transition: all 0.3s ease;
    }

    .cta-btn:hover {
      background-color: #fcb336;
    }

    @media (max-width: 768px) {
      .video-content h1 {
        font-size: 2rem;
      }

      .video-content p {
        font-size: 1rem;
      }
    }
    .heros-section {
      background: url('image/herosection.jpg') no-repeat center center/cover;
      margin-top: 10rem;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10rem;
      position: relative;
    }

    .heros-overlay {
      background: rgba(0, 0, 0, 0.6);
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
    }

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

    .heros-title {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .heros-subtitle {
      font-size: 1.25rem;
      margin-top: 1rem;
      margin-bottom: 2rem;
    }

    .heros-button {
      background-color: #fcb336;
      border: none;
      padding: 0.75rem 2rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 8px;
      color: white;
      transition: background 0.3s;
    }

    .heros-button:hover {
      background-color: #d32f2f;
    }

    @media (max-width: 768px) {
      .heros-title {
        font-size: 1.75rem;
      }

      .heros-subtitle {
        font-size: 1rem;
      }
    }


    /* service */

    .btn-enq
    {
        text-align: center;
        background-color: #fcb336;
        padding-right: 25px;
        padding-left: 25px;
        padding-top: 10px;
        padding-bottom: 10px;
        border-radius: 30px;
        color: white;
        margin-top: 1.5rem;
        font-weight: 600;
    }
    .btn-enq:hover
    {
        background-color: white;
        color: black;
        border: 1px solid #fcb336;
        font-weight: 600;
    }
    .custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 20px;
}

.custom-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  background-color: #121113;
  transition: transform 0.4s ease-in-out; /* smooth scaling */
}

.custom-grid img:hover {
  transform: scale(1.05); /* slightly zoom in */
}
.hero-section {
      background: url('image/herosection.jpg') no-repeat center center/cover;
      margin-top: 10rem;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 5rem;
      position: relative;
    }

    .hero-overlay {
      background: rgba(0, 0, 0, 0.6);
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
    }

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

    .hero-title {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .hero-subtitle {
      font-size: 1.25rem;
      margin-top: 1rem;
      margin-bottom: 2rem;
    }

    .hero-button {
      background-color: #f44336;
      border: none;
      padding: 0.75rem 2rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 8px;
      color: white;
      transition: background 0.3s;
    }

    .hero-button:hover {
      background-color: #d32f2f;
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 1.75rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }
    }
      #backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 3rem;
  background: none;
  border: none;
  color: #fcb336;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#backToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#backToTopBtn:hover {
  color: #d4af37;
}
.video-bg-container {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .video-bg-container video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      z-index: 1;
      object-fit: cover;
    }

    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 2;
    }

    .video-content {
      position: relative;
      z-index: 3;
      color: #fff;
      text-align: center;
      padding: 20px;
      top: 50%;
      transform: translateY(-50%);
    }

    .video-content h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .video-content p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 20px auto;
    }

    .cta-btn {
      padding: 10px 25px;
      font-size: 1.1rem;
      background-color: #fcb336;
      border: none;
      border-radius: 30px;
      color: #fff;
      transition: all 0.3s ease;
    }

    .cta-btn:hover {
      background-color: #fcb336;
    }

    @media (max-width: 768px) {
      .video-content h1 {
        font-size: 2rem;
      }

      .video-content p {
        font-size: 1rem;
      }
    }

    /* event */

    .loader .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.loader .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.loader span {
  margin-top: 10px;
  font-size: 16px;
  color: #ff3b3f;
  font-weight: bold;
  font-family: 'Arial Rounded MT', sans-serif;
  animation: pulse 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}


    .navbar {
      background-color: white;
      padding: 1rem 2rem;
    }

    .navbar-brand {
      color: #ff3b3f;
      font-weight: bold;
      font-size: 28px;
      letter-spacing: 2px;
    }

    .navbar-nav .nav-link {
  color: black;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 19px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #fcb336;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 50%;
}

.navbar-nav .nav-link:hover {
  color: #fcb336;
}


    .call-btn {
      background-color: #fcb336;
      color: white;
      border-radius: 50px;
      padding: 8px 20px;
      font-weight: bold;
      border: none;
    }

    @media (max-width: 767.98px) {
      .navbar-nav {
        text-align: center;
      }

      .navbar-collapse {
        justify-content: center;
      }

      .call-btn {
        margin-top: 10px;
      }
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23d32f2f' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
    }

  .nav-pills .nav-link {
    background-color: #fcb336;
    margin: 0.3rem;
    border-radius: 25px;
    font-weight: bold;
  }

  .nav-pills .nav-link.active {
    background-color: #fcb336;

  }



 .nav-pills .nav-link {
      background-color: #fcb336;
      color: white;
      margin: 0 5px;
      border-radius: 20px;
      font-weight: 500;
    }

    .nav-pills .nav-link.active {
      background-color: white;
      color: #fcb336;
      border: 1px solid #fcb336;
    }

    .nav-pills .nav-link:focus,
    .nav-pills .nav-link:hover {
      opacity: 0.9;
    }
  .product-card
  {
    background-color: white;
    border-radius: 10px;
    color: black;
    height: 100%;
    border: 2px solid #fcb336;
  }
  .product-card:hover
  {
    background-color: #fcb336;
    color: white;
    border: 2px solid white;
  }
  @media(max-width:550px)
  {
    .product-card
  {
    background-color: white;
    border-radius: 10px;
    color: black;
    border: 1px solid #fcb336;
    height: 170px;
  }
  }
  .title
  {
    text-align: center;
    padding: 10px;
    font-weight: 600;
  }
  .img-top
  {
    border-radius: 10px;
    height: 200px;
    width: 100%;
  }
  @media(max-width:550px)
  {
    .img-top
    {
        height: 100px;
    }
  }

  /* contact */

  .contact-section {
      padding: 50px 20px;
    }

    .contact-left {
      padding-right: 30px;
    }

    .contact-left h2 {
      font-size: 32px;
    }

    .contact-left span {
      color: #ff3b3f;
    }

    .contact-left img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 20px;
    }

    .contact-info p, .contact-info a {
      color: #fff;
      margin-bottom: 10px;
      font-size: 16px;
    }

    .form-control, .form-select {
      border: none;
      border-bottom: 1px solid #ff3b3f;
      border-radius: 0;
      background-color: transparent;
      color: #000;
    }

    .form-control:focus, .form-select:focus {
      box-shadow: none;
      border-bottom: 2px solid #ff3b3f;
    }

    .form-label {

      color: #000;
    }

    .submit-btn {
      background-color: #fcb336;
      border: none;
      color: black;
      padding: 10px 30px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .form-section {
      background: #fff;
      padding: 30px;
      border-radius: 5px;
      color: #000;
    }

    @media (max-width: 768px) {
      .contact-left {
        margin-bottom: 30px;
        padding-right: 0;
      }
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23d32f2f' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
    }
      #backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 3rem;
  background: none;
  border: none;
  color: #fcb336;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#backToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#backToTopBtn:hover {
  color: #d4af37;
}
@media(max-width:820px)
{
  .contact-section
  {
    margin-bottom: 3rem;
  }
}


 h1 {
      font-size: 36px;
      margin-bottom: 30px;
      font-family: 'Cinzel Decorative', cursive;
    }

    .event-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 25px;
    }

    .event-tab {
     color: #d0d0d0;
  font-size: 20px;
  cursor: pointer;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
   transition: color 0.1s ease-out, border-color 0.3s ease-out !important;
    }

    .event-tab:hover,
    .event-tab.active {
      color: #fff;
      border-color: gold;
    }
.gallery-section {
    display: none;
}
.gallery-section.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-section .column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
