  body { background:white; color: #fff; }

  /* film strip section */

    h1 {
      text-align: center;
      margin: 30px 0;
      font-weight: bold;
    }

    /* Filmstrip container */
    .film-strip-container {
      position: relative;
      overflow: hidden;
      background: #000;
      padding: 40px 0;
    }

    /* Moving filmstrip */
    .film-strip {
      display: flex;
      animation: scroll-strip 20s linear infinite;
    }

    /* Each frame (box) */
    .frame {
      background: #111;
      border: 4px solid gray;
      border-radius: 6px;
      margin: 0 15px;
      padding: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.7);
      flex-shrink: 0;
    }

    .frame img {
      height: 180px;
      display: block;
      border-radius: 4px;
      transition: transform 0.3s ease;
    }
    .frame img:hover {
      transform: scale(1.05);
    }

    /* Auto scrolling effect */
    @keyframes scroll-strip {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .film-strip-inner {
      display: flex;
    }

    /* Film holes (top & bottom) */
    .holes {
      position: absolute;
      left: 0;
      right: 0;
      height: 18px;
      background: repeating-linear-gradient(
        to right,
        transparent 0 25px,
        white 25px 50px
      );
    }
    .holes.top { top: 10px; }
    .holes.bottom { bottom: 10px; }



    /* card section */

    body{background:#ccc;}

.newsCard {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #fff;
  color:#fff;
  overflow: hidden;
  border-radius: 6px;
}

figure img {
display: block;
object-fit: cover !important;
object-position: center center !important; height: 100%;
width: 100%;
}

.overlay{
  background: rgb(40,26,54);
  background: -moz-linear-gradient(0deg, rgba(40,26,54,1) 0%, rgba(89,59,116,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(40,26,54,1) 0%, rgba(89,59,116,0) 100%);
  background: linear-gradient(0deg, rgba(40,26,54,1) 0%, rgba(89,59,116,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#281a36",endColorstr="#593b74",GradientType=1);
  display: block;
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: 0;
  z-index: 3;
}

.newsCaption {
  position: absolute;
  top: auto;
  bottom: 31px;
  left: 0;
  width: 100%;
  height: 35%;
  z-index: 10;
  padding: 15px;
  -webkit-transform: translateY(80%);
  transform: translateY(80%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition:  -webkit-transform 0.4s;
  transition:  -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s,  -webkit-transform 0.4s;
}
.newsCaption i{font-size: 24px;}

.newsCaption-title {
  margin-top: 0px;
}
.newsCaption-content {
  margin: 0;
}

.newsCaption-link {
  color: #fff;
  text-decoration: underline;
  opacity: .8;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
          transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
}
.news-Slide-up:hover .overlay{ background: rgb(64,10,111);
background: -moz-linear-gradient(0deg, rgba(64,10,111,1) 0%, rgba(89,59,116,0) 100%);
background: -webkit-linear-gradient(0deg, rgba(64,10,111,1) 0%, rgba(89,59,116,0) 100%);
background: linear-gradient(0deg, rgba(64,10,111,1) 0%, rgba(89,59,116,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#400a6f",endColorstr="#593b74",GradientType=1);
}

.news-Slide-up:hover .newsCaption {

  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition:  -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}


    .overlay-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
    }
    .overlay-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: 0.4s ease;
    }
    .overlay-card:hover img {
      transform: scale(1.1);
      opacity: 0.6;
    }
    .overlay-text {
      position: absolute;
      bottom: 10px;
      left: 10px;
      color: #fff;
      font-weight: bold;
      font-size: 18px;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    }
  
   .filmstrip {
      display: flex;
      overflow-x: auto;
      gap: 15px;
      scroll-behavior: smooth;
      padding-bottom: 10px;
    }
    .filmstrip::-webkit-scrollbar {
      height: 8px;
    }
    
    .film-item {
      position: relative;
      flex: 0 0 auto;
      width: 200px;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
    }
    .film-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: 0.3s ease;
    }
    .film-item:hover img {
      transform: scale(1.1);
      opacity: 0.6;
    }
    .overlay-text {
      position: absolute;
      bottom: 10px;
      left: 10px;
      right: 10px;
      color: #fff;
      font-weight: bold;
      font-size: 16px;
      opacity: 0;
      transition: opacity 0.3s ease;
      
    }
    .film-item:hover .overlay-text {
      opacity: 1;
    }

 .slider-container {
      position: relative;
    }

    .filmstrip {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      gap: 15px;
      padding: 10px 40px; /* space for arrows */
    }
    .filmstrip::-webkit-scrollbar {
      display: none; /* hide scrollbar */
    }

    .film-item {
      flex: 0 0 auto;
      width: 200px;
      height: 250px;
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      scroll-snap-align: start;
      cursor: pointer;
    }

    .film-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.3s ease;
    }
    .film-item:hover img {
      transform: scale(1.1);
      opacity: 0.6;
    }

    .overlay-text {
      position: absolute;
      bottom: 10px;
      left: 10px;
      right: 10px;
      color: #fff;
      font-weight: bold;
      font-size: 16px;
      opacity: 0;
      transition: opacity 0.3s ease;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    }
    .film-item:hover .overlay-text {
      opacity: 1;
    }

    

    /* navbar section */
 .hero {
      background-image: url("images/main.jpg");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center; 
      height: 90vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .cookie-bar {
      font-size: 14px;
    }
    .navbar-brand img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.navbar-brand .brand-text {
  font-weight: bold;
  color: #007bff;  /* replace this with your logo’s main color */
}
/* Bigger, modern logo */
.logo-img {
  height: 60px;
  width: auto;
  margin-right: 12px;
  transition: transform 0.4s ease;
}

/* Brand text with pink-purple gradient */
.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;

  /* Gradient Text */
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  display: inline-block;
  transition: all 0.4s ease-in-out;
}

/* Hover effect for brand */
.brand-hover:hover .logo-img {
  transform: scale(1.15) rotate(-5deg);
}

.brand-hover:hover .brand-text {
  letter-spacing: 3px;
  transform: scale(1.1);
  text-shadow: 0px 0px 25px rgba(255, 78, 203, 0.8);
}

/* Nav links hover animation */
.nav-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ff4ecb !important;
}

.nav-link:hover::after {
  width: 100%;
}
/* Gradient Search Button */
.btn-gradient {
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #9b4dff, #ff4ecb);
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(155, 77, 255, 0.5);
}

/* Navbar links with pink-purple hover */
.nav-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link {
  font-size: 1rem;         /* slightly smaller text */
  padding: 8px 14px;       /* reduce padding */
  white-space: nowrap;     /* prevent text breaking into two lines */
  line-height: 1.2;        /* compact height */
}

/* Keep navbar aligned properly */
.navbar {
  min-height: 65px;   /* uniform height */
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ff4ecb !important; /* text changes to pink */
}

.nav-link:hover::after {
  width: 100%; /* underline animation */
}

/* Transparent navbar with background image */
.custom-navbar {
  background: url("images/navbar-bg.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  backdrop-filter: blur(5px); /* glass effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  background-color: rgba(0, 0, 0, 0.5); /* fallback: semi-transparent */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-navbar .nav-link,
.custom-navbar .navbar-brand {
  color: #fff !important;
} 
/* navbar section close */

/* sliding video */

.carousel-item video,
    .carousel-item iframe,
    .carousel-item img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
    }

    .overlay-text {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0));
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 50px;
    }

    .overlay-text h1 {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .btn-watch {
      margin-top: 20px;
      padding: 10px 20px;
      font-size: 1.2rem;
      border-radius: 30px;
      background: linear-gradient(to right, #3b82f6, #a855f7);
      border: none;
      color: white;
      width: 190px;
    }

    /* last scrolling */

    /* Filmstrip container */
.slider-container {
  position: relative;
  overflow: hidden;
}



/* Filmstrip row */
.filmstrip {
  display: flex;
  gap: 15px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding-bottom: 10px;
}
.filmstrip::-webkit-scrollbar {
  display: none; /* Hide scrollbar for clean look */
}

/* Each film item */
.film-item {
  position: relative;
  flex: 0 0 auto;
  width: 220px;   /* fixed width for movie card */
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.2); */
  transition: transform 0.3s;
}
.film-item:hover {
  transform: scale(1.05);
}

/* Images */
.film-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* Overlay text/button */
.overlay-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: bottom;
}
.overlay-text button {
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 20px;
}

/* watch button */
.film-item {
  position: relative;
  width: 200px;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.film-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Overlay hidden by default */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show overlay on hover */
.film-item:hover .overlay {
  opacity: 1;
}

.film-item:hover img {
  transform: scale(1.05);
}

.overlay button {
  width: 90%;
  font-weight: bold;
  border-radius: 8px;
  
  
}

/* logo section */

.channel-wrapper {
  position: relative;
}

.channel-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 10px 0;
}

.channel-container::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.channel-card {
  position: relative;
  min-width: 230px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.channel-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.channel-card:hover {
  transform: scale(1.05);
}

.channel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  text-align: center;
  padding: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.8rem;
}

.channel-card:hover .channel-overlay {
  opacity: 1;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.scroll-btn.left { left: -10px; }
.scroll-btn.right { right: -10px; }

.scroll-btn:hover {
  background: rgba(0,0,0,0.8);
}

/* scrolling images  text*/

 .highlight-card {
      position: relative;
      width: 100%;
      height: 100vh;
      background: url("images/main1.webp") no-repeat center center/cover; /* Replace with your image */
      display: flex;
      align-items: center;
      padding: 40px;
    }

    .highlight-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .highlight-content {
      position: relative;
      max-width: 600px;
      z-index: 2;
    }

    .highlight-title {
      font-weight: 700;
      font-size: 1.8rem;
    }

    .highlight-sub {
      font-size: 1.2rem;
      margin-bottom: 15px;
    }

    .btn-watch {
      background: linear-gradient(to right, #3a7bd5, #ff0066);
      border: none;
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      color: #fff;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: 0.3s;
    }

    .btn-watch:hover {
      opacity: 0.9;
      transform: scale(1.05);
    }

    .btn-watch i {
      font-size: 1.2rem;
    }

    /* Footer */
    .footer-jio {
      background: #040407;
      color: #c4c5ce;
    }
    .footer-jio a {
      color: #c4c5ce;
      text-decoration: none;
    }
    .footer-jio a:hover {
      color: #ff4ecb;
      text-decoration: underline;
    }
    .footer-social a {
      display: inline-block;
      margin-right: 10px;
      font-size: 1.2rem;
      color: #c4c5ce;
    }
    .footer-social a:hover {
      color: #ff4ecb;
    }
    
   
  /* Gradient Heading */
.gradient-text {
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent; 
  background-clip: text;          
  color: transparent;             
}

  /* Highlight keywords */
.highlight {
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  -webkit-background-clip: text;   
  -webkit-text-fill-color: transparent; 
  background-clip: text;           
  color: transparent;              
  font-weight: 700;
}

  
  /* Image Hover Animation */
  .img-hover {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  .img-hover:hover {
    transform: scale(1.08) rotate(-1deg);
    box-shadow: 0 15px 30px rgba(255, 78, 203, 0.6);
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .about-text {
      text-align: center;
      text-indent: 0; /* Remove indent on small screens */
    }
    .img-wrapper {
      margin-bottom: 30px;
    }
  }/* Slide-in Right Animation */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-right {
  opacity: 0;
  animation: slideInRight 0.9s ease forwards;
}
.slide-in-right.delay-1 { animation-delay: 0.3s; }
.slide-in-right.delay-2 { animation-delay: 0.7s; }
.slide-in-right.delay-3 { animation-delay: 1.1s; }
.slide-in-right.delay-4 { animation-delay: 1.5s; }

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  -webkit-background-clip: text;   
  -webkit-text-fill-color: transparent; 
  background-clip: text;           
  color: transparent;             
}

/* Trust Box */
.trust-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.4);
}

/* Text Style */
.trust-section p {
  color: #dbe3e7;
  font-size: 1.05rem;
  margin: 0;
}


/* main footer */

    .hero {
      background-image: url("images/main.jpg");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center; 
      height: 90vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .cookie-bar {
      font-size: 14px;
    }
    .navbar-brand img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.navbar-brand .brand-text {
  font-weight: bold;
  color: #007bff;  /* replace this with your logo’s main color */
}
/* Bigger, modern logo */
.logo-img {
  height: 60px;
  width: auto;
  margin-right: 12px;
  transition: transform 0.4s ease;
}

/* Brand text with pink-purple gradient */
.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;

  /* Gradient Text */
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  display: inline-block;
  transition: all 0.4s ease-in-out;
}

/* Hover effect for brand */
.brand-hover:hover .logo-img {
  transform: scale(1.15) rotate(-5deg);
}

.brand-hover:hover .brand-text {
  letter-spacing: 3px;
  transform: scale(1.1);
  text-shadow: 0px 0px 25px rgba(255, 78, 203, 0.8);
}

/* Nav links hover animation */
.nav-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ff4ecb !important;
}

.nav-link:hover::after {
  width: 100%;
}
/* Gradient Search Button */
.btn-gradient {
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #9b4dff, #ff4ecb);
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(155, 77, 255, 0.5);
}

/* Navbar links with pink-purple hover */
.nav-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link {
  font-size: 1rem;         /* slightly smaller text */
  padding: 8px 14px;       /* reduce padding */
  white-space: nowrap;     /* prevent text breaking into two lines */
  line-height: 1.2;        /* compact height */
}

/* Keep navbar aligned properly */
.navbar {
  min-height: 65px;   /* uniform height */
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ff4ecb !important; /* text changes to pink */
}

.nav-link:hover::after {
  width: 100%; /* underline animation */
}

/* Transparent navbar with background image */
.custom-navbar {
  background: url("images/navbar-bg.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  backdrop-filter: blur(5px); /* glass effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  background-color: rgba(163, 74, 74, 0.938); /* fallback: semi-transparent */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-navbar .nav-link,
.custom-navbar .navbar-brand {
  color: #fff !important;
}

/* Transparent navbar */
.custom-navbar {
  background: transparent !important;   /* fully see-through */
  border: none;                         /* remove border line */
  box-shadow: none;                     /* remove shadow if any */
  position: absolute;                   /* float on top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;                          /* ensure it's above video */
}
  /* Sticky navbar */
.custom-navbar {
    position: sticky;   /* Makes it stick */
    top: 0;             /* Stick to the top */
    z-index: 1030;      /* Above other content */
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* CSS Document */
/* footer css */
.page-wrapper {
  position: static; 
  width: 100%;
}

footer p, footer strong, footer b, footer {
    color: #b0b0b0;
}

.footer-top {
    background: #303030;
    background-size: cover;
    background-position: center;
    padding: 0 0 20px;
    font-family: rubik;
  padding-top:30px;
  
}

.footer-top, .footer-bottom {
    background-color: #1c1f2f;
}

.footer-bottom {
    padding: 15px 0;
    border-top: 1px solid #313646;
    background-color: #6016ba !important;
    color: #b0b0b0;
    font-family: rubik;
}


.footer-site-info {
    font-size: 92.86%;
}
#footer-navigation, #footer-navigation li a:hover, .custom-footer, .custom-footer li a:hover {
    color: white;
}

#footer-navigation, #footer-navigation li a, .custom-footer, .custom-footer li a {
    color: #99a9b5;
    padding-top: 15px;
}

.footer-bottom ul {
    margin: 0;
}
.inline-inside {
    font-size: 0;
    line-height: 0;
}
.clearfix:after, .clearfix:before {
    content: "";
    display: table;
}
#footer-menu li {
    display: inline-block;
    padding: 0 21px;
    position: relative;
    line-height: 1;
}

#footer-navigation, #footer-navigation li a, .custom-footer, .custom-footer li a {
    color: #99a9b5;
    padding-top: 15px;
}

#footer-navigation, #footer-navigation li a, .custom-footer, .custom-footer li a {
    color: #99a9b5;
    padding-top: 15px;
}
#footer-menu li+li:before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: -1px;
    top: 0;
    font-size: 0;
    border-left: 1px solid #232234;
    border-right: 1px solid #333146;
}


navigation li a, .custom-footer, .custom-footer li a {
    color: #99a9b5;
    padding-top: 15px;
}

#footer-socials {
    text-align: right;
}

#footer-socials .socials {
    text-align: right;
    margin: 0 -7px;
    display: inline-block;
    vertical-align: middle;
}

a.socials-item {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 5px;
    line-height: 16px;
    padding: 10px;
    border-radius: 50%;
    background-color: #141421;
    border: 1px solid #2e2e4c;
    box-shadow: 3px 9px 16px rgb(0,0,0,0.4), -3px -3px 10px rgba(255,255,255, 0.06), inset 14px 14px 26px rgb(0,0,0,0.3), inset -3px -3px 15px rgba(255,255,255, 0.05);
}

.socials-item i {
    display: inline-block;
    font-weight: normal;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-size: 16px;
    text-align: center;
    vertical-align: top;
    font-feature-settings: normal;
    font-kerning: auto;
    font-language-override: normal;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-synthesis: weight style;
    font-variant: normal;
    font-weight: normal;
    text-rendering: auto;
}

.facebook {
    color: #4e64b5;
}

.twitter {
    color: #00aced;
}
.instagram {
    color: #9a8f62;
}
.youtube {
    color: #c82929;
}

.telegram {
    color: #2ca5e0;
}


a.socials-item:hover {
    box-shadow: 0 0px 20px rgba(84, 1, 74, 0.7);
    border-color: rgba(255, 6, 224, 0.61);
    background: linear-gradient(to right, rgba(255, 9, 9, 0.12941176470588237), #c000ffb5, rgba(255, 0, 94, 0.14));
}

.footer-bottom a:hover {
    color: white;
}


footer p, footer li {
    font-size: 15px;
    line-height: 22px;
}


.widget {
    margin-bottom: 50px;
}

.footer-title {
    margin-bottom: 40px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    padding-bottom: 15px;
    font-size: 16px;
    position: relative;
}

.footer-title:after {
    width: 50px;
    background: #fff;
    opacity: 0.2;
    height: 1px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}

.gem-contacts-item {
    padding-top: 10px;
    font-size: 15px;
}

.gem-contacts-item i {
    padding-right: 10px;
}

footer .widget ul {
    list-style: none;
    margin-top: 5px;
}

.posts li {
    border-bottom: 1px solid #4f3950;
    padding-bottom: 12px;
    padding-top: 6px;
}

footer p, footer li {
    font-size: 15px;
    line-height: 22px;
}

.gem-pp-posts-date {
    color: #00bcd4;
    font-size: 89.5%;
}

footer p {
    line-height: 24px;
    margin-bottom: 10px;font-size: 15px;
}

.wpcf7-form-control-wrap .wpcf7-form-control {
    padding: 7px!important;
    width: 100%;
}

.wpcf7-form-control-wrap input {
    background: #1c1f2f;
    overflow: hidden;
    border: 1px solid #2e344d;
    background-color: #1c1f2f;
    box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03);
    border-radius: 5px;
    transition: all 0.3s ease-in-out 0s;
}

.wpcf7-form-control-wrap input:hover {
    background-color: transparent;
    box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.wpcf7 .wpcf7-form .contact-form-footer textarea {
    height: 160px;
    width: 100%;
}

.wpcf7-form-control-wrap textarea:hover {
    background-color: transparent;
    box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.wpcf7-form-control-wrap textarea {
    background: #1c1f2f;
    overflow: hidden;
    border: 1px solid #2e344d;
    background-color: #1c1f2f;
    box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03);
    border-radius: 5px;
    transition: all 0.3s ease-in-out 0s;
}

textarea {
    overflow: auto;
    resize: vertical;
}

.wpcf7 .wpcf7-form .contact-form-footer .wpcf7-submit {
    width: 100%;
    padding: 11px;
    margin: 0;
    line-height: 0;
}
.wpcf7-form .contact-form-footer .wpcf7-submit {
    background-color: #394050;
    color: #99a9b5;
    border: none;
    cursor: pointer;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.5s;
    letter-spacing: 2px;
    color: rgba(255,255,255,.5);
    box-shadow: none;
    text-transform: uppercase;
    outline: none !important;
    background-color: #1c1f2f;
    border-radius: 5px;
    min-width: 140px;
    /* box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04); */
    box-shadow: 3px 9px 16px rgb(0,0,0,0.4), -3px -3px 10px rgba(255,255,255, 0.06), inset 14px 14px 26px rgb(0,0,0,0.3), inset -3px -3px 15px rgba(255,255,255, 0.05);
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #2e344d;
    transition: all 0.3s ease-in-out 0s;
}

.wpcf7-form input[type=submit] {
    height: 40px;
    line-height: 21px;
    padding: 10px 40px;
    font-size: 14px;
}

.posts li a {
    color: #99a9b5;
}

.wpcf7-form .contact-form-footer .wpcf7-submit:hover {
    box-shadow: 0 0px 20px rgba(84, 1, 74, 0.7);
    border-color: rgba(255, 6, 224, 0.61);
    background: linear-gradient(to right, rgba(255, 9, 9, 0.12941176470588237), #c000ffb5, rgba(255, 0, 94, 0.14));
    color: white;
}

img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
.widget_gallery a {
    display: inline-block;
}
footer .widget ul {
    list-style: none;
    margin-top: 5px;
}
.widget_gallery ul {
    padding-left: 0;
    display: table;
}

.widget_gallery li {
    display: inline-block;
    width: 33.33%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    padding: 2px;

}

.widget_gallery.gallery-grid-4 li {
    width: 30%;
}


#waterdrop {
    height: 30px;
}

#waterdrop canvas {
    bottom: -70px !important;
}

.footer-site-info
{
  padding-top: 10px;
}



.brand-text1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 30px; /* updated text size */
  text-transform: uppercase;
  letter-spacing: 1px;

  /* Gradient Text */
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  display: inline-block;
  transition: all 0.4s ease-in-out;
}

/* navbar section */
/* Navbar Custom Styling */
.custom-navbar {
  background: #111; /* dark background */
  font-family: 'Montserrat', sans-serif;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.brand-text {
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.navbar-nav .nav-link {
  color: #ddd;
  font-weight: 600;
  margin-right: 15px;
  display: flex;
  align-items: center;
  gap: 6px; /* spacing between icon and text */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link i {
  font-size: 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #03A9F5; /* highlight color */
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  border: none;
  color: white;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-gradient:hover {
  opacity: 0.85;
  color: #fff;
}

/* Navbar icon hover effect */
.navbar .nav-link i {
  transition: color 0.3s ease;
}

.navbar .nav-link:hover i {
  color: #ff4ecb;  /* change to your brand color */
}

.fas {
  margin-right: 10px;  /* space between icons */
  font-size: 15px;     /* adjust size */
  color:White;         /* default color */
  transition: color 0.3s, transform 0.2s; /* smooth hover effect */
}

.fas:hover {
  color: #ff4ecb;   /* change color on hover */
  transform: scale(1.2); /* zoom effect */
}


/* Popup background */
#successPopup {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent background */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Popup box */
#successPopup .popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
}

#successPopup h2 {
  color: #28a745;
  margin-bottom: 10px;
}

.back-home-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff00b3;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.back-home-btn:hover {
  background: #0056b3;
}

/* Smooth animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
