html, body {
    overflow-x: hidden; 
    width: 100%;        
    margin: 0;         
    padding: 0;         
  }
  
.bg-red {
    --bs-bg-opacity: 1;
    background-image: linear-gradient(to right, #8b2010, #e7926b);
}


.bg-blue {
    --bs-bg-opacity: 1;
    background-image: linear-gradient(to right, #0d4568, #6eb1cf);
}

.glasseffect {
    backdrop-filter: blur(30px);
    box-shadow: 0px 0px 30px rgb(227, 228, 237, 0.37);
    border: 2px solid rgba(255, 255, 255, 0.18);
    padding: 20px;
    border-radius: 10px;
    
  }

/*footer button css  start  */
  .buttonuni {
    position: relative;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, rgb(226, 147, 12), #025d4c)  ;
    padding: 14px 25px;
    border-radius: 10px;
    font-size: 1.25em;
    cursor: pointer;
  }
  
  .buttonuni span {
    position: relative;
    z-index: 1;
  }
  
  .buttonuni::before {
    content: "";
    position: absolute;
    inset: 1px;
    background: #272727;
    border-radius: 9px;
    transition: 0.5s;
  }
  
  .buttonuni:hover::before {
    opacity: 0.7;
  }
  
  .buttonuni::after {
    content: "";
    position: absolute;
    inset: 0px;
    background:linear-gradient(45deg, rgb(226, 147, 12), #025d4c)  ;
    border-radius: 9px;
    transition: 0.5s;
    opacity: 0;
    filter: blur(20px);
  }
  
  .buttonuni:hover:after {
    opacity: 1;
  }



.custom-fill {
  fill: url(#gradient1);
}

   /* marvel slider css start */
  .fnc {
  /* you can add color names and their values here and then simply add classes like .m--blend-$colorName to .fnc-slide to apply specific color for mask blend mode */
  }
  .fnc-slider {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  height: 100vh;
  }
  .fnc-slider *, .fnc-slider *:before, .fnc-slider *:after {
  box-sizing: border-box;
  }
  .fnc-slider__slides {
  position: relative;
  height: 100%;
  transition: transform 1s 0.6666666667s;
  }
  .fnc-slider .m--blend-dark .fnc-slide__inner {
  background-color: #8a8a8a;
  }
  .fnc-slider .m--blend-dark .fnc-slide__mask-inner {
  background-color: #575757;
  }
  .fnc-slider .m--navbg-dark {
  background-color: #575757;
  }
  .fnc-slider .m--blend-green .fnc-slide__inner {
  background-color: #6d9b98;
  }
  .fnc-slider .m--blend-green .fnc-slide__mask-inner {
  background-color: #42605e;
  }
  .fnc-slider .m--navbg-green {
  background-color: #42605e;
  }
  .fnc-slider .m--blend-red .fnc-slide__inner {
  background-color: #ea2329;
  }
  .fnc-slider .m--blend-red .fnc-slide__mask-inner {
  background-color: #990e13;
  }
  .fnc-slider .m--navbg-red {
  background-color: #990e13;
  }
  .fnc-slider .m--blend-blue .fnc-slide__inner {
  background-color: #59aecb;
  }
  .fnc-slider .m--blend-blue .fnc-slide__mask-inner {
  background-color: #2d7791;
  }
  .fnc-slider .m--navbg-blue {
  background-color: #2d7791;
  }
  .fnc-slide {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  }
  .fnc-slide.m--before-sliding {
  z-index: 2 !important;
  transform: translate3d(100%, 0, 0);
  }
  .fnc-slide.m--active-slide {
  z-index: 1;
  transition: transform 1s 0.6666666667s ease-in-out;
  transform: translate3d(0, 0, 0);
  }
  .fnc-slide__inner {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center top;
  transform: translate3d(0, 0, 0);
  }
  .m--global-blending-active .fnc-slide__inner, .m--blend-bg-active .fnc-slide__inner {
  background-blend-mode: luminosity;
  }
  .m--before-sliding .fnc-slide__inner {
  transform: translate3d(-100%, 0, 0);
  }
  .m--active-slide .fnc-slide__inner {
  transition: transform 1s 0.6666666667s ease-in-out;
  transform: translate3d(0, 0, 0);
  }
  .fnc-slide__mask {
  overflow: hidden;
  z-index: 1;
  position: absolute;
  right: 60%;
  top: 15%;
  width: 50.25vh;
  height: 67vh;
  margin-right: -90px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0, 6vh 0, 6vh 61vh, 44vh 61vh, 44vh 6vh, 6vh 6vh);
  transform-origin: 50% 0;
  transition-timing-function: ease-in-out;
  }
  .m--before-sliding .fnc-slide__mask {
  transform: rotate(-10deg) translate3d(200px, 0, 0);
  opacity: 0;
  }
  .m--active-slide .fnc-slide__mask {
  transition: transform 0.7s 1.2222222222s, opacity 0.35s 1.2222222222s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  }
  .m--previous-slide .fnc-slide__mask {
  transition: transform 0.7s 0.3333333333s, opacity 0.35s 0.6833333333s;
  transform: rotate(10deg) translate3d(-200px, 0, 0);
  opacity: 0;
  }
  .fnc-slide__mask-inner {
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 100vh;
  margin-left: -50vw;
  margin-top: -50vh;
  background-size: cover;
  background-position: center center;
  background-blend-mode: luminosity;
  transform-origin: 50% 16.5vh;
  transition-timing-function: ease-in-out;
  }
  .m--before-sliding .fnc-slide__mask-inner {
  transform: translateY(0) rotate(10deg) translateX(-200px) translateZ(0);
  }
  .m--active-slide .fnc-slide__mask-inner {
  transition: transform 0.7s 1.2222222222s;
  transform: translateX(0);
  }
  .m--previous-slide .fnc-slide__mask-inner {
  transition: transform 0.7s 0.3333333333s;
  transform: translateY(0) rotate(-10deg) translateX(200px) translateZ(0);
  }
  .fnc-slide__content {
  z-index: 2;
  position: absolute;
  left: 40%;
  top: 40%;
  }
  .fnc-slide__heading {
  margin-bottom: 10px;
  text-transform: uppercase;
  }
  .fnc-slide__heading-line {
  overflow: hidden;
  position: relative;
  padding-right: 20px;
  font-size: 100px;
  color: #fff;
  word-spacing: 10px;
  }
  .fnc-slide__heading-line:nth-child(2) {
  padding-left: 30px;
  }
  .m--before-sliding .fnc-slide__heading-line {
  transform: translateY(100%);
  }
  .m--active-slide .fnc-slide__heading-line {
  transition: transform 1.5s 1s;
  transform: translateY(0);
  }
  .m--previous-slide .fnc-slide__heading-line {
  transition: transform 1.5s;
  transform: translateY(-100%);
  }
  .fnc-slide__heading-line span {
  display: block;
  }
  .m--before-sliding .fnc-slide__heading-line span {
  transform: translateY(-100%);
  }
  .m--active-slide .fnc-slide__heading-line span {
  transition: transform 1.5s 1s;
  transform: translateY(0);
  }
  .m--previous-slide .fnc-slide__heading-line span {
  transition: transform 1.5s;
  transform: translateY(100%);
  }
  .fnc-slide__action-btn {
  position: relative;
  margin-left: 200px;
  padding: 5px 15px;
  font-size: 20px;
  line-height: 1;
  color: transparent;
  border: none;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  text-align: center;
  outline: none;
  }
  .fnc-slide__action-btn span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.3s;
  transform-origin: 50% 0;
  line-height: 30px;
  color: #fff;
  }
  .fnc-slide__action-btn span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-top: none;
  border-bottom: none;
  }
  .fnc-slide__action-btn span:after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 30px;
  background: #1f2833;
  opacity: 0;
  transform-origin: 50% 0;
  transform: translateY(100%) rotateX(-90deg);
  transition: opacity 0.15s 0.15s;
  }
  .fnc-slide__action-btn:hover span {
  transform: rotateX(90deg);
  }
  .fnc-slide__action-btn:hover span:after {
  opacity: 1;
  transition: opacity 0.15s;
  }
  .fnc-nav {
  z-index: 5;
  position: absolute;
  right: 0;
  bottom: 0;
  }
  .fnc-nav__bgs {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  }
  .fnc-nav__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  }
  .fnc-nav__bg.m--nav-bg-before {
  z-index: 2 !important;
  transform: translateX(100%);
  }
  .fnc-nav__bg.m--active-nav-bg {
  z-index: 1;
  transition: transform 1s 0.6666666667s;
  transform: translateX(0);
  }
  .fnc-nav__controls {
  font-size: 0;
  }
  .fnc-nav__control {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100px;
  height: 50px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.5s;
  }
  .fnc-nav__control.m--active-control {
  background: #1f2833;
  }
  .fnc-nav__control-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform-origin: 0 50%;
  transform: scaleX(0);
  transition-timing-function: linear !important;
  }
  .m--with-autosliding .m--active-control .fnc-nav__control-progress {
  transform: scaleX(1);
  }
  .m--prev-control .fnc-nav__control-progress {
  transform: translateX(100%);
  transition: transform 0.5s !important;
  }
  .m--reset-progress .fnc-nav__control-progress {
  transform: scaleX(0);
  transition: transform 0s 0s !important;
  }
  .m--autosliding-blocked .fnc-nav__control-progress {
  transition: all 0s 0s !important;
  transform: scaleX(0) !important;
  }
  /* NOT PART OF COMMON SLIDER STYLES */
  body {
  margin: 0;
  }
  .demo-cont {
  overflow: hidden;
  position: relative;
  height: 100vh;
  perspective: 1500px;
  background: #000;
  }
  .demo-cont__credits {
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  padding: 20px 10px 30px;
  background: #303030;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  color: #fff;
  text-align: center;
  transition: transform 0.7s;
  transform: translate3d(100%, 0, 0) rotateY(-45deg);
  will-change: transform;
  }
  .credits-active .demo-cont__credits {
  transition: transform 0.7s 0.2333333333s;
  transform: translate3d(0, 0, 0);
  }
  .demo-cont__credits *, .demo-cont__credits *:before, .demo-cont__credits *:after {
  box-sizing: border-box;
  }
  .demo-cont__credits-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  }
  .demo-cont__credits-close:before, .demo-cont__credits-close:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background: #fff;
  }
  .demo-cont__credits-close:before {
  transform: rotate(45deg);
  }
  .demo-cont__credits-close:after {
  transform: rotate(-45deg);
  }
  .demo-cont__credits-heading {
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 20px;
  }
  .demo-cont__credits-img {
  display: block;
  width: 60%;
  margin: 0 auto 30px;
  border-radius: 10px;
  }
  .demo-cont__credits-name {
  margin-bottom: 20px;
  font-size: 30px;
  }
  .demo-cont__credits-link {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  color: #fff;
  }
  .demo-cont__credits-blend {
  font-size: 30px;
  margin-bottom: 10px;
  }
  .example-slider {
  z-index: 2;
  transform: translate3d(0, 0, 0);
  transition: transform 0.7s;
  }
  .credits-active .example-slider {
  transform: translate3d(-400px, 0, 0) rotateY(10deg) scale(0.9);
  }
  .example-slider .fnc-slide-1 .fnc-slide__inner, .example-slider .fnc-slide-1 .fnc-slide__mask-inner {
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/blackwidow.jpg');
  }
  .example-slider .fnc-slide-2 .fnc-slide__inner, .example-slider .fnc-slide-2 .fnc-slide__mask-inner {
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/captainamerica.jpg');
  }
  .example-slider .fnc-slide-3 .fnc-slide__inner, .example-slider .fnc-slide-3 .fnc-slide__mask-inner {
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/ironman-alt.jpg');
  }
  .example-slider .fnc-slide-3 .fnc-slide__inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  }
  .example-slider .fnc-slide-4 .fnc-slide__inner, .example-slider .fnc-slide-4 .fnc-slide__mask-inner {
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/thor.jpg');
  }
  .example-slider .fnc-slide-4 .fnc-slide__inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  }
  .example-slider .fnc-slide__heading, .example-slider .fnc-slide__action-btn, .example-slider .fnc-nav__control {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  }

  .colorful-switch {
  position: relative;
  width: 180px;
  height: 77.1428571429px;
  margin: 0 auto;
  border-radius: 32.1428571429px;
  background: #cfcfcf;
  }
  .colorful-switch:before {
  content: "";
  z-index: -1;
  position: absolute;
  left: -5px;
  top: -5px;
  width: 190px;
  height: 87.1428571429px;
  border-radius: 37.1428571429px;
  background: #314239;
  transition: background-color 0.3s;
  }
  .colorful-switch:hover:before {
  background: #4c735f;
  }
  .colorful-switch__checkbox {
  z-index: -10;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  }
  .colorful-switch__label {
  z-index: 1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 32.1428571429px;
  cursor: pointer;
  }
  .colorful-switch__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 540px;
  height: 100%;
  background: linear-gradient(90deg, #14dcd6 0, #10e7bd 180px, #ef9c29 360px, #e76339 100%);
  transition: transform 0.5s;
  transform: translate3d(-360px, 0, 0);
  }
  .colorful-switch__checkbox:checked ~ .colorful-switch__label .colorful-switch__bg {
  transform: translate3d(0, 0, 0);
  }
  .colorful-switch__dot {
  position: absolute;
  left: 131.1428571429px;
  top: 50%;
  width: 5.1428571429px;
  height: 5.1428571429px;
  margin-left: -2.5714285714px;
  margin-top: -2.5714285714px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.5s;
  transform: translate3d(0, 0, 0);
  }
  .colorful-switch__checkbox:checked ~ .colorful-switch__label .colorful-switch__dot {
  transform: translate3d(-80.3571428571px, 0, 0);
  }
  .colorful-switch__on {
  position: absolute;
  left: 104.1428571429px;
  top: 22.5px;
  width: 19.2857142857px;
  height: 36px;
  transition: transform 0.5s;
  transform: translate3d(0, 0, 0);
  }
  .colorful-switch__checkbox:checked ~ .colorful-switch__label .colorful-switch__on {
  transform: translate3d(-80.3571428571px, 0, 0);
  }
  .colorful-switch__on__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.25s 0s cubic-bezier(0.52, -0.96, 0.51, 1.28);
  transform-origin: 100% 50%;
  transform: rotate(45deg) scale(0) translateZ(0);
  }
  .colorful-switch__checkbox:checked ~ .colorful-switch__label .colorful-switch__on__inner {
  transition: transform 0.25s 0.25s cubic-bezier(0.67, -0.16, 0.47, 1.61);
  transform: rotate(45deg) scale(1) translateZ(0);
  }
  .colorful-switch__on__inner:before, .colorful-switch__on__inner:after {
  content: "";
  position: absolute;
  border-radius: 2.5714285714px;
  background: #fff;
  }
  .colorful-switch__on__inner:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6.1428571429px;
  }
  .colorful-switch__on__inner:after {
  right: 0;
  top: 0;
  width: 6.1428571429px;
  height: 100%;
  }
  .colorful-switch__off {
  position: absolute;
  left: 131.1428571429px;
  top: 50%;
  width: 41.1428571429px;
  height: 41.1428571429px;
  margin-left: -20.5714285714px;
  margin-top: -20.5714285714px;
  transition: transform 0.5s;
  transform: translate3d(0, 0, 0);
  }
  .colorful-switch__checkbox:checked ~ .colorful-switch__label .colorful-switch__off {
  transform: translate3d(-80.3571428571px, 0, 0);
  }
  .colorful-switch__off:before, .colorful-switch__off:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 5.1428571429px;
  margin-top: -2.5714285714px;
  border-radius: 2.5714285714px;
  background: #fff;
  transition: transform 0.25s 0.25s;
  }
  .colorful-switch__checkbox:checked ~ .colorful-switch__label .colorful-switch__off:before, .colorful-switch__checkbox:checked ~ .colorful-switch__label .colorful-switch__off:after {
  transition-delay: 0s;
  }
  .colorful-switch__off:before {
  transform: rotate(45deg) scaleX(1) translateZ(0);
  }
  .colorful-switch__checkbox:checked ~ .colorful-switch__label .colorful-switch__off:before {
  transform: rotate(45deg) scaleX(0) translateZ(0);
  }
  .colorful-switch__off:after {
  transition-timing-function: cubic-bezier(0.67, -0.16, 0.47, 1.61);
  transform: rotate(-45deg) scaleX(1) translateZ(0);
  }
  .colorful-switch__checkbox:checked ~ .colorful-switch__label .colorful-switch__off:after {
  transition-timing-function: ease;
  transform: rotate(-45deg) scaleX(0) translateZ(0);
  }

/* marvel slider css end  */




@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-collapse {
      background: none !important; 
    }
  }
 
/* Custom card styling */
.pr10-card {
  width: 210px;
  height: 400px;
  background: black;
  border-radius: 35px;
  border: 2px solid rgb(40, 40, 40);
  padding: 7px;
  position: relative;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.486);
}

.pr10-card-int {
  background-image: linear-gradient(to right bottom, #ff0000, #ff0045, #ff0078, #ea00aa, #b81cd7, #8a3ad6, #5746cf, #004ac2, #003d94, #002e66, #001d3a, #020812);
  background-size: 200% 200%;
  background-position: 0% 0%;
  height: 100%;
  border-radius: 25px;
  transition: all 0.6s ease-out;
  overflow: hidden;
}

.pr10-card:hover .pr10-card-int {
  background-position: 100% 100%;
}

.pr10-top {
  position: absolute;
  top: 0px;
  right: 50%;
  transform: translate(50%, 0%);
  width: 35%;
  height: 18px;
  background-color: black;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.pr10-speaker {
  position: absolute;
  top: 2px;
  right: 50%;
  transform: translate(50%, 0%);
  width: 40%;
  height: 2px;
  border-radius: 2px;
  background-color: rgb(20, 20, 20);
}

.pr10-camera {
  position: absolute;
  top: 6px;
  right: 84%;
  transform: translate(50%, 0%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.048);
}

.pr10-int {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background-color: rgba(0, 0, 255, 0.212);
}

/* Button styles */
.pr10-btn1, .pr10-btn2, .pr10-btn3, .pr10-btn4 {
  position: absolute;
  width: 2px;
}

.pr10-btn1, .pr10-btn2, .pr10-btn3 {
  height: 45px;
  top: 30%;
  right: -4px;
  background-image: linear-gradient(to right, #111111, #222222, #333333, #464646, #595959);
}

.pr10-btn2, .pr10-btn3 {
  transform: scale(-1);
  left: -4px;
}

.pr10-btn2, .pr10-btn3 {
  transform: scale(-1);
  height: 30px;
}

.pr10-btn2 {
  top: 26%;
}

.pr10-btn3 {
  top: 36%;
}

/* Hello text */
.pr10-hello {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  line-height: 35px;
  height: 100%;
  transition: 0.5s ease-in-out;
}

.pr10-hidden {
  display: block;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.pr10-card:hover .pr10-hidden {
  opacity: 1;
}

.pr10-card:hover .pr10-hello {
  transform: translateY(-20px);
}

/* Custom card mobile css start*/
.pr10-card {
    width: 210px;
    height: 400px;
    background: black;
    border-radius: 35px;
    border: 2px solid rgb(40, 40, 40);
    padding: 7px;
    position: relative;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.486);
  }
  
  .pr10-card-int {
    position: relative;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
  }
  
  /* Image styling */
  .pr10-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Change this to 'contain' if you prefer */
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* Black overlay for hover effect */
  .pr10-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Black with transparency */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
  }
  
  /* Show overlay and text only on hover */
  .pr10-card:hover .pr10-overlay {
    opacity: 1;
  }
  
  .pr10-card:hover .pr10-hello {
    transform: translateY(-20px);
  }
  
  /* Hide unnecessary elements on hover */
  .pr10-card:hover .pr10-btn1,
  .pr10-card:hover .pr10-btn2,
  .pr10-card:hover .pr10-btn3,
  .pr10-card:hover .pr10-btn4,
  .pr10-card:hover .pr10-top,
  .pr10-card:hover .pr10-camera,
  .pr10-card:hover .pr10-speaker {
    opacity: 0;
    pointer-events: none; /* Disable interactions with hidden elements */
  }
  
  /* Hello text */
  .pr10-hello {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    line-height: 35px;
    height: 100%;
    transition: 0.5s ease-in-out;
  }
  
  /* Hidden text for hover effect */
  .pr10-hidden {
    display: block;
    opacity: 0;
    transition: all 0.3s ease-in;
  }
  
  .pr10-card:hover .pr10-hidden {
    opacity: 1;
  }
  


/* banner 1 css  start*/
.hero-bg-dark {
  background: linear-gradient(to right, #dc860d, #fdd305);
}

.hero-heading {
  font-weight: 500;
  font-size: 3rem; 
}

@media (min-width: 992px) {
  .hero-heading {
    position: relative;
    right: 200px;
  }
}


.hero-red-overlay {
  background-color: rgba(0, 0, 0, 0.6) ;
  opacity: 0.6;
}


/* banner 1 css end */

  /* Ensuring responsive image display for mobile */
  @media screen and (max-width: 768px) {
    .pr10-card .pr10-card-int {
      background-size: cover; 
    }
    .pr10-card img {
      width: 100%; /* Full width for the image */
      height: auto;
    }
  }
  
  /* Custom card mobile css start*/
/* Ensuring responsive image display for mobile */
@media screen and (max-width: 768px) {
  .pr10-card .pr10-card-int {
    background-size: cover; 
  }
  .pr10-card img {
    width: 100%; 
    height: auto;
  }
}


 /*  pawan custom carousel start*/
/* carousel */
.carousel{
  height: 100vh;

  width: 100vw;
  overflow: hidden;
  position: relative;
}
.carousel .list .item{
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}
.carousel .list .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel .list .item .content{
  position: absolute;
  top: 20%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author{
  font-weight: bold;
  letter-spacing: 10px;
}
.carousel .list .item .title,
.carousel .list .item .topic{
  font-size: 5em;
  font-weight: bold;
  line-height: 1.3em;
}
.carousel .list .item .topic{
  color:  #dc860d;
}
.carousel .list .item .buttons{
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 20px;
}
.carousel .list .item .buttons button{
  border: none;
  background-color: #eee;
  letter-spacing: 3px;
  font-family: Poppins;
  font-weight: 500;
}
.carousel .list .item .buttons button:nth-child(2){
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
/* thumbail */
.thumbnail{
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
}
.thumbnail .item{
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
}
.thumbnail .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.thumbnail .item .content{
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.thumbnail .item .content .title{
  font-weight: 500;
}
.thumbnail .item .content .description{
  font-weight: 300;
}
/* arrows */
.arrows{
  position: absolute;
  top: 84%;
  right: 52%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}
.arrows button{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee4;
  border: none;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  transition: .5s;
}
.arrows button:hover{
  background-color: #fff;
  color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
  z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
  to{
      transform: translateY(0px);
      filter: blur(0px);
      opacity: 1;
  }
}
.carousel .list .item:nth-child(1) .content .title{
  animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
  animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
  animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
  animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
  width: 150px;
  height: 220px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 30px;
  animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
  to{
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 0;
  }
}

.carousel.next .thumbnail .item:nth-last-child(1){
  overflow: hidden;
  animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
  z-index: 100;
}
@keyframes showThumbnail{
  from{
      width: 0;
      opacity: 0;
  }
}
.carousel.next .thumbnail{
  animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
  from{
      transform: translateX(150px);
  }
}

/* running time */

.carousel .time{
  position: absolute;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background: linear-gradient(#dc860d, #fdd305);

  left: 0;
  top: 0;
}

.carousel.next .time,
.carousel.prev .time{
  animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
  from{ width: 100%}
  to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
  animation: outFrame 0.5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}
@keyframes outFrame{
  to{
      width: 150px;
      height: 220px;
      bottom: 50px;
      left: 50%;
      border-radius: 20px;
  }
}

.carousel.prev .thumbnail .item:nth-child(1){
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
  pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
  animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
  to{
      transform: translateY(-150px);
      filter: blur(20px);
      opacity: 0;
  }
}
@media screen and (max-width: 678px) {
  .carousel .list .item .content{
      padding-right: 0;
  }
  .carousel .list .item .content .title{
      font-size: 30px;
  }
}


  /*  pawan custom carousel end*/

  /* home page slider customcss */
@media (min-width: 1024px) {
  /* This will apply to screens larger than or equal to 1024px wide */
  .sliderh {
    height: 600px;
  }
}
@media (max-width: 767px) {
   .sliderh{
  
    height: 700px;
  
  }
  .slup{

    padding-top: 0px !important;
  }
}

    .swiper-button-next, .swiper-button-prev {
        z-index: 3;
    }

    .nav-button-circle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: white;
        box-shadow: 0 4px 6px #f7c32e;
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .nav-button-circle i {
        font-size: 18px;
        color: #333;
    }

    .swiper-button-next:hover .nav-button-circle, 
    .swiper-button-prev:hover .nav-button-circle {
      background-image: linear-gradient(to right, #dc860d, #fdd305);
    }

    .swiper-button-next, .swiper-button-prev {
        width: auto;
        height:auto;
        padding: 0;
    }

    .swiper-button-next, .swiper-button-prev {
        transition: background-color 0.3s ease;
    }

    /* Mobile responsive styling for navigation buttons */
    @media (max-width: 768px) {
        .nav-button-circle {
            width: 40px;
            height: 40px;
        }

        .nav-button-circle i {
            font-size: 14px;
        }
    }
    .wp-block-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.wp-block-separator {
    border: none;
    border-top: 2px solid #ddd;
    margin: 2rem 0;
}
.wp-block-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}