* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell;
  cursor: none;
  background-color: #fff;
}

  a{
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
  }

  p{
    font-size: 1.1rem;
    font-weight: 400;
  }

  .section-padding{
    padding: 4rem 0;
  }

  .container{
    max-width: 1400px;
    margin: 0 auto;
  }

  .section-head{
    font-size: 2.5rem;
  }

  .section-header{
    text-align: center;
    margin-bottom: 2rem;
  }

  .section-head::after{
    content: '';
    width: 8px;
    height: 8px;
    margin: 0 3px;
    border-radius: 50%;
    background: #fbd018;
    display: inline-block;
  }

  img{
      filter: grayscale(20%) brightness(100%);
  }
  
  img:hover {
      filter: grayscale(0%) brightness(100%);
  }

    /* Register button */
.button-style-1 {
  display: inline-block;
  position: relative;
  padding: 7px 20px;
  background-color: #1f1f29;
  color: #edede3;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #1f1f29;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
  margin-right: 20px;
}

.button-style-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: all 0.2s ease;
}

.button-style-1:hover {
  color: #1f1f29;
  color: #fbd018;
}

.button-style-1:hover::before {
  width: 100%;
}

/* whatsapp button */
.button-style-2 {
  display: inline-block;
  position: relative;
  padding: 7px 20px;
  background-color: transparent;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #1f1f29;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
  margin-right: 20px;
}

.button-style-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #1f1f29;
  z-index: -1;
  transition: all 0.2s ease;
}

.button-style-2:hover {
  color: #fff;
}

.button-style-2:hover::before {
  width: 100%;
}

/* Custom cursor styles */
.custom-cursor {
    position: fixed;
    width: var(--cursor-size);
    height: var(--cursor-size);
    border: 1px solid var(--cursor-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s;
  }
  
  .cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: var(--cursor-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
  }
  
  /* Magnify cursor on hover */
  .cursor-grow {
    width: var(--cursor-hover-size);
    height: var(--cursor-hover-size);
    background-color: rgba(255, 71, 87, 0.1);
    mix-blend-mode: difference;
  }
  
  .tail-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--cursor-color);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
  }

  :root {
    --cursor-color: #fbd018;
    --cursor-size: 16px;
    --cursor-hover-size: 30px;
    --tail-particles: 10;
  }

  
.to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
  }
  
  .to-top span {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 10px;
    color: #000;
    margin-right: 5px;
  }
  
  .progress-container {
    width: 3px; /* Increased width for better visibility */
    height: 80px;
    background-color: #000;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
  }
  
  .to-top-bar {
    width: 100%;
    height: 0;
    background-color: #fbd018; /* Black fill */
    position: absolute;
    bottom: 0;
    transition: height 0.3s ease-in-out;
  }

/* For WebKit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 6px; /* Thin scrollbar */
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #1f1f29; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #fbd018; /* Gray thumb */
  border-radius: 10px;
  transition: background 0.3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* Darker on hover */
}

/* Essential styles for basic elements*/
h1{
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
h2{
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1::after{
  content: '';
  width: 8px;
  height: 8px;
  margin: 0 3px;
  border-radius: 50%;
  background: #fbd018;
  display: inline-block;
}

blockquote{
  margin: 0;
  padding: 1.5rem 0;
  font-style: italic;
  color: #555;
}

.wp-block-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  list-style: none;
}

.wp-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  width: 15px;
  height: 1px;
  background-color: #555;
}

.wp-block-table{
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
  margin: 0 0 1rem;
  border-radius: 5px;
}

.wp-block-cover {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  margin: 1rem 0;
}

.wp-block-media-text{
  margin: 1rem 0;
}

.wp-block-media-text img{
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  border-radius: 5px;
}

.-block-separator {
  height: 1px;
  background-color: #e0e0d7;
  margin: 2rem 0;
}


  /* Header and Navigation */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 75px;
}

header.scrolled {
  background-color: #1f1f29;
}


.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo styles */
.logo {
    
    justify-content: center;
    flex: 1;
    text-align: center;
    position: relative;
    display: inline-block;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo::after {
    content: '';
    position: absolute;
    top: 55%;
    left: 50%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgb(31, 31, 41, 0.9);
    z-index: -1;
    border: 1px solid transparent;

    /* Main circle fill + comet beam border */
    background-image:
        linear-gradient(#1f1f29, #1f1f29), /* solid fill */
        conic-gradient(
            from 0deg,
            rgba(212, 175, 55, 0) 0deg,
            rgba(212, 175, 55, 0.25) 10deg,
            rgba(255, 255, 200, 0.5) 30deg,
            rgba(255, 255, 200, 0.8) 50deg,
            rgba(255, 255, 255, 1) 60deg,
            rgba(255, 255, 200, 0.8) 70deg,
            rgba(212, 175, 55, 0.3) 100deg,
            rgba(212, 175, 55, 0.1) 140deg,
            rgba(212, 175, 55, 0) 160deg,
            rgba(212, 175, 55, 0) 360deg
        );
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: rotateComet 3s linear infinite;
}

@keyframes rotateComet {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



/* Left and right menu containers */
.menu-left, .menu-right {
    display: flex;
    align-items: center;
    flex: 1;
}

.menu-right {
    justify-content: flex-end;
}


/* Menu items */
.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin: 0 15px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;    
    text-shadow: #000 1px 1px 2px; 
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #fff;
    bottom: -3px;
    left: 0;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Search icon */
.search-icon {
  color: #fff;
    margin: 0 20px;
    cursor: pointer;
    font-size: 20px;
    transform: scaleX(-1);
    transition: all .3s ease;
    cursor: pointer;
}
.search-icon:hover {
    color: #fbd018;
}

/* Mobile menu container */
.mobile-menu {
    position: fixed;
    top: 61px; /* Height of header */
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin: 15px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 5px 0;
}


/* Fullscreen Layout */
.fullscreen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
}

/* Left Column (Logo) */
.fullscreen .left-column {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullscreen .left-column .menu-logo {
  max-width: 100%;
  margin: 0 auto;
}

.fullscreen .left-column .menu-logo img {
  max-width: 100%;
  width: 200px;
  height: auto;
}

/* Right Column */
.fullscreen .right-column {
  width: 60%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 3rem;
}

/* Divider Between Columns */
.vertical-divider {
  width: 1px;
  height: 70vh;
  background-color: #e0e0d7;
}

/* Hide logo on right column */
.fullscreen .right-column .logo a {
  display: none;
}

/* Menu List */
.fullscreen .right-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fullscreen .right-column ul li {
  margin-bottom: 1rem;
  white-space: nowrap;
}

/* Menu Head */
.menu-head {
  display: flex;
  width: 100%;
}

.menu {
  padding: 1rem 3rem;
}

.menu-head a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: #333;
  bottom: -3px;
  left: 0;
  transition: width 0.3s;
}

.menu-head a:hover::after {
  width: 100%;
}

.menu a, .menu-footer a {
  
  position: relative;
  transition: color 0.3s;
  text-decoration: none;
  color: #1f1f29;
  font-weight: 400;
}

/* Footer Section */
.menu-footer {
  display: flex;
}

.menu-short {
  padding: 1rem 3rem;
}

.menu-short p{
  font-size: 15px;
}

.menu-short h3{
  font-weight: 500;
  margin-bottom: 1rem;
}
.menu-short p, .menu-short h3 {
  color: #1f1f29;
}

/* Footer FAQ */
.fullscreen .right-column .menu-footer-faq ul {
  padding-left: 3rem;
  display: flex;
}

.fullscreen .right-column .menu-footer-faq ul li {
  margin-bottom: 0;
  margin-right: 20px;
}

.fullscreen .right-column .menu-footer-faq ul li a {
  color: #5b5b5b;
  font-size: 15px;
  text-decoration: none;
}

/* Social Media Section */
.social {
  padding: 1rem 3rem;
}

.main-social {
  bottom: 2rem;
  margin: 0 auto;
  max-height: 100px;
  position: absolute;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
}

.main-social .effect a {
  color: #f9f4f4;
  border: none;
}

.main-social .effect.varrius a:hover {
  color: #fff;
  border: none;
}

.effect .buttons {
  display: flex;
}

.effect {
  /*display: flex; */
  }
  .effect a {
  text-decoration: none !important;
  width: 35px;
  height: 35px;
  display: flex;  
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 5px;
  font-size: 17px;
  overflow: hidden;
  position: relative;
  color: #1f1f29;
  border: #e4dfcc 1px solid;
  }
  .effect a i {
  position: relative;
  z-index: 3;
  }
  .effect a:last-child {
  margin-right: 0px;
  }
  .effect a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1f1f29;
  transition: .5s;
  z-index: 2;
  }
  .effect a:hover:before {
  top: 0;
  }
  .effect a i {
  display: inline-block;
  vertical-align: middle;
  }
  a .icon {
  transition: .5s;
  z-index: 3;
  }
  a:hover .icon {
  transform: rotateY(360deg);
  }
  /* varrius effect */
  .effect.varrius a {
  transition: all 0.2s linear 0s;
  }
  .effect.varrius a:after {
  content: "";
  display: block;
  width: 90%;
  height: 90%;
  top: -110%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-color:#1f1f29;
  border-radius: 50%;
  }
  .effect.varrius a:hover {
  color: #fff;
  border: solid 1px #dac4bc;
  }
  .effect.varrius a:hover:after {
  top: 5%;
  transition: all 0.2s linear 0s;
  }

/* Social Media Icons */
.effect .buttons a {
  font-size: 18px;
  padding: 10px;
  transition: 0.3s ease-in-out;
}

.effect .buttons a:hover {
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
  .fullscreen {
      flex-direction: column;
      height: auto;
  }

  .fullscreen .left-column,
  .fullscreen .right-column {
      width: 100%;
      height: auto;
  }

  .vertical-divider {
      display: none;
  }

  .menu {
      padding: 1rem;
  }
}


/* Responsive Design for Different Screen Sizes */

/* For Large Screens (Desktops & Laptops) */
@media screen and (max-width: 1440px) {
  .fullscreen .left-column {
      width: 35%;
  }

  .fullscreen .right-column {
      width: 65%;
      padding: 0 2rem;
  }

  .menu {
      padding: 1rem 2rem;
  }
}

/* For Medium Screens (Tablets & Small Laptops) */
@media screen and (max-width: 1024px) {
  .fullscreen {
      flex-direction: column;
      height: auto;
      justify-content: flex-start;
  }

  .fullscreen .left-column {
      width: 100%;
      height: 30vh;
  }

  .fullscreen .left-column .menu-logo img {
      width: 250px;
  }

  .fullscreen .right-column {
      width: 100%;
      height: auto;
      padding: 1.5rem;
      align-items: center;
      text-align: center;
  }

  .menu-head {
      flex-direction: column;
      align-items: center;
  }

  .menu {
      padding: 1rem 0;
  }

  .menu ul {
      padding: 0;
  }

  .menu ul li {
      margin-bottom: 0.8rem;
  }

  .menu-footer {
      flex-direction: column;
      align-items: center;
  }

  .menu-short {
      text-align: center;
      padding: 1rem;
  }

  .menu-footer-faq ul {
      padding-left: 0;
      justify-content: center;
      flex-wrap: wrap;
  }

  .menu-footer-faq ul li {
      margin-bottom: 5px;
  }

  .social {
      padding: 1rem;
      text-align: center;
  }

  .main-social {
      position: relative;
      left: auto;
      transform: none;
  }
}

/* For Small Screens (Mobile Phones) */
@media screen and (max-width: 768px) {
  .fullscreen .left-column {
      height: 20vh;
  }

  .fullscreen .left-column .menu-logo img {
      display: none;
  }

  .fullscreen .right-column {
      padding: 1rem;
  }
  
  .menu {
      padding: 0.5rem;
  }

  .menu ul li {
      font-size: 14px;
  }

  .menu-footer {
      padding: 1rem 0;
  }

  .menu-short h3 {
      font-size: 16px;
  }

  .menu-short p {
      font-size: 14px;
  }

  .menu-footer-faq ul {
      flex-direction: column;
      text-align: center;
  }

  .social {
      padding: 0.5rem;
  }

  .effect .buttons {
      justify-content: center;
  }

  .effect .buttons a {
      font-size: 16px;
      padding: 5px;
  }
}

/* For Extra Small Screens (Mobile Phones under 480px) */
@media screen and (max-width: 480px) {
  .fullscreen .left-column {
      height: 15vh;
  }

  .fullscreen .left-column .menu-logo img {
      width: 150px;
  }

  .menu ul li {
      font-size: 12px;
      margin-bottom: 5px;
  }

  .menu-footer {
      padding: 0.5rem 0;
  }

  .menu-short h3 {
      font-size: 14px;
  }

  .menu-short p {
      font-size: 12px;
  }

  .social {
      padding: 0.5rem;
  }

  .effect .buttons a {
      font-size: 14px;
      padding: 4px;
  }
}



/* Responsive Media Queries */
@media screen and (max-width: 992px) {
    .nav-menu li {
        margin: 0 10px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .home-menu-toggle {
        position: absolute;
        right: 15px !important;
        top: 30px !important;
      }
    
    .menu-left .nav-menu, .menu-right .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo {
        justify-content: flex-start;
        position: absolute;
        left: 20px;
        top: 10px;
    }
    
    .mobile-menu.active {
        display: block;
    }

    .search-icon {
        position: absolute;
        right: 70px;
        top: 20px;
    }
    
}




/* Home Menu Toggle Button */
.home-menu-toggle {
    cursor: pointer;
    z-index: 1000;
    right: 30px;
    top: 30px;
    width: 40px;
    height: 15px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .home-menu-toggle span {
    height: 2px;
    border-radius: 5px;
    transition: all 0.5s ease;
  }
  
  /* Toggle Animation */
  @keyframes load {
    0% { transform: translateY(7px); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(10px); }
  }
  
  /* Bounce and Fade Animation */
  @keyframes bounceFade {
    0% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(-3px); opacity: 0.7; }
    100% { transform: translateXs(0); opacity: 1; }
  }
  
  .home-toggle-1 {
    width: 25px;
    background: #fbd018;
    animation: bounceFade 1.2s ease-in-out infinite;
  }
  
  .home-toggle-2 {
    width: 15px;
    background: #fbd018 !important;
    animation: bounceFade 1.5s ease-in-out infinite;
  }
  
  .home-toggle-3 {
    width: 35px;
    background: #fbd018;
    animation: bounceFade 1.8s ease-in-out infinite;
  }
  
 
/* Close button effect */
.home-menu-toggle.active .home-toggle-1 {
  transform: translateY(8px) rotate(45deg) !important;
  background: #ff3366;
}

.home-menu-toggle.active .home-toggle-2 {
  opacity: 0;
}

.home-menu-toggle.active .home-toggle-3 {
  transform: translateY(-8px) rotate(-45deg);
  background: #ff3366;
}

.home-menu-toggle.active span {
  animation: none;
}

.home-menu-toggle.active .home-toggle-1,
.home-menu-toggle.active .home-toggle-3 {
  width: 30px;
}

.home-menu-toggle.active .home-toggle-1 {
  transform: translateY(9px) rotate(45deg) !important;
}

.home-menu-toggle.active .home-toggle-3 {
  transform: translateY(-9px) rotate(-45deg);
}

  
  /* Radial Fullscreen Menu */
  .home-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #f2f2f8;
    -webkit-clip-path: circle(0% at 96.5% 4%);
    clip-path: circle(0% at 96.5% 4%);
    transition: all 0.7s cubic-bezier(0.23, 0.93, 0.23, 0.93);
    visibility: hidden;
    opacity: 0;
    z-index: 999;
  }
  
  /* Active State - Expands into Fullscreen */
  .home-menu.active {
    -webkit-clip-path: circle(140% at 96.5% 4%);
    clip-path: circle(140% at 96.5% 4%);
    visibility: visible;
    opacity: 1;
  }
  
  /* Menu Items Animation */
  .home-menu.active ul > li {
    -webkit-animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
            animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
  }
  
  /* Reverse Animation */
  .home-menu.reverse_anim {
    -webkit-clip-path: circle(0% at 96.5% 4%);
    clip-path: circle(0% at 96.5% 4%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.23, 0.93, 0.23, 0.93);
  }
  
  /* Keyframes for Menu Items */
  @keyframes animateIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  /* Centered Menu Items */
  .home-menu-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  
  .home-menu.active .home-menu-container {
    opacity: 1;
  }



  /* Banner style */
.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

#bg-video {
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.video-cover{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px; 
  z-index: 100;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner .owl-carousel {
  height: 100%;
  display: block;
}

.banner .owl-carousel .item {
  position: relative;
  height: 100%;
  width: 100%;
}

.banner .owl-carousel .item img,
.banner .owl-carousel .item video {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  padding: 0 3rem;
  transform: translate(-50%, -50%);
  text-align: center; /* Align the text to the left */
  color: #fff;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 1rem;
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp 2s ease-in-out forwards;
}

.hero-text p {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 3s 0.5s ease-in-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.banner .owl-nav .owl-prev {
  position: absolute;
  left: 10px;
}

.banner .owl-nav .owl-next {
  position: absolute;
  right: 10px;
}

.banner .owl-carousel .owl-nav .owl-prev,
.banner .owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    opacity: 0.5;
    transform: translateY(-50%);
    color: #f2f2f8;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
}



 /* Owl Carousel SErvices Styles */

 .wfl-service{
  background: #000;
  padding-bottom: 4rem;  
}

.service-carousel{
  width: 100%;
  justify-content: center;
  align-items: center; /* added property */
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.service .owl-carousel {
  display: flex;
}

.service-carousel .item{
  position: relative;
  margin: 10px auto; 
  height: 450px;
  width: 330px;
  max-width: 400px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-out;
  display: block;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  border-radius: 5px;
}

.service-item-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-out;
}
.item:hover .service-item-image{
  transform: scale(1.2);
}
 .service-carousel .service-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-carousel .service-item-content {
  text-align: center;
}

.service-carousel .service-item-content h3 {
  font-size: 16px;
  position: absolute; 
  bottom: 20px; 
  left: 0;
  right: 0;
  opacity: 0.8;
  height: 50px;
  color: #fff; 
  transform-origin: bottom;
  transform: translateY(0);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.service-carousel .item:hover h3 {
  transform: translateY(-100px);
  opacity: 1;
}
.service-carousel .service-item-content p{
  position: absolute;
  font-weight: 400;
  bottom: -40px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
  height: 130px; /* Added fixed height */
  text-align: center;
  padding: 0 1rem;
  color: #fff;
}

.service-carousel .item:hover .service-item-content p{
  bottom: 0;
  opacity: 1;
}

.service-carousel .service-item-content a{
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
  height: 50px; /* Added fixed height */
  text-align: center;
  padding: 0 1rem;
  color: #fff;
}

.service-carousel .item:hover .service-item-content a{
  bottom: 0;
  opacity: 1;
}

/* Footer style is starting here */

.footer-parallax {
    background-color: #1f1f29;
    display: flex;
    z-index: 1;
    color: #fff;
    align-items: center;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 2;
    padding: 6rem 0 1rem;
    margin: 0 auto;
  }
  
  .footer-1{
    display: flex;
    width: 40%;
    flex: 1;
    float: left;
    flex-direction: column;
  }
  
  .footer-2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 60%;
    float: right;
  }
  
  .footer-about{
    padding-right: 3rem;
  }
  
  .footer-col {
    flex: 0 0 calc(33.33% - 20px);
    height: 100%;
  }
  
  .footer-row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .footer-col h3 {
    margin-bottom: 20px;
    font-weight: 500;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col ul li i{
   padding-right: 10px;
  }
  
  .footer-col ul li a {
    color: #fff;
    text-decoration: none;
  }
  
 
  
  .footer-logo{
    margin-bottom: 2.5rem;
  }

  .footer-logo img{
    max-width: 300px;
    width: 100%;
    height: auto;
  }
  
  .footer-applink{
    margin-top: 2rem;
  }
  
  .footer a:hover{
    text-decoration: none;
  }
  
  /* Parallax effect */
  .footer-parallax:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: -1;
    }
  
  .footer-parallax:hover:before {
    transform: translateY(0);
  }
  
  .footer-credit {
    border-top: 1px solid #5b5b5b;
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    
  }
  
  .footer-col-credit {
    width: 50%;
    display: flex;
    gap: 0.5rem;
  }

  .footer-col-credit:first-child {
  justify-content: flex-start; /* align left */
  }

  .footer-col-credit:last-child {
    justify-content: flex-end;   /* align right */
  }
  
  .footer-col-credit p, .footer-col-credit a{
    font-weight: 300;
    font-size: 15px;
    color: #c9c9c9;
    text-decoration: none;
  }

  .footer-col-credit li{
    list-style: none;
  }
  
  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
  }
  
  .footer-links li {
    margin: 0 10px;
  }
  
  .footer-links li a {
    text-decoration: none;
    color: #c9c9c9;
    transition: color 0.3s;
    font-weight: 300;
    font-size: 15px;
  }
  
  .footer-social{
    display: flex;
    margin: 2rem 0;
  }
  
  .footer-social .effect a {
    color: #c9c9c9;
    border: solid 1px #5b5b5b;
  }
  .main-social .effect.varrius a:hover {
    color: #fff;
    border: none;
  }
  
  /* Footer style is ends here */


  /* Event Carousel*/
.wfl-events{
    padding: 4rem 0;
  }
  
  .wfl-events h1{
    color: #1f1f29;
  }
  
  .event {
    display: flex;
    width: 100%;
    cursor: pointer;
    margin: 0 auto;
    align-content: space-between;
  }
  .event .item {
    display: flex;
  }
  
  .event-image {
    flex-basis: 50%;
    padding-right: 20px;
    box-sizing: border-box;
    flex: 1;
    width: auto;
  }
  .event-image img{
    width: 100%;
    height: 410px;
    border-radius: 5px;
    align-items: center;
    object-fit: cover;
  }
  
  .event-content {
    flex-basis: 50%;
    padding: 0 0 0 2rem;
    box-sizing: border-box;
    color: #1f1f29;
  }
  
  .event-content h2{
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
  }
  
  .event-content p{
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 400;
  }
  
  
  .readmore {
    display: block;
    font-weight: 400;
    color: #777;
    text-decoration: none;
    margin-top: 25px;
    max-width: 200px;
  }
  
  .readmore:hover {
    color: #000;
    transition: .5s;
  }
  
  .readmore span {
    padding-left: 5px;
    position: relative;
    left: 0;
    transition: 0.5s;
    animation: move 2s linear infinite;
  }
  
  @keyframes move {
    0% { left: 0; }
    50% { left: 5px; }
    100% { left: 0; }
  }
  
  .readmore:hover span {
    animation: none;
    left: 5px;
  }

.event .owl-dots{
    position: absolute;
    right: 20px;
    
}

.owl-nav i, .owl-nav svg {
    font-size: 24px;
    color: #333;
}

.owl-dots {
    margin-top: 5px;
}

.owl-theme .owl-dots .owl-dot.active span{
    background: #fbd018 !important;
}


.about-section {
    padding: 6rem 0;
    background-color: #fafafa;
  }

  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .image-stack {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    gap: 1rem;
  }

  .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
  }

  .image-wrapper:first-child {
    width: 40%;
  }

  .image-wrapper:last-child {
    width: 60%;
  }

  .image-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
  }

  .image-stack img:hover {
    transform: scale(1.05);
  }

  .experience-badge {
    position: absolute;
    bottom: 40px;
    left: 170px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .badge-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
  }

  .badge-text h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1a1a1a;
  }

  .badge-text p {
    margin: 0;
    color: #666;
  }

  .about-content {
    padding-right: 2rem;
  }

  .tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    color: #1a1a1a;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  

  .tabs {
    margin-bottom: 2rem;
  }

  .tab-navigation {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 0.5rem;
  }

  .tab-button {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
  }

  .tab-button::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .tab-button.active {
    color: #1a1a1a;
  }

  .tab-button.active::after {
    transform: scaleX(1);
  }

  .tab-button:hover {
    color: #1a1a1a;
  }

  .tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
  }

  .tab-content.active {
    display: block;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .description {
    color: #666;
    line-height: 1.6;
    margin: 0;
  }
  .description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .progress-section {
    margin-top: 2rem;
  }

  .progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .progress-title {
    color: #1a1a1a;
    font-weight: 500;
  }

  .progress-percentage {
    color: #666;
  }

  .progress-bar {
    width: 100%;
    height: 8px;
    background: #e6e6e6;
    border-radius: 4px;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: #fbd018;
    width: 75%;
    border-radius: 4px;
    transition: width 1s ease;
  }

  .team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .team-member img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }

  .team-info h3 {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.2rem;
  }

  .team-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
  }

  @media (max-width: 768px) {
    

    .about-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .image-stack {
        flex-direction: column;
        height: auto;
      }

      .image-wrapper:first-child,
      .image-wrapper:last-child {
        width: 100%;
        height: 100%;
      }

      .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 1rem;
      }

    .title {
      font-size: 2.5rem;
    }

    .about-content {
      padding-right: 0;
    }

    .navigation {
      flex-wrap: wrap;
      gap: 1rem;
    }
  }

  .blog-section {
    margin: 0 auto;
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.blog-item {
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.blog-image {
    max-height: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 6px;
    margin-top: 1.5rem;    
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 6px;
}

.blog-item:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px 0;
    transition: transform 0.5s ease;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #777;
}

.blog-meta .date {
    margin-right: 10px;
}

.blog-meta .category {
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.blog-meta .category::before {
    content: "•";
    position: absolute;
    left: 5px;
    top: 0;
}

.blog-title {
    font-size: 22px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    transition: transform 0.5s ease;

}

.blog-item:hover .blog-title {
    color: #475569;
    transform: translateY(-5px);
}

.blog-item a{
    text-decoration: none;
}

.blog-excerpt {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-author {
    font-size: 12px;
    font-weight: 400;
    color: #334155;
}

.carousel-navigation {
    position: relative;
}

/* Top Page Section */
.page-top-section {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
}

.page-thumb-small {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.page-thumb-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-top-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  font-size: 2rem;
  color: #334155;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}

.page-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* Masonry Grid Layout */
.blogs-grid {
  column-count: 4;
  column-gap: 1.5rem;
  width: 100%;
}
@media (max-width: 600px) {
  .blogs-grid {
    column-count: 1;
  }
}

/* Pagination Styles */
.pagination {
  margin-top: 3rem;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #334155;
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
  background: #334155;
  color: #fff;
  border-color: #334155;
}

.pagination .current {
  background: #334155;
  color: #fff;
  border-color: #334155;
}

/* No Posts Fallback */
.no-posts {
  text-align: center;
  color: #64748b;
  font-size: 1rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
    .blog-section {
        margin: 0 auto;
        padding: 0;
    }
    

    .section-header h1 {
        font-size: 36px;
    }
    
    .blog-image {
        max-width: 100%;
        max-height: 100%;
    }

    .blog-title {
        font-size: 18px;
    }
    
}

@media (max-width: 576px) {
    .section-header h1 {
        font-size: 30px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    
}




/* Main content area */
.main-content {
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
}

/* Container for centering */
.main-content .container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Article styling */
.main-content .post {
    overflow: hidden;
}

/* Featured image */
.post-thumbnail img {
    width: 100%;
  height: 100vh;
  overflow: hidden;
    display: block;
    object-fit: cover;
}

/* Post Title */
.post-title {
    font-size: 2.2em;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #222;
}

/* Post Meta */
.post-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

/* Breadcrumb */
.breadcrumb {
    display: inline-block;
    font-size: 0.9em;
    color: #555;
    margin-bottom: 15px;
}
.breadcrumb a {
    color: #0073aa;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb i {
    margin: 0 6px;
    color: #999;
}
.breadcrumb .current-post {
    font-weight: 600;
    color: #000;
}

/* Post Content */
.post-content {
    font-size: 1.05em;
    line-height: 1.7;
    color: #333;
    padding: 20px 0;
}

.wp-block-separator{
    margin: 3srem 0;
    border-top: 1px solid #999;
}

.wp-block-media-text {
  margin: 2rem 0;
}
.wp-block-image img {
    width: 100%;
} 


.under-construction-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgba(31,31,41,0.9), rgba(31,31,41,0.9)),
              url('../images/under-construction-bg.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 50px 20px;
  margin-bottom: -30px;
}

.uc-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.uc-content {
  color: #fff;
  max-width: 600px;
  z-index: 2;
}

.uc-icon img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.uc-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #f4d03f;
}

.uc-message {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.uc-progress {
  margin-bottom: 30px;
}

.uc-progress-bar {
  background: rgba(255,255,255,0.2);
  border-radius: 30px;
  overflow: hidden;
  height: 10px;
  width: 80%;
  margin: 0 auto 10px;
}

.uc-progress-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #f4d03f, #ffd700);
  transition: width 1s ease;
}

.uc-progress-text {
  font-size: 0.9rem;
  color: #f4d03f;
}

.uc-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-home,
.btn-contact {
  background: #f4d03f;
  color: #1f1f29;
  padding: 10px 25px;
  border-radius: px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-home:hover,
.btn-contact:hover {
  background: #fff;
  color: #000;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .post-title {
        font-size: 1.8em;
    }
    .menu-short{
      visibility: collapse;
      display: none;
    }
    .banner {
    height: 70vh;
    }
    .hero-text h1{
      font-size: 36px;
    }
    .service-carousel .item{
    width: 95%;
    }
    .event .item {
      flex-direction: column;
    }
    .event-image {
      width: 100%;
      height: auto;
      padding: 2rem 0;
    }
    .event-content {
      padding: 0;
    }
    .container{
      padding: 0 20px;
    }
    .main-content .container{
      max-width: 100%;
      padding: 0;
    }
    .post-thumbnail img{
      height: 60vh;
    }
    .wp-block-image img {
      width: 100%;
    } 
    .wp-block-media-text img{
      padding: 2rem 0;
    }
    .wp-block-media-text .wp-block-media-text__content {
      padding: 0;
    }
}

@media (max-width: 992px) {
  .footer-container {
    padding: 3rem 1rem 1rem;
  }
  .wp-block-image img {
    width: 100%;
  }

  .footer-1 {
    width: 100%;
    margin-bottom: 2rem;
  }

  .footer-2 {
    width: 100%;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-col {
    flex: 0 0 calc(50% - 10px); /* Two columns */
  }
}

/* Small screens (mobiles) */
@media (max-width: 600px) {
  .footer-col {
    flex: 0 0 100%; /* Full width for each column */
  }

  .footer-credit {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }

  .footer-col-credit {
    width: 100%;
  }
  .footer-col-credit:last-child {
    justify-content: flex-start;
  }
}

/* Menu links inside footer columns */
.footer-col ul {
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* Two columns for menu */
  gap: 0.5rem 1.5rem;
}

@media (max-width: 600px) {
  .footer-col ul {
    grid-template-columns: 1fr; /* Stack vertically on small screens */
  }
}

@media (max-width: 768px) {
  .banner .owl-carousel .item {
    height: 80vh; 
    width: auto;
  }

  .banner .owl-carousel .item img,
  .banner .owl-carousel .item video {
    object-fit: cover;   /* still cover the screen */
    object-position: center center;
  }
}

.cookieadmin_re_consent {
    display: none !important;
    height: 0;
    width: 0;
}

