*{
   margin: 0;
   padding: 0;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input,
textarea,
button,
select,
a{
  caret-color: #ff9500;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:focus,
a:visited,
a:active{
  outline: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill{
-webkit-box-shadow:0 0 0 2000px #1a1a1a inset;
-webkit-text-fill-color: #fff;
transition: background-color 9999s ease-in-out 0s;
}


body{
    min-height: 100vh;
    background-color: black;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;    
    overflow-x:hidden;
}
 
nav{
    position: sticky;
    background-color:#0000003c;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.091);
    top:0;
    z-index: 1000;   /*  lightgallery z-index starts from 1001 so it should be lesser than that */
    backdrop-filter: blur(5px);   
}

nav ul{
    width:100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li{
    height: 50px;  
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display:flex;
    align-items: center;
    color:#ffffff;
}

nav ul li a.active {
    color: #ff9100;
    font-weight: bold;
  }


nav li:first-child{
  margin-right: auto;
  object-fit: contain;
}
.sidebar{
    position: fixed;
    top:0;
    right: 0;
    height:100vh;
    max-height: 100vh;
    overflow-x: hidden;
    max-width: 70vw;
    z-index:999;
    background-color: rgb(32, 32, 32);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.503);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width:100%;
}
.sidebar a{
    width: 100%;
}

.hamburger{
    display:none;
}

@media(max-width: 800px){
    .hideOnMobile{
        display: none;
    }
    .hamburger{
        display:block;
    }
}    
@media(max-width: 400px){
    .sidebar{
        width:100%;
    }

} 

/*..scroll reveal..*/
.scroll-reveal {
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}


.herosection{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.companylogo_lottie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.companylogo_json {
  width: 100%;
  height: 100%;
}

.companylogo_json lottie-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-down-icon {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  cursor: pointer;
}

.scroll-down-icon lottie-player {
  width: 100%;
  height: 100%;
}


/*......................................contact form....................*/
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: #000000;
    color: white;
  }
  
  .contact-form {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, hsl(0, 0%, 6%), #000000);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.207);
  }

  .contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.036) 50%,
        rgba(255, 255, 255, 0) 60%
    );
    animation: shine 2s ease-out infinite;
}
@keyframes shine {
    0% {
        left: -100%;
    }
    70% {
        left: 100%;
    }
    85% {
        left: 100%; 
    }
    100% {
        left: 100%;
    }
}
  .contact-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    margin-bottom: 0.5rem;
    font-size: clamp(0.8rem, 1vw, 1rem);
    color:rgb(255, 184, 51);
  }
  .required {
    color: rgb(255, 0, 0);
    margin-left: 4px;
    font-weight: bold;
  }
  
  
  .form-group input,
  .form-group textarea {
    padding: 0.7rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #1a1a1a;
    color: white;
    outline: none;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border: 1px solid #515151;
  }
  
  .submit-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: #ff8800;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #666565;
  }

  @media (max-width: 600px) {
    .contact-form {
      padding: 1.5rem;
    }
  
    .submit-btn {
      font-size: 0.95rem;
    }
  }
  
/*......about us.......*/

.aboutsection{
    height:80vh;
    width:100%;
    background-color: black;
    display:flex;
    justify-content: center;
    align-items: center;
}

.glassmorph{
    width: 80%; 
    max-width: 600px;
    height: auto;
    min-height: 400px;
    padding: 10vw 6vw;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 185%;
    position: relative;
    overflow: hidden;
}

.aboutheading{
    color: white;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
}
.aboutcontent{
    color: rgb(255, 255, 255);
    justify-content: flex-end;
    margin-top: 5rem;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
}

@media (max-width: 768px) {
  .aboutcontent {
      text-align: left;
      margin-top: 2rem;
  }
}

.aboutheading,
.aboutcontent {
  display: inline-block;
  background: linear-gradient(90deg, #ff9d00, #dcaf8c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



/*........image swiper..........*/

.portfoliosection{
  margin-top: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    flex-direction: column;    
}
.swiper {
    width: 85%;
  }

  .swiper-slide {
    
    width: 100%;
    aspect-ratio: 16 / 9;  
    max-width: 1000px;          
    height:15vw;
    background-position: center;
    background-size: cover;
  }
  

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0.5vw;
  }

   .slider-button-wrapper {
    margin-top: 2vh;
    display: flex;
    justify-content: center;
    width: 100%;
    
  }
  .slider-button {
    background-color: #ff8800;
    margin-top: 30px;
    color: white;
    border: 1px solid grey;
    padding: 0.5em 1.5em;
    border-radius: 25px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  a{
    text-decoration: none !important;
  }
  
  .slider-button:hover {
    background-color: #252525;
    color: white;
    transform: scale(1.05);
    animation: pulse;
  }

  /*.............social media..............................*/  

  .socialmediasection {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    padding: 1vw 2vw;
    margin-top: 8vh;
  }
  
  .social-media-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(35, 34, 34, 0.6); /* Background for the box */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(30, 30, 30, 0.3); /* Adding depth */
    width: 100%;
    max-width: 700px; /* Limit the width */
  }
  
  .social-heading {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    color: rgb(255, 140, 0);
    
  }
  
  .search_json {
    width: clamp(300px, 25vw, 600px);
    height: clamp(300px, 25vw, 600px);
    margin-top: -5rem;
  }
  
  .search_json lottie-player {
    width: 100%;
    height: 100%;
  }
  
  .social-icons-row {
    display: flex;
    gap: clamp(2rem, 5vw, 5rem);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -5rem;
    z-index: 10;
  }
  
  .social-icons-row img {
    width: clamp(30px, 5vw, 40px);
    height: clamp(30px, 5vw, 40px);
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .social-icons-row img:hover {
    transform: scale(1.2);
  }
  
  

   /*.............youtube..............................*/ 

   .youtube-cta-section {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    margin-top: 10vh;
    background-color: #000000;
    padding: 2rem;
    border-radius: 15px;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  
  .youtube-profile {
    flex: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .youtube-profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #ff0000;
    object-fit: cover;
  }
  
  .youtube-content {
    flex: 2;
    min-width: 0;
    text-align: left;
  }
  
  .youtube-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffb347;
  }
  
  .youtube-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #ccc;
  }
  
  .subscribe-btn {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.304);
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    font-size: 1rem;
    animation: pulse 0.6s infinite;
  }
  
  .subscribe-btn:hover {
    color: #cc0000;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .youtube-cta-section {
      flex-direction: column;
      text-align: center;
    }
  
    .youtube-profile,
    .youtube-content {
      width: 100%;
    }
  
    .youtube-content {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .youtube-content h2 {
      font-size: 1.5rem;
    }
  
    .youtube-content p {
      font-size: 0.95rem;
    }
  
    .subscribe-btn {
      font-size: 0.95rem;
      padding: 0.6rem 1rem;
    }
  
    .youtube-profile-pic {
      width: 150px;
      height: 150px;
    }
  }
  
  
  



   
  /*.............footer..............................*/


  .footer {
    width: 100%;
    background-color: #1a1a1a;
    color: #ccc;
    box-sizing: border-box;
    overflow-x: hidden;
    padding: 20px 40px;
    margin-top: 10rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  
  .footer-column {
    max-width: 35%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .footer-logo {
    font-size: 1.2rem;
    color: #ffb347;
    margin-bottom: 10px;
  }
  
  .footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
  }
  .footer-column h3 {
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: #ffb347;
  }
  
  .footer-column p {
    color: #ccc;
    font-size: 0.8rem;
    line-height: 1.6;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  .social-icons a {
    color: #ccc;
    font-size: 0.2rem;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.05);
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
    }
  
    .footer-column {
      max-width: 100%;
      padding: 10px 0;
    }
  
    .social-icons {
      justify-content: center;
      flex-wrap: wrap;
    }
  }

  
  .footer-legal {
    text-align: center;
    margin-top: 30px;
    padding-top: 10px;
  }
  
  .footer-legal hr {
    width: 80%;
    margin: 0 auto 10px;
    border: 0;
    border-top: 1px solid #777;
  }
  
  .footer-legal a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
  }
  
  .footer-legal a:hover {
    text-decoration: underline;
  }
  
  .footer-legal p {
    margin: 5px 0;
    color: #aaa;
    font-size: 14px;
  } 
  

  
  /*.............scroll to top button..............................*/
  #scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #ff8800;
    justify-content: center;
    align-items: center;
    color: white;
    border: none;
    outline: none;
    width: clamp(35px, 5vw, 50px);
    height: clamp(35px, 5vw, 50px);
    
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    display: none; /* Hidden by default */
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  
  #scrollToTopBtn:hover {
    background-color: #1d1d1d;
    transform: scale(1.1);
  }
  



   /*.............SERVICES PAGE..............................*/

   .marquee-section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .marquee-heading {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #f2f2f2;
  }
  
  .marquee-wrapper {
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 50%, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%, black 40%, transparent 100%);
    overflow: hidden;
  }
  
  /* Marquee Wrapper */
  .marquee {
    overflow: hidden;
    white-space: nowrap;
    margin: 20px 0;
    height: 60px;
    position: relative;
  }
  
  .marquee-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 20s linear infinite;
  }
  
  .marquee-left .marquee-track {
    animation: scroll-left 20s linear infinite;
  }
  
  .marquee-right .marquee-track {
    animation: scroll-right 20s linear infinite;
  }
  
  .marquee:hover .marquee-track {
    animation-play-state: paused;
  }
  
  .marquee-content {
    display: flex;
    gap: 50px;
    padding-right: 50px;
  }
  
  .marquee-content span {
    font-size: 0.9rem;
    color: #fff;
    padding: 10px 20px;
    background: #222;
    border-radius: 30px;
    white-space: nowrap;
  }
  
  /* Keyframes */
  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  @keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }
  
  /* Responsive Tweaks */
  @media (max-width: 768px) {
    .marquee-section {
      padding: 40px 15px;
    }
  
    .marquee-heading {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }
  
    .marquee {
      height: 50px;
    }
  
    .marquee-content {
      gap: 20px;
      padding-right: 30px;
    }
  
    .marquee-content span {
      font-size: 0.8rem;
      padding: 8px 16px;
    }
    .marquee-wrapper {
      mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    }
  }
  
  @media (max-width: 480px) {
    .marquee-heading {
      font-size: 1.25rem;
    }
  
    .marquee-content {
      gap: 20px;
      padding-right: 20px;
    }
  
    .marquee-content span {
      font-size: 0.75rem;
      padding: 6px 12px;
    }
    .marquee-wrapper {
      mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    }
  }
  

/*...stack card */
 :root {
  --cards: 7;
  --cardHeight: 35vh;
  --cardTopPadding: 1em;
  --cardMargin: 4vw;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

#cards {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--cards), var(--cardHeight));
  gap: var(--cardMargin);
  padding-bottom: calc(var(--cards) * var(--cardTopPadding));
  margin-bottom: var(--cardMargin);
}

.card {
  position: sticky;
  top: 20vh;
  padding-top: calc(var(--index) * var(--cardTopPadding));
}

#card1 {--index: 1; }
#card2 { --index: 2; }
#card3 { --index: 3; }
#card4 { --index: 4; }
#card5 { --index: 5; }
#card6 { --index: 6; }
#card7 { --index: 7; }

.card-body {
  box-sizing: border-box;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  height: var(--cardHeight);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#card1 .card-body {background: linear-gradient(135deg, hsl(0, 0%, 10%), #ffffff);  }
#card2 .card-body { background: linear-gradient(0deg, hsl(0, 0%, 15%), #000000); color:rgb(222, 221, 221)}
#card3 .card-body { background: linear-gradient(135deg, hsl(0, 0%, 10%), #ffffff); }
#card4 .card-body { background: linear-gradient(0deg, hsl(0, 0%, 15%), #000000); color:rgb(222, 221, 221) }
#card5 .card-body { background: linear-gradient(135deg, hsl(0, 0%, 10%), #ffffff); }
#card6 .card-body { background: linear-gradient(0deg, hsl(0, 0%, 15%), #000000); color:rgb(222, 221, 221)}
#card7 .card-body { background: linear-gradient(135deg, hsl(0, 0%, 10%), #ffffff); }

.card-content {
  max-width: 700px;
}

.card-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  :root {
    --cardHeight: 40vh;
  }

  .card-content h2 {
    font-size: 1.75rem;
  }

  .card-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  :root {
    --cardHeight: 45vh;
  }

  .card-body {
    padding: 1.5rem;
  }

  .card-content h2 {
    font-size: 1.5rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  :root {
    --cardHeight: 50vh;
    --cardMargin: 6vw;
    --cardTopPadding: 0.5em;
  }

  .card-body {
    padding: 1rem;
  }

  .card-content h2 {
    font-size: 1.3rem;
  }

  .card-content p {
    font-size: 0.85rem;
  }
}

   /*.............PORTFOLIO PAGE..............................*/

   .gallery-section {
    padding: 40px 20px;
    background-color: black;
    text-align: center;
  }
  
  .gallery-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #f2f2f2;
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .gallery-item {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 133.33%; /* Aspect ratio of 3:4 */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Ensures text is aligned at the bottom */
    cursor: pointer;
  }
  
  .gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    z-index: 0;    
  }
  
  .gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(111, 110, 109, 0.333) 30%, rgba(255, 170, 0, 0.634) 100%);
    z-index: 1;
  }
  
  /* Text Positioning */
  .image-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    border-radius: 5px;
    z-index: 2; /* Ensures text is above the image and gradient */
  }
  
  .gallery-item:hover {
    transform: scale(1.02);
  }
  
  
  /* Tablets (3 in a row) */
  @media (max-width: 992px) {
    .gallery-container {
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      padding: 0 10px;
    }
    .image-name{
        font-size: 1rem; 
    }
  }
  
  /* Mobile (2 in a row) */
  @media (max-width: 600px) {
    .gallery-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      padding: 0 10px;
      .image-name{
        font-size: 0.8rem; 
    }
    }
  
    /* Make sure images stay within the same aspect ratio */
    .gallery-item {
      padding-bottom: 150%; /* Maintain aspect ratio (portrait) */
    }
  }
  
  
  
  
  

  /*............ EVENTS GALLERY PAGE..............................*/

   .breadcrumb {
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    margin-left: 20px;
    padding: 10px 16px;
    list-style-type:none;
    display: inline-flex; /* Make the items align in a row */
    align-items: center;
    }
  
  .breadcrumb ul {
    padding: 8px;
    font-size: 0.8rem;    
  }
  
 .breadcrumb li a {
    color: #ffa600; 
    text-decoration: none;
  }
  .breadcrumb li{
    color: #ffffff;   
  } 
  .breadcrumb li a:hover {
    text-decoration: underline;
  }

  .breadcrumb i {
    color: #fff; /* Color of the icon */
    font-size: 1rem;
    margin: 0 2vw; /* Space around the icon */
  }

  .breadcrumb-back-button {
    background-color: #ffa600; 
    margin-right: 2vw;
    color: white;
    border: none;
    padding: 0.1vw 1.5vw; 
    border-radius: 5px; 
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
  }
  
.eventsgallery{
    margin: 0 auto;
    max-width: 1200px;
    margin-top: 2vw;
}

.events_gallery_container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
  padding-top: 5vw;
  box-sizing: border-box;
}

.events_gallery_container a{
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.2rem;
  box-shadow: 0 0 5px rgba(98, 98, 98, 0.751);
  transition: all 0.5s ease;
  display: block;
}

.events_gallery_container a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

  
  @media (max-width: 768px) {
    .events_gallery_container {
      grid-template-columns: repeat(2, 1fr);
      padding:0 10vw;
      padding-top: 10vw;
      gap: 4vw;
    }
    .breadcrumb-back-button {
      margin-right: 2vw;
      padding: 0.1vw 2vw; 
    }
  }


/* ...........lightgallery...... */
.lg-outer {
  z-index: 1001; /* navbar z-index 1000 so it should be greater than that */
  position: relative; /* Ensure it has positioning context */
}

@font-face {
font-family: 'lg';
src: url('package/lightgallery/fonts/lg.woff2') format('woff2'),
     url('package/lightgallery/fonts/lg.woff') format('woff'),
     url('package/lightgallery/fonts/lg.ttf') format('truetype'),
     url('package/lightgallery/fonts/lg.svg#lg') format('svg');
font-weight: normal;
font-style: normal;
}

.disclaimer-text {
  font-size: 0.65rem;
  color: #999;
  text-align: center;
  margin: 1.5rem auto 0;
  max-width: 90%;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .disclaimer-text {
    font-size: 0.5rem; /* Slightly bigger for tablets */
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .disclaimer-text {
    font-size: 0.5rem; /* Bigger for mobile devices */
    margin-top: 0.8rem;
  }
}



/*.............CONTACT PAGE..............................*/


.contact-wrapper {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 2rem;
  background-color: #000;
  color: white;
  border-radius: 15px;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden; /* Prevent horizontal scroll */
  max-width: 100%;
}

/* CONTACT INFO */
.contact-info {
  max-width: 350px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content:center;
  margin: 10vh;
}

.info-block {
  text-align: center;
  padding: 0 1rem;
}

.info-block h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.info-block p {
  font-size: 1rem;
  color: #ccc;
}

/* CONTACT FORM */
.contactPgform {
  width: 100%;
  max-width: 650px;
  background: linear-gradient(135deg, hsl(0, 0%, 6%), #000000);
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.207);
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.contactPgform::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.036) 50%,
      rgba(255, 255, 255, 0) 60%
  );
  animation: shine 2s ease-out infinite;
}
@keyframes shine {
  0% {
      left: -100%;
  }
  70% {
      left: 100%;
  }
  85% {
      left: 100%; 
  }
  100% {
      left: 100%;
  }
}
.contactPgform h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.contactpg-form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.contactpg-form-group label {
  margin-bottom: 0.5rem;
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: rgb(255, 184, 51);
}

.contactpg-form-group input,
.contactpg-form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #1a1a1a;
  color: white;
  outline: none;
  box-sizing: border-box;
}


.contactpg-form-group input:focus,
.contactpg-form-group textarea:focus {
  border: 1px solid #515151;
}

.contact-required{
  color: red;
}
.contactpg-submit-btn {
  width: 100%;
  padding: 0.8rem;
  background-color: #ff8800;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 1rem;
}

.contactpg-submit-btn:hover {
  background-color: #666565;
}

/* ✅ RESPONSIVE FIX FOR MOBILE VIEW */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 2rem;
  }

  .contact-info,
  .contactPgform {
    width: 100%;
    max-width: 500px;
    padding: 0 1rem; /* Add margin on both sides */
  }

  .contactPgform {
    margin-top: 0;
  }
}
/*location map....*/

.locationsection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
  gap: 2rem;
  margin-top: 4vh;
}

.map-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.location-lottie {
  width: 15vw;
  max-width: 100px;
  min-width: 80px;
  aspect-ratio: 1 / 1;
}

.location-lottie lottie-player {
  width: 100%;
  height: 100%;
}

.map-heading h2 {
  font-size: 2rem;
  color: #fff;
}

.map-container {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .map-heading h2 {
    font-size: 1.5rem;
  }

  .map-heading i {
    font-size: 2rem;
  }

  .map-container {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
}







   /*.............SUBMISSION PAGE..............................*/

   .submissionpg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    text-align: center;
    gap: 2rem;
  }
  
  .tick-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .tick-lottie {
    width: 30vw;
    max-width: 150px;
    min-width: 80px;
    aspect-ratio: 1 / 1;
  }
  
  .tick-lottie lottie-player {
    width: 100%;
    height: 100%;
  }
  
  .message-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    padding: 0 4vw;
  }
  
  .message-content h1 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  }
  
  .message-content p {
    font-size: clamp(1rem, 2vw, 1rem);
  }
  
  .back-btn {
    background-color: black;
    color: white;
    border: 1px solid grey;
    padding: 0.75em 2em;
    border-radius: 25px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    transition: border-color 0.3s ease;
  }
 
  .back-btn:hover {
    border: 2px solid rgb(255, 255, 255);
    background-color: rgb(59, 59, 59);
  }
  
  .social-box {
    background-color: #111;
    padding: 1.5rem;
    border-radius: 15px;
    width: 100%;
    max-width: 300px;
  }
  
  .social-box h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    color: #FAAE02;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .social-icons a {
    color: #fff;
    font-size: clamp(1rem, 3vw, 1.5rem);
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    color: #b2b2b2;
  }
  


  /*.............ERROR SUBMISSION PAGE..............................*/

  .submissionpg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    text-align: center;
    gap: 2rem;
  }
  
  .tick-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .tick-lottie {
    width: 30vw;
    max-width: 150px;
    min-width: 80px;
    aspect-ratio: 1 / 1;
  }
  
  .tick-lottie img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .message-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    padding: 0 4vw;
  }
  
  .message-content h1 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  }
  
  .message-content p {
    font-size: clamp(1rem, 2vw, 1rem);
  }
  
  
  .button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .back-btn{
    background-color: black;
    color: white;
    border: 1px solid grey;
    padding: 0.75em 2em;
    border-radius: 25px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  .contact-btn {
    background-color: rgb(236, 236, 236);
    color: black;
    border: 1px solid grey;
    padding: 0.75em 2em;
    border-radius: 25px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  
  .back-btn:hover {
    border: 1.5px solid rgb(255, 255, 255);
    background-color: rgb(59, 59, 59);
  }
  .contact-btn:hover {
    background-color: rgb(193, 193, 193);
    border: 1.5px solid rgb(255, 157, 0);
  }
  



/*..................privacy and terms page.............................*/
.legal-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background-color: black;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  font-family: Arial, sans-serif;
  color: #ccc;
  line-height: 1.7;
}

/* Headings */
.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #ffa600;
  letter-spacing: 2px;
  line-height: 1.4;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #e09306;
  line-height: 1.4;
}

.legal-page h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
  line-height: 1.4;
}

/* Paragraphs and Lists */
.legal-page p {
  margin: 1rem 0;
  color: #ccc;
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.legal-page ul li {
  margin-bottom: 0.5rem;
  color: #ccc;
  line-height: 1.6;
}

/* Highlighted Text */
.legal-page strong {
  color: #ffffff;
  font-weight: 600;
}

.legal-page em {
  color: #ccc;
  font-style: italic;
}

/* Links */
.legal-page a {
  color: #4fc3f7;
  text-decoration: underline;
}

.legal-page a:hover {
  text-decoration: none;
}

/* List Bullet Color */
.legal-page ul li::marker {
  color: #ffa600;
}

/* Force consistent color inheritance */
.legal-page * {
  color: inherit;
  font-family: inherit;
  box-sizing: border-box;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .legal-page {
    padding: 5rem 5rem;
  }

  .legal-page h1 {
    font-size: 1.5rem;
  }

  .legal-page h2 {
    font-size: 1.2rem;
  }

  .legal-page h3 {
    font-size: 1rem;
  }

  .legal-page p,
  .legal-page li {
    font-size: 0.4rem;
    line-height: 1.6;
  }
}

