/* body {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-style: normal;
} */

.work-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  /* Dark transparent */
  backdrop-filter: blur(8px);
  /* Glass effect */
  -webkit-backdrop-filter: blur(8px);
  /* Safari */
  padding: 10px 0;
  min-width: 220px;
  z-index: 999;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.submenu-item {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  /* Light on dark */
  transition: background 0.2s, color 0.2s;
}

.submenu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  /* Subtle hover */
  color: #ffffff;
}

.navigation-link-wrapper:hover .work-submenu {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.navigation-link-wrapper {
  position: relative;
  display: inline-block;
}

/* Reuse this for any submenu box */
.bb-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 0;
  min-width: 220px;
  z-index: 999;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.navigation-link-wrapper:hover .bb-submenu {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Reuse shared item style */
.submenu-item {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s, color 0.2s;
}

.submenu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* service menu box */

.service-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 0;
  min-width: 220px;
  z-index: 999;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.navigation-link-wrapper:hover .service-submenu {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.work-submenu,
.bb-submenu,
.service-submenu {
  /* max-height: 180px; */
  /* Adjust as needed */
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  /* Add space for scrollbar */
  scroll-behavior: smooth;
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: #999 transparent;
  overscroll-behavior: contain;
  /* Prevent scroll chaining */
  -webkit-overflow-scrolling: touch;
  /* Smooth on iOS */
}

/* Webkit browsers (Chrome, Safari, Edge) */
.work-submenu::-webkit-scrollbar,
.bb-submenu::-webkit-scrollbar,
.service-submenu::-webkit-scrollbar {
  width: 6px;
}

.work-submenu::-webkit-scrollbar-track,
.bb-submenu::-webkit-scrollbar-track,
.service-submenu::-webkit-scrollbar-track {
  background: transparent;
}

.work-submenu::-webkit-scrollbar-thumb,
.bb-submenu::-webkit-scrollbar-thumb,
.service-submenu::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.4);
  border-radius: 4px;
}

.submenu-item {
  padding: 10px 12px;
  transition: background 0.3s ease;
}

.submenu-item:hover {
  background: #f2f2f2;
}

/* Reuse shared item style */
.submenu-item {
  display: block;
  padding: 12px 20px;
  white-space: normal;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s, color 0.2s;
}

.submenu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* about nav */
.about-nav {
  color: black;
}

/* .container,
.w-container {
  padding: 0 !important; 
  max-width: 100%; 
} */

.team-fallback-message {
  padding: 3rem 2rem;
  font-size: 1.25rem;
  text-align: center;
  color: #444;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
}

html {
  scroll-behavior: smooth;
}

.service-content-columns {
  display: block !important;
}

/* /////////////////////////////////// */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
}

.modal-content {
  background: white;
  max-width: 800px;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  z-index: 10;
}

.modal-overlay {
  position: absolute;
  inset: 0;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-item {
  padding: 0;
  /* remove default padding if any */
  overflow: hidden;
}

.faq-image-full {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  /* Fills the box completely */
}

.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background-color: var(--card-background-color);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px var(--shadow-color);
  flex-grow: 1;
  /* Allows container to grow and push footer down */
}

header {
  /* text-align: center; */
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

header p {
  font-size: 1.1em;
  color: var(--light-text-color);
}

main section {
  margin-bottom: 30px;
}

main section h2 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--border-color);
}

main section h3 {
  font-size: 1.3em;
  color: var(--text-color);
  margin-top: 20px;
  margin-bottom: 10px;
}

main section p,
main section ul,
main section ol {
  margin-bottom: 15px;
  color: var(--light-text-color);
}

main section ul,
main section ol {
  padding-left: 25px;
}

main section ul li,
main section ol li {
  margin-bottom: 8px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

strong {
  font-weight: 600;
  color: var(--text-color);
}

.glass-dark-text {
  background: rgba(255, 255, 255, 1);
  /* stronger opacity */
  backdrop-filter: blur(16px);
  /* more blur for stronger glass effect */
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  /* subtle border */
  color: #111111;
  /* dark text */
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.service-text p {
  color: rgba(0, 0, 0, 0.7);
  /* slightly lighter than pure black */
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-text strong {
  color: #111111;
  /* dark strong text */
  font-weight: 600;
}

.work-submenu,
.bb-submenu,
.service-submenu {
  display: none;
}

.work-submenu.open,
.bb-submenu.open,
.service-submenu.open {
  display: block;
}

.submenu {
  display: none;
}

.submenu.open {
  display: block;
}

.section {
  padding-top: 4.5rem;
}

.team-image {
  object-fit: fill;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu.menu-open {
    display: flex !important;
    flex-direction: column;
  }
}

/* who are we first section */

.company-no-grid {
  grid: none;
}

@keyframes scale-in-ver-center {
  0% {
    transform: scaleY(0);
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.animate-scale-in {
  transform-origin: center;
  animation: scale-in-ver-center 0.6s ease-out both;
}

.container {
  max-width: 100vw;
  margin-left: 0;
  margin-right: 0;
}

/* --- Responsive Design --- */

/* Small screens (e.g., mobile phones) */
@media (max-width: 768px) {
  .container {
    margin: 10px;
    padding: 15px;
    box-shadow: none;
    /* Remove shadow on small screens for cleaner look */
    border-radius: 0;
    /* Remove border-radius on small screens */
  }

  header h1 {
    font-size: 1.8em;
  }

  header p {
    font-size: 1em;
  }

  main section h2 {
    font-size: 1.5em;
  }

  main section h3 {
    font-size: 1.2em;
  }
}

/* Medium screens (e.g., tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 760px;
    margin: 30px auto;
  }
}

/* bombay berline 19th june */

@media (max-width: 768px) {
  .benefits-2-columns {
    grid-template-columns: 1fr;
    /* stack in single column */
  }

  .margin-bottom-medium {
    text-align: left;
  }

  .benefits-item {
    max-width: 100% !important;
  }
}

.submenu-item.section-label {
  font-weight: bold;
  opacity: 0.9;
  pointer-events: auto;
}

.remove-grid {
  display: block;
}

.content-center {
  /* width: 0px; */
  width: auto;
  justify-content: center;
}

.d-flex {
  justify-content: center;
}

.new-margin {
  margin-bottom: 3.5rem;
}

.footer-margin {
  margin-top: 4.5rem;
}

.service-item {
  padding-bottom: 0;
}

.blog-thumbnail {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border-radius: 0;
}

.mission {
  display: block;
}

.mission-title-wrapper {
  margin-left: 0.6%;
}

.mission-img-section {
  display: flex;
}

.mission-image-wrapper {
  width: 100%;
}

.about-section-bottom {
  margin: 0%;
}

.margin-bottom-medium {
  /* margin-bottom: 5.2rem; */
}

.benefits-content {
  padding-top: 2rem;
}

.accordion-item {
  padding-bottom: 1rem;
}

.bullet-heading {
  position: relative;
  padding-left: 1.2em;
  text-indent: -0.6em;
  /* shifts first line back so bullet aligns */
}

.bullet-heading::before {
  content: "•";
  position: absolute;
  left: 1;
}

#foreign {
  display: block;
}

.mail {
  padding: 5rem;
  display: flex;
  justify-content: center;
}

.contact-footer {
  margin-top: 0;
}

.footer-terms-condition {
  grid-template-columns: none !important;
  grid-auto-columns: auto;
}

.auto {
  height: auto;
}

.accordion-title {
  font-size: 3.36vw;
}

.modal-content {
  background: white;
  max-width: 800px;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  z-index: 10;
}

.number {
  color: black;
}

.serivces {
  font-size: 3rem;
}

@media screen and (max-width: 479px) {
  .serivces {
    font-size: 30px;
    line-height: 1;
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.modal-overlay {
  position: absolute;
  inset: 0;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
}

.serive-block {
  display: block;
}

/* contact css 7/09/2025 */
.contact-section-bottom {
  opacity: 0.15198;
  transform: translate3d(0px, 1.12956rem, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  will-change: opacity, transform;
  max-width: 800px;
  /* margin: 0 auto; */
  padding: 20px;
}

.margin-bottom-medium {
  margin-bottom: 2rem;
}

.content-section {
  width: 100%;
  margin-bottom: 1.5rem;
}

.paragraph-large {
  font-size: 1.1rem;
  line-height: 1.6;
  text-indent: 0px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.margin-bottom-extra-small {
  margin-bottom: 0.5rem;
}

.parallex-height {
  height: -webkit-fill-available;
}

.service-profile {
  /* background: #f9f9f9; */
  padding: 20px;
  border-radius: 10px;
  line-height: 1.7;
  color: #333;
}

.profile-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.service-text {
  margin-bottom: 15px;
  font-size: 16px;
}

.expertise-list {
  margin: 10px 0 20px 20px;
  color: #444;
  font-size: 15px;
  list-style-type: disc;
}
.service-text {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8; /* makes big paragraphs readable */
  color: #444;
  text-align: justify; /* clean newspaper-style alignment */
  margin: 15px auto;
  /* max-width: 900px;    */
}

.service-text strong {
  font-weight: 600;
  color: #222; /* highlight key parts */
}
.portfolio-section {
  /* max-width: 900px; */
  /* margin: 20px auto; */
  padding: 10px 20px;
  font-family: "Open Sans", Arial, sans-serif;
  color: #444;
}

.portfolio-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

.portfolio-text strong {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.portfolio-text em {
  color: #0073e6; /* highlight film festivals / platforms */
  font-style: normal;
  font-weight: 500;
}
