/* General Reset & Body */

@font-face {
  font-family: "Baloo 2", sans-serif;
  src: url(‘Baloo_2/Baloo2-VariableFont_wght.ttf’);
}

body,
html {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  background-color: #000;
  font-family: "Baloo 2", sans-serif;
  color: #fff;
}

.page-contant {
  margin-top: 75px;
  /*min-height: calc(100vh - 70px);*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* animation  */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-justify{
    text-align: justify;
}

.scrollanimate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scrollanimate.visible {
  animation: fadeUp 0.8s ease-out forwards;
}

/* Typography */
h1 {
  font-size: 4rem;
  line-height: 1.2;
  /*max-width: 900px;*/
  font-weight:1000;
}

p {
  font-size: 2rem;
  line-height: 1.5;
  /* max-width: 900px; */
  margin: 10px;
}

strong {
  font-weight: 700;
}

.text-gray {
  color: #b3b3b3;
}

.small-text {
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.large-text {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  line-height: 1.1;
}

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
  transition: all 0.4s ease;
}

.menu-links {
  margin: 0;
  padding: 0;
}

.menu-links li {
  margin: 20px 0;
  font-size: 2rem;
  font-weight: bold;
  list-style: none;
}

.menu-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.menu-links a:hover {
  color: #f39c12;
}

.menu-links li a .number {
  font-size: 1.2rem;
}


/* Responsive Typography */
@media (min-width: 576px) {
  h1 {
    /* font-size: 2.5rem; */
  }

  p {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  h1 {
    /* font-size: 3rem; */
  }

  p {
    font-size: 1.5rem;
  }
}

/* Horizontal Rule */
hr {
  width: 6rem;
  border-top: 1px solid #333;
  margin: 2rem auto 3rem auto;
}

/* Hero Section */
.hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  background: url('https://storage.googleapis.com/a1aa/image/4ca5c325-019d-4a12-7522-96cf86b21558.jpg') center center/cover no-repeat;
}

.hero-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 48px;
  line-height: 1.1;
  max-width: 90vw;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-text {
    max-width: 600px;
  }
}



.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

.menu-button {
  cursor: pointer;
  user-select: none;
}

.header-logo {
  height: 70px;
  overflow: hidden;
}

.header-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.title-heading {
  font-size: 3.5rem;
  /* Adjust based on preference */
  font-weight: 700;
  text-align: center;
}




.carousel-item {
  height: 100vh;
  min-height: 500px;
  background-color: #000;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.carousel-caption {
  bottom: 20%;
}



/* Menu Button */
.menu-button {

  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.menu-button .bar {
  width: 24px;
  height: 4px;
  background-color: white;
  border-radius: 2px;
}

/* Arrows */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: #2563EB;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.arrow-left {
  left: 24px;
}

.arrow-right {
  right: 24px;
}

/* Card Component */
.card {
  background-color: #0a0a0a;
  border-radius: 1rem;
  padding: 1rem;
  color: #fff;
  height: 100%;
}

.card-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 1rem 0 1.5rem;
}

.card-text {
  /* font-weight: 600;
  font-size: 0.9rem; */
  line-height: 1.5;
}

@media (min-width: 768px) {
  .card-text {
    font-size: 1rem;
  }
}

/* Icons */
.icon-img,
.svg-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius:20px;
}

.svg-icon {
  stroke: #fff;
  stroke-width: 3;
  fill: none;
}

/* Button */
.btn-outline-light-custom {
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.75rem 2.5rem;
  border: 1px solid #ccc;
  color: #ccc;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-light-custom:hover {
  color: #fff;
  border-color: #fff;
}

/* Footer Link */
.footer-link:hover {
  color: #b3b3b3 !important;
}

/* Productions Section */
.Productions {
  background-color: #000;
  color: #fff;
  font-family: "Baloo 2", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 25px;
}

.img-fluid {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
}

.row>[class*='col-'] {
  padding: 0.25rem;
}

.container-custom {
  max-width: 1440px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.map-container iframe {
  border: 10px solid white;
}

.map-container {
  width: 100%;
  height: 100%;
  border: 1px solid white;
  border-radius: 16px;
}

/* blog */
.blog-card {
  background-color: black;
  border: 2px solid #333;
  color: #6b6b6b;
  font-weight: 700;
  font-family: "Baloo 2", sans-serif;
  padding: 25px;
}

.blog-card:hover {
  background-color: black;
  margin-top: -4px;
  color: #6b6b6b;
  font-weight: 700;
  font-family: "Baloo 2", sans-serif;
  padding: 25px;
}

.blog-card .date {
  font-size: 0.75rem;
  color: #6b6b6b;
  font-weight: 700;
}

.blog-card .author {
  font-weight: 400;
  color: #999;
  font-size: 0.875rem;
}

.blog-card .author strong {
  color: #bbb;
  font-weight: 700;
}

.card-title {
  color: #6b6b6b;
  font-weight: normal;
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem; 
  max-width: 18rem;
}

.card-footer {
  font-size: 0.75rem;
  color: #555;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}

.avatar {
  width: 56px;
  height: 56px;
  background-color: #bbb;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.card-body-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-line {
  border-top: 2px solid #fff;
  width: 3rem;
  margin-right: 1rem;
  margin-left: 1rem;
}

.large-line {
  border-top: 3px solid #fff;
  width: 5rem;
  margin-right: 1rem;
  margin-left: 1rem;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.know-more {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: 2rem;
  cursor: pointer;
}

.know-more-line {
  border-top: 2px solid #fff;
  width: 4rem;
  margin-left: 1rem;
}

a {
  color: #fff;
  text-decoration: none;
}

.large-heading {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}


@media (min-width: 768px) {
  /* body {
    padding: 5rem 5rem;
  } */

  .large-heading {
    font-size: 2.5rem;
  }
}

.section-label {
  display: flex;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-label::before {
  content: "";
  width: 60px;
  height: 2px;
  background: #fff;
  margin-right: 15px;
}

.main-heading {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  display: block;
}

.desc-text {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: bold;
}

.link-btn {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

.link-btn::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 60px;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}

.link-btn:hover::after {
  width: 80px;
}

.bottom-section {
  margin-top: 40px;
}

header#mainHeader {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

header#mainHeader.scrolled {
  background-color: black !important;
}

.contact-icon {
      width: 20px;
      height: 20px;
      background: #fff;
      border-radius: 50%;
      display: inline-block;
      margin-right: 10px;
    }

    .map-placeholder {
      background-color: transparent;
      border: 1px solid #fff;
      /*height: 150px;*/
      display: flex;
      justify-content: center;
      align-items: center;
      color: #ccc;
    }

    .social-box {
      border: 1px solid #fff;
      color: #fff;
      background: #fff;
      text-align: center;
      /*padding: 19px;*/
      /*margin-top: 20px;*/
      cursor: pointer;
      transition: background 0.3s;
    }

    .social-box:hover {
      background-color: #222;
    }

    .footer-icons .icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #fff;
      display: inline-block;
      margin-right: 15px;
    }

.font-size-on-page{
    font-size: 20px!important;
    font-weight: bold;
}

.gallery-image:hover {
  transform: scale(0.8); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}