@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.typewriter-container {
  text-align: left;
}

.typewriter-word {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  overflow: hidden;
  min-width: 200px;
  animation: blink 0.7s infinite;
  letter-spacing: 1px;
}

@keyframes blink {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: black;
  }
}

.top-digital-heading {
  font-size: 1.5rem;
  font-family: "Poppins";
  color: #666;
  /* margin-top: 10px; */
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* Play Button */
.youtube-play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #4e2fda;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Modal */
.popup-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  position: relative;
  background: #000;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  width: 90%;
  max-width: 640px;
}

.popup-content iframe {
  width: 100%;
  height: 360px;
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 10000;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 30px;
  background-color: white;
  color: black;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  height: 5vmax;
  /* background-color: red; */
}

.logo img {
  height: 90px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  color: black;
}

.nav-links li {
  margin: 0 15px;
  position: relative;
  color: black;
}

.nav-links a {
  text-decoration: none;
  color: black;
  padding: 6px 10px; /* Reduced padding for nav links */
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  color: black;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li {
  padding: 10px 20px;
  white-space: nowrap;
}

.dropdown-menu li:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Social Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  color: #fff;
  background-color: #4e2fda;
  margin: 0 6px;
  border-radius: 50%;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: rgb(235, 235, 235);
  color: #4e2fda;
}

/* Dots Button */
.dots-btn {
  height: 36px;
  width: 36px;
  background-color: #4e2fda;
  color: #fff;
  border: none;
  border-radius: 50%;
  margin-left: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.dots-btn:hover {
  background-color: rgb(235, 235, 235);
  color: #4e2fda;
}

.contact-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff, #f1f3f5);
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  padding: 40px 24px;
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 9999;

  transform: translateX(100%); /* Initially hidden off-screen */
}

.contact-sidebar.active {
  transform: translateX(0); /* Slide in and STICK flush right */
}

.contact-box {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  font-size: 17px;
  color: #343a40;
  background-color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateX(-6px);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.1);
}

.contact-box i {
  margin-right: 14px;
  font-size: 22px;
  color: #0d6efd;
  min-width: 24px;
  text-align: center;
}

.contact-box p {
  margin: 0;
  font-weight: 500;
  word-break: break-word;
}

/* Optional: Responsive - Hide sidebar on smaller screens */
@media (max-width: 768px) {
  .contact-sidebar {
    display: none;
  }
}

/* Desktop Only */
@media (min-width: 992px) {
  .contact-sidebar {
    display: block;
  }
}

/* MOBILE NAVBAR CSS */

.mobile-navbar {
  display: none;
}

/* Show on mobile */
@media (max-width: 768px) {
  .navbar {
    display: none;
  }

  .mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ebe5ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .mobile-logo img {
    height: 40px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1100;
  }

  .bar {
    width: 150;
    height: 3px;
    background: #4e2fda;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Cross effect */
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .mobile-nav-links {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #4e2fda;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    transition: left 0.3s ease;
    z-index: 1050;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav-links.active {
    left: 0;
  }
  .mobile-nav-links li {
    list-style: none;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
    overflow: hidden;
  }

  .mobile-nav-links a {
    display: block;
    padding: 14px 8px;
    color: #f6daeb;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 8px;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
    /* display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px; */
  }

  .mobile-nav-links a:hover {
    background: #e7d9fd;
    color: #4e2fda;
  }

  .mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    margin-top: 10px;
  }

  .mobile-dropdown-menu.active {
    display: flex;
  }

  .mobile-dropdown-menu li {
    padding: 10px 0;
  }

  .mobile-dropdown-menu a {
    font-size: 16px;
    color: #ebe5ff;
  }

  .mobile-dropdown-menu a:hover {
    color: #f6daeb;
  }
}

.image-container {
  background: rgb(240, 200, 255);
  background: linear-gradient(
    135deg,
    rgba(240, 200, 255, 0.9) 0%,
    rgba(180, 170, 255, 0.6) 40%,
    rgba(120, 130, 255, 0.5) 70%,
    rgba(90, 95, 238, 0.4) 100%
  );
}

.influencer-h2 {
  color: white !important;
  font-family: "Poppins", serif !important;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 6px;
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  justify-items: center;
  align-items: center;
}

/* Child video cards */
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  height: 400px;
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Video inside the card */
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

.video-card:hover video {
  opacity: 0.9;
}

/* Overlay for title or information */
.video-card .video-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  color: #fff;
  padding: 10px;
  box-sizing: border-box;
  font-size: 13px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .image-container {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .influencer-h2 {
    color: white !important;
    font-family: "Poppins", serif !important;
    font-size: 20px !important;
  }
  .video-card {
    height: 250px;
    width: 180px;
  }
}

@media (max-width: 480px) {
  .video-grid {
    gap: 8px;
  }
}

/* SLIDER MAIN PAGE CONTAINER */
.slider-container {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Style for each image card */
.image-card {
  min-width: 100%;
  transition: transform 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 280px; /* Default height for desktop */
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Name styling */
.image-name {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 4px;
}

/* Tablet and below */
@media screen and (max-width: 1024px) {
  .image-card {
    height: 200px;
  }
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .slider-container {
    height: auto;
  }

  .image-card {
    min-width: 100%;
    height: 250px;
  }

  .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Extra small devices */
@media screen and (max-width: 480px) {
  .image-card {
    height: 160px;
  }
}

/* Animating the slider */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(-400%);
  }
}

.slider-container {
  animation: slide 20s linear infinite;
}

/* SERVIECES CONTAINER  */

.container_unique1234 {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  gap: 30px;
  width: 100%;
  padding: 5vw;
  /* background-color: red; */
  justify-content: center;
  align-items: center;
}

.box_uniqueA1,
.box_uniqueA2,
.box_uniqueA3,
.box_uniqueA4 {
  height: 60vh;
  width: fit-content !important;
  /* background-color: #4caf50; */
  color: white;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  height: auto;
  /* background-color: red; */
}

.tusharkappor-desktop {
  height: 50vh;
}

.banner-video {
  height: 50vh;
}

.tusharkappor-mobile {
  display: none;
}

.banner-container-girl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  /* background-color: red; */
}

/* Mobile view - stacking boxes */
@media (max-width: 768px) {
  .box_uniqueA1,
  .box_uniqueA2,
  .box_uniqueA3,
  .box_uniqueA4 {
    flex: 1 1 100%;
    height: 40vh;
  }

  .banner-video {
    width: 100%;
  }

  .tusharkappor-desktop {
    display: none;
    height: 100px;
    width: 100%;
  }
  .banner-container {
    height: 400px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .tusharkappor-mobile {
    display: block;
    height: 600px !important;
    max-width: 100%;
    border-radius: 12px; /* Smooth rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Elegant shadow */
    object-fit: cover; /* Maintain aspect ratio */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover */
  }

  .tusharkappor-mobile:hover {
    transform: scale(1.03); /* Slight zoom on hover */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
  }

  .banner-container-girl {
    height: 250px !important;
    margin-top: -100px;
    margin-bottom: -100px;
  }
}

/* REVIEW CONTAINER */
h2,
h4 {
  letter-spacing: 0.2rem;
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-family: "Roboto", sans-serif;
}

h2 {
  font-size: 2rem;
}

h4 {
  font-size: 0.875rem;
}

p {
  margin-bottom: 1.25rem;
  color: gray;
}

main {
  min-height: 90vh;
  display: grid;
  place-items: center;
}
.title-section {
  text-align: center;
  margin-top: 0.1rem;
  margin-bottom: 2.5rem;
}

.underline {
  height: 0.25rem;
  width: 8rem;
  background: #ee888a;
  margin-left: auto;
  margin-right: auto;
}

/* Review Container */
.review-container {
}

.review-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.custom-review {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s linear;
  text-align: center;
  width: 33.33%;
  max-width: 300px;
  flex: 0 0 33.33%;
  padding: 10px;
  text-align: center;
  display: block;
  margin: 0 auto;
}

/* Only show active reviews */
.custom-review.active {
  display: block;
}

/* Review Image Container */
.review-img-container {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 1rem;
}

#person-img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
}

.review-img-container::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #ccfc5b;
  position: absolute;
  top: -0.25rem;
  right: -0.5rem;
  border-radius: 50%;
}

#review-author {
  margin-bottom: 0.25rem;
}

#review-job {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: gray;
  font-size: 0.75rem;
}

#review-info {
  margin-bottom: 0.5rem;
}

/* Button Container for Navigation */
.button-container {
  text-align: center;
  margin-top: 1rem;
}

/* Previous and Next Buttons */
.prev-review-btn,
.next-review-btn {
  background: transparent;
  border: none;
  color: #a7e419;
  font-size: 1.25rem;
  cursor: pointer;
  margin: 0 1rem;
}

.prev-review-btn:hover,
.next-review-btn:hover {
  color: black;
}

/* Random Review Button */
.random-review-btn {
  background: #ee888a;
  color: black;
  padding: 0.25rem 0.5rem;
  text-transform: capitalize;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
}

.random-review-btn:hover {
  background: white;
  color: black;
}

@media (max-width: 768px) {
  .review-container {
    /* background-color: red; */
    min-height: 38vh;
  }

  .custom-review {
    min-height: 28vh;
    max-height: 28vh;
  }

  /* review-img-container {
    min-height: 30vh;
    max-height: 30vh;
  } */
  .banner-container {
    /* background-color: #e64c2c; */
    height: 100px;
    margin-top: 5px;
  }
  .review-slider {
    flex-direction: column;
    gap: 20px;
  }

  .custom-review {
    width: 90%;
    max-width: 100%;
    flex: 1 1 auto;
  }

  .review-img-container {
    width: 100px;
    height: 100px;
  }

  #review-job {
    font-size: 0.65rem;
  }

  .button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .prev-review-btn,
  .next-review-btn {
    font-size: 1rem;
    margin: 0 5px;
  }

  .random-review-btn {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .review-slider {
    gap: 10px;
  }

  .custom-review {
    padding: 0.75rem;
  }

  .review-img-container {
    width: 80px;
    height: 80px;
  }

  #review-job {
    font-size: 0.6rem;
  }

  .prev-review-btn,
  .next-review-btn {
    font-size: 0.9rem;
  }

  .random-review-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* SERVICES CONTAINER */

.serivces-container {
  background: url("../videos/Untitled\ design.gif");
}

/* footer */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons li {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.social-icons li a {
  color: #7857ff;
  font-size: 22px;
  text-decoration: none;
}

.social-icons li:hover {
}

.social-icons li:hover a {
  color: white;
}
