body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #e6e7f2, #f3f3f3);
  margin: 0;
  padding: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030; /* keeps it above other elements */
  background-color: #fff; /* keeps background solid */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Navbar link styling */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding: 8px 15px;
  position: relative;
  text-transform: uppercase; 
}

/* Hover & Active Font Color */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #440e78 !important; 
}

/* Underline Animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #440e78; 
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}


/* Header & Footer */
.logo {
  height: 50px;
}

.email-link, .phone-link, .footer-link {
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover, .phone-link:hover, .footer-link:hover {
  color: #440e78;
}

.footer-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #440e78;
  text-decoration: underline;
}

.footer h6 {
  font-weight: bold;
  text-transform: uppercase;
}

.footer-line {
  border-top: 1px solid #ddd;
  margin: 1rem 0;
}


/* Carousel */
.main-carousel-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #440e78;
  text-align: center;
  margin-bottom: 10px;
  /* display: flex; */
  /* justify-content: center; */
}

.main-carousel-subtitle {
  font-size: 1.1rem;
  color: #060505;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
}

.poster-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.bg-bubble {
  position: absolute;
  top: -10px;
  left: 0px;
  width: 200px;
  opacity: 0.7;
  z-index: 1;
  animation: floatBubble 6s ease-in-out infinite;
}

@keyframes floatBubble {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.carousel-container {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.3);
  background: #ffffff;
  padding: 15px;
}

.poster-img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  border-radius: 15px;
  background: #fff;
}

.carousel-fade .carousel-item {
  transition: opacity 1s ease-in-out;
}

.carousel-indicators [data-bs-target] {
  background-color: #440e78;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}



/* video */
.video-section {
  background: #f8f9fa;
}

.video-container {
  max-width: 800px;
}

.main-video-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #440e78; 
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: 50px;
}

.main-video-subtitle {
  font-size: 1.1rem;
  color: #060505; 
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}



/* Reel */
.reel-container {
  max-width: 320px;  /* Instagram reel width */
  margin: auto;
}
.reel-frame {
  width: 100%;
  height: 560px; /* Reel height */
  border: none;
  border-radius: 10px;
}
.instagram-media {
  max-height: 550px !important; /* adjust depending on your embed size */
  overflow: hidden !important;
}


/* Website */
.inner-project-item {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}
.inner-project-item img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.inner-project-item:hover img {
  transform: scale(1.05);
}
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  opacity: 1;
}
/* .inner-project-item:hover .project-overlay {
  opacity: 1;
} */