@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/Cinzel-Regular.woff2') format('woff2'),
    url('../fonts/Cinzel-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/Cinzel-Black.woff2') format('woff2'),
    url('../fonts/Cinzel-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/Cinzel-Bold.woff2') format('woff2'),
    url('../fonts/Cinzel-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/Cinzel-Medium.woff2') format('woff2'),
    url('../fonts/Cinzel-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



html,
body {
  height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
  overflow: hidden;
  /* overflow: hidden;*/
  /* disable native scroll */
  font-family: Arial, sans-serif;
}



.wrapper {
  height: 100%;
  width: 100%;
  position: relative;
}

.container {
  height: 100%;
}


ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100vh;
}

li {
  height: 100vh;
  /* full page height */
  display: flex;
}

.overlay-content.ocLeft {
  left: 100px;
  transform: translate(0, -50%);
  text-align: left;
  margin-bottom: -100px;
}

/* Newsletter section */
.newsletter {
    margin-top: clamp(32px, 6vw, 64px);
    padding: clamp(24px, 4vw, 40px);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--round);
    text-align: center;
    display: grid;
    gap: 16px;
}

.newsletter-title {
    margin: 0;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
}

.newsletter-desc {
    color: var(--muted);
    font-size: clamp(14px, 2vw, 16px);
    margin: 0;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

    .newsletter-form input {
        flex: 1;
        min-width: 220px;
        max-width: 320px;
        padding: 12px 14px;
        border-radius: var(--round);
        border: 1px solid rgba(255,255,255,0.15);
        background: transparent;
        color: var(--fg);
        font-size: 15px;
    }

        .newsletter-form input::placeholder {
            color: var(--muted);
        }

    .newsletter-form button {
        padding: 12px 20px;
        border: none;
        border-radius: var(--round);
        background: var(--fg);
        color: var(--bg);
        font-weight: 600;
        cursor: pointer;
        transition: background 0.25s ease;
    }

        .newsletter-form button:hover {
            background: var(--accent);
            color: #fff;
        }

.newsletter-message {
    margin-top: 10px;
    font-size: 14px;
}



/* Dot navigation */
.dot-nav {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1000;
    background: #00000075;
    /*border: 1px solid #6c6244;
    padding: 6px;
    border-radius: 50px;*/
}

.dot-nav a {
  width: 8px;
  height: 18px;
  border-radius: 10px;
  background: #fff;
  display: block;
  transition: background 0.3s, transform 0.2s;
}

.dot-nav a:hover {
  background: #ffa815;
}

.dot-nav a.active {
  background: #ffa815;
  height: 70px;
}


#transitionOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
    transition: opacity 0.5s ease;
}








li {
  overflow: hidden;
}

.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
}

.video-section video {
  width: 100%;
  object-fit: cover;
  opacity: 0.8;
  /* ✅ Only affects video */
  z-index: 0;
}

.diffretVideo video {

  width: 100%;
  height: 100vh;
}

#s3 .vd-slider video.active {
  opacity: .7;
  /* ✅ Only affects video */
}



/* Overlay Content */
.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
  max-width: 500px;
}

h1,
h2,
h3 {
  font-family: 'Cinzel';
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 15px;
}

p {
  font-family: 'Cinzel';
  font-size: 21px;
  line-height: 22px;
}


/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 9991;
  backdrop-filter: blur(8px);
}

.logo {
  margin-top: 4px;
}

.logo img {
  height: 42px;
}

.logoShort {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

/* Hidden logo initially */
.logoShort img {
  opacity: 0;
  transform: scale(0.8);
  animation: logoReveal 1s ease-out forwards;
  animation-delay: 2.4s;
  /* Start after glow finishes */
}

/* Glowing "pulse" circle before logo appears */
.logoShort::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  animation: glowPulse 2.4s ease-out forwards;
  z-index: 0;
}

.logoShort {
  width: 189px;
  position: absolute;
  z-index: 9;
  height: 243px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.logoShort .tusharthText {
  height: 66px;
  margin-top: 20px;
}

/* Keyframes for glowing pulse 3 times */
@keyframes glowPulse {

  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  20%,
  40%,
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
  }

  30%,
  50%,
  70% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.0);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
}

/* Keyframes for logo reveal */
@keyframes logoReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}



.menu {
  display: flex;
  gap: 34px;
}

.menu a {
  font-size: 18px;
  font-family: 'Cinzel';
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
}
.mclose{ display: none;}
.mclose img{ width: 22px; height: 22px;}

.menu a:hover,
.menu a.active {
  color: #ffc100;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;       /* Full width */
  height: 100vh;      /* Full height */
  background-color: rgba(0, 0, 0, 0.95); /* Dark overlay style */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 9999;
}

.mobile-menu a {
  color: white;
  font-size: 2rem;
  margin: 20px 0;
  text-decoration: none;
}

.mobile-menu.show {
  transform: translateY(0); /* Slide down into view */
}


/*HEADER END*/


/*FOOTER*/
.ftTop {
  padding: 0 20px;
  text-align: left;
  max-width: 1200px;
  margin: -80px auto 0 auto;
}

.ftTop h2 {
  font-size: 38px;
}

.ftTop small {
  color: #b0b3ba;
  display: block;
  margin-bottom: 8px;
}

.ftTop p {}

.columns {
    display: flex;
    gap: 40px;
    margin-top: 25px;
    justify-content: left;
    border-top: 1px solid #514d4d;
    padding-top: 50px;
}

.column {
  flex: 1;
}

.column h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

.column a {
  font-size: 17px;
  color: #b0b3ba;
  margin-bottom: 8px;
  display: block;
  text-align: left;
  text-decoration: none;
}


.footer {
  font-family: 'Cinzel';
  padding: 220px 0 70px 0;
  text-align: center;
  background-color: #000;
  color: #fff;
  height: 100vh;
}

    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url(../images/bg-test1.png) no-repeat center center;
        background-size: cover;
        /*opacity: 0.4;  adjust this for transparency */
        z-index: -1;
    }

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
  pointer-events: none;
}

.ftLogo {
  text-align: center;
  margin-bottom: 80px;
}

.ftLogo img {
  display: block;
  height: 100px;
  margin: 0 auto;
}

.ftLink {
  text-align: center;
}

.ftLink a {
  font-family: 'Cinzel';
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
}

.mmother {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 34px;
  padding: 20px 0 20px 0;
  border-top: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
}

.mmother svg {
  height: 24px;
  fill: #FFFFFF;
}

.mmother a {
  color: #fff;
  text-decoration: none;
}

.mmother span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.copy {
    text-align: center;
    padding: 34px 0 25px 0;
}

.video-section:last-of-type {
  position: relative;
  z-index: 1;
}



.footer {
  position: relative;
  z-index: 2;
}

/* footer above the last section */
/*FOOTER END*/






/*GALLERY*/
.outer {
  margin: auto;
}

#big .item {
  padding: 0 0px;
  margin: 2px;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
}

#thumbs .item {
  height: 100px;
  line-height: 70px;
  padding: 0px;
  margin: 2px;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

#thumbs .item img {
  height: 100%;
  object-fit: cover;
}

#big .owl-item.active {
  border: 2px solid #b3a93a;
}

.owl-carousel .owl-stage #thumbs .current .item {
  border: 0;
}

#thumbs .current .item {
  border: 2px solid #b3a93a;
}


.owl-theme .owl-nav [class*='owl-'] {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.owl-theme .owl-nav [class*='owl-'].disabled:hover {}

#big.owl-theme {
  position: relative;
}

#big.owl-theme .owl-next,
#big.owl-theme .owl-prev {
  width: 22px;
  line-height: 40px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 44px;
  height: 44px;
  background-size: 100% auto !important;
}

#big.owl-theme .owl-prev {
  left: -56px;
  background: url(../images/left-arrow.png);
}

#big.owl-theme .owl-next {
  right: -56px;
  background: url(../images/right-arrow.png);
}

#thumbs.owl-theme .owl-next,
#thumbs.owl-theme .owl-prev {}



.galleryg {
  background: #000;
  position: relative;
}

.galleryg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/gallery/gallery-bg-2.jpg) no-repeat;
  background-size: cover;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
}


.thumbGallery {
  width: 100%;
  max-width: 1160px;
  margin: 100px auto 70px auto;
}



@media only screen and (min-device-width: 1600px) and (max-device-width: 2000px) and (orientation:landscape) {
  .thumbGallery {
    max-width: 1260px;
  }
}



.main-image {
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}

.main-image img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.thumb-slider img {
  width: 110px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  border: 1px solid #ccc;
  transition: border 0.3s;
}

.thumb-slider img:hover {
  border: 2px solid #ccc;
}

/*GALLERY END*/


/* BANNER */
.vd-slider {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.vd-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 9;
  pointer-events: none;
}

.vd-slider video {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.vd-slider video.active {
  display: block;
  opacity: 1;
  z-index: 2;
}

/* BANNER END */

/*ANIMATED TEXT*/
li {
  position: relative;
}

.blood-intro {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #00000081;*/
  overflow: hidden;
  z-index: 1000;
  text-transform: uppercase;


  position: absolute;
  width: 100%;

}

.blood-intro svg {
  width: 90%;
  max-width: 900px;
}

.name-text {
  font-size: 80px;
  font-weight: bold;
  fill: transparent;
  stroke: #ffc100;
  stroke-width: 2px;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  font-family: "Arial Black", sans-serif;
  text-anchor: middle;
  dominant-baseline: middle;
  filter: drop-shadow(0 0 20px rgba(255, 193, 0, 0.6));
}

.drop {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #ffc100;
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

/*ANIMATED TEXT END*/

/*ANIMATED CONTENT*/
.animate-text {
  will-change: transform, opacity;
}

.overlay-content .line {
  opacity: 0;
  transform: translateY(50px);
}

.overlay-content h1,
.overlay-content h2 {
  position: relative;
  display: inline-block;
  background: url('../images/gold-texture.jpg') no-repeat center center;
  background-size: cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  text-transform: uppercase;

}
.overlay-content p {
    position: relative;
    display: inline-block;
    background: url('../images/Sub-text-gold.jpg') no-repeat center center;
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    text-transform: uppercase;
}

/*ANIMATED CONTENT END*/


/*RESPONSIVE*/
@media only screen and (min-device-width: 800px) and (max-device-width: 1280px) and (orientation:landscape) {
  .video-wrapper {
    height: 100%;
  }

  .video-wrapper video {
    height: 100%;
  }

  .thumbGallery {
    width: 96%;
  }

  #thumbs .item {
    height: 60px;
  }

  .dot-nav {
    right: 4px;
  }

  .ftTop h2 {
    font-size: 31px;
  }

  .ftTop p {
    font-size: 16px;
  }

  .column h3 {
    font-size: 17px;
  }

  .column a {
    font-size: 15px;
    margin-bottom: 11px;
  }

  .copy {
    font-size: 14px;
  }
}

@media only screen and (min-device-width: 1600px) and (max-device-width: 2000px) and (orientation:landscape) {
  .video-wrapper{ height: 100%;}
  .video-wrapper video{ height: 100%;}
}

@media only screen and (max-device-width: 1500px) {
.video-wrapper{ height: 100%;}
.video-wrapper video{ height: 100%;}

.galleryg {
  padding: 0 12px;
  display: flex;
  align-items: center;
}
}

@media only screen and (max-device-width: 768px) {
header{ padding: 0 16px;}  
.hamburger{ display: block;}
.menu{ display: none; }
.menu a{ font-size: 21px; display: block; padding: 12px 0; margin-bottom: 10px;
opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.menu a.mclose{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu.show {
  display: block;
  padding: 110px 25px 25px 25px;
  width: 100%;
  height: 100vh;
  background: #000000d6;
  position: fixed;
  left: 0;
  top: 0;
  transition: right 0.4s ease-in-out;
}
.menu.show a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}


.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1000;
}

.menu.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.menu a {
  color: white;
  font-size: 1.8rem;
  margin: 1rem 0;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu.show a {
  opacity: 1;
  transform: translateY(0);
}

.menu.show a:nth-child(2) {
  transition-delay: 0.1s;
}
.menu.show a:nth-child(3) {
  transition-delay: 0.2s;
}
.menu.show a:nth-child(4) {
  transition-delay: 0.3s;
}

}
@media only screen and (max-device-width: 480px) {
  .video-wrapper {
    height: 100%;
  }

  .video-wrapper video {
    height: 100%;
  }

  .overlay-content {
    max-width: 280px;
  }

  .overlay-content h1,
  .overlay-content h2 {
    font-size: 32px;
  }

  .ocLeft {
    left: 31px;
  }

  .galleryg {
    padding: 0 12px;
    display: flex;
    align-items: center;
  }

  .thumbGallery {}

  #thumbs .item {
    height: 51px;
  }

  .ftTop h2{ font-size: 25px;}
  .ftTop p{ font-size: 17px;}
  .columns{ gap: 14px;}
  .column h3 { font-size: 16px;}
  .column a{ margin-bottom: 15px;}
  .copy{font-size: 14px;}


}