body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", Arial, sans-serif;
  background-color: black; /* Set the background color of the body to black */
}

/* Gallery Start */
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjusted for responsiveness */
  }
  
  @media screen and (max-width: 900px) {
    .gallery {
      grid-template-columns: repeat(1, 1fr); /* One column for smaller screens */
    }
  }
  
  @media screen and (min-width: 900px) {
    .gallery {
      grid-template-columns: repeat(2, 1fr); /* Two columns for larger screens */
    }
  }

.gallery-item {
    position: relative;
    overflow: hidden;
  }
  
  .gallery-item img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove underline */
  }
  
  .gallery-item:hover .overlay {
    opacity: 1;
  }
  
  .gallery-item .overlay i {
    font-size: 48px; /* Adjust icon size */
    color: #fff;
    text-decoration: none; /* Remove underline */
  }
  
  .image-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    text-align: center; /* Center align text */
    width: 100%; /* Ensure full width */
  }
    
/* Gallery End */
  
/* Popup Start */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .video-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .video-container iframe {
    width: 100%;
    height: 100%;
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: #ffffff;
    font-size: 24px;
  }
  
/* Popup End */

/* Menu Start */

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* Initially transparent */
  z-index: 2; /* Ensure overlay is above other content */
  transition: background-color 0.3s ease; /* Smooth transition for background color */
  pointer-events: none; /* Allow clicks to pass through initially */
}

.header {
  color: #ffffff;
  position: fixed;
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  display: flex; /* Add flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  flex-direction: column; /* Stack vertically by default */
}

.header li {
  margin: 10px 0; /* Add spacing between menu items */
}

.header li a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  color: #ffffff;
}

.header li a:hover,
.header .menu-btn:hover,
.header .logo:hover {
  color: #ffc107;
}

.header .logo {
  display: block;
  float: left;
  font-size: 16px;
  padding: 15px 25px;
  text-decoration: none;
  color: #ffffff;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 25px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #ffffff;
  display: block;
  height: 2px;
  position: relative;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #ffffff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
  flex-direction: column; /* Stack vertically when menu is open */
  align-items: center; /* Center menu items horizontally */
}

.header .menu-btn:checked ~ .menu li {
  text-align: center; /* Center menu items horizontally */
}


.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 900px) {
  .header li {
      float: left;
  }

  .header li a {
      padding: 20px 30px;
  }

  .header .menu {
      clear: none;
      float: right;
      max-height: none;
      flex-direction: row; /* Reset flex direction for larger screens */
  }

  .header .menu-icon {
      display: none;
  }

  .header .logo {
      font-size: 18px;
  }
  
}

/* When the menu is not in hamburger mode */
@media (min-width: 900px) {
  .header .menu {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    flex-direction: row; /* Align items horizontally */
    justify-content: flex-end; /* Align items to the right */
    align-items: center; /* Center vertically */
  }
  
  .header .menu li {
    margin: 0 10px; /* Add spacing between menu items */
  }
}

/* Menu End */


/* Fullscreen Video Start */

.fullscreen-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.fullscreen-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the entire area */
}

/* Fullscreen Video End */

/* Index Content Start */

.index-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.index-link {
    color: #fff;
    font-size: 45px;
    text-decoration: none;
}

.index-link:hover {
    color: #ffc107;
    text-decoration: none;
}

    /* Social media icons start */
.social-icons {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center; /* Center the icons horizontally */
    margin-top: 20px; /* Adjust spacing from other content */
}

.contact-social-icon {
    display: inline-block;
    margin-right: 10px; /* Adjust spacing between icons */
    font-size: 24px; /* Adjust icon size */
    color: #ffffff; /* Adjust icon color */
}

.contact-social-icon:hover {
    color:#ffc107 /* Change color on hover */
}

    /* Social media icons End */

    /* Media query for smaller viewports */
@media screen and (max-width: 900px) {
    .index-content h1 {
        font-size: 35px; /* Adjusted font size for smaller viewports */
    }
}

@media screen and (max-width: 768px) {
    .contact-social-icon {
        font-size: 14px; /* Adjusted font size for smaller viewports */
    }
}

/* Index Content End */

/* Contact Start */

.fullscreen-image {
  position: relative;
  height: 100vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.fullscreen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire container */
}

.contact-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-text h1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-text h2 {
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 2px;
}

.contact-text a {
  color: inherit; /* Inherit color from parent */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease; /* Smooth transition for color change */
}

.contact-text a:hover {
  color: #ffc107; /* Change color on hover */
}

/* Contact End */

/* Drama Start */


/* Drama End */

/* Project Start */

.project-fullscreen-image {
  position: relative;
  height: 100vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.project-fullscreen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire container */
}

.project-content-container {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: auto; /* Add vertical scrollbar */
}

.project-content {
  padding-top: 150px;
  padding-left: 200px;
  max-width: 30%; /* Set maximum width */
  text-align: left; /* Align content horizontally */
  color: white;
}

/* Header text */
.project-content h1 {
  font-size: 32px; /* Adjust font size as needed */
  margin-bottom: 15px; /* Add bottom margin */
}

/* Plain text */
.project-content p {
  font-size: 14px; /* Adjust font size as needed */
  margin-bottom: 15px; /* Add bottom margin */
}

/* Link text */
.project-content a {
  font-size: 16px; /* Adjust font size as needed */
  color: #ffffff; /* Adjust font color as needed */
  text-decoration: none; /* Remove underline */
}

/* Hover color for links */
.project-content a:hover {
  color: #ffc107; /* Change color on hover */
}

/* List */
.list {
  list-style-type: none; /* Remove default list style */
  padding: 0; /* Remove default list padding */
}

/* List item */
.list li {
  margin-bottom: 10px; /* Adjust spacing between list items */
}

/* List item container */
.item {
  display: flex;
  flex-direction: column;
}

/* Title */
.item .title {
  font-size: 10px; /* Adjust title font size as needed */
  font-weight: bold; /* Apply bold font weight */
  color: #ffffff; /* Adjust title color as needed */
  text-transform: uppercase; /* Convert text to uppercase */
}

/* Name */
.item .name {
  font-size: 16px; /* Adjust name font size as needed */
  color: #ffffff; /* Adjust name color as needed */
}

/* Text drop shadow */
.apply-drop-shadow .project-content h1,
.apply-drop-shadow .project-content p,
.apply-drop-shadow .project-content a,
.apply-drop-shadow .item .title,
.apply-drop-shadow .item .name {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add drop shadow to text */
}

/* Media query for smaller viewports */
@media screen and (max-width: 900px) {
  .project-content {
    padding-top: 100px;
    padding-left: 25px;
    max-width: 90%;
  }
}

@media screen and (max-height: 600px) {
  .project-content {
    padding-top: 50px;
  }
  
  .project-content h1 {
    font-size: 15px; /* Scale down font size for h1 */
    margin-bottom: 10px;
  }

  .project-content p {
    font-size: 10px; /* Scale down font size for paragraphs */
    margin-bottom: 10px;
  }

  .project-content a {
    font-size: 10px; /* Scale down font size for links */
  }

  .item .title{
    font-size: 8px;
 }

  .item .name {
    font-size: 10px;
 }

 .list li {
  margin-bottom: 8px; /* Adjust spacing between list items */
}

}

/* Project End */


/* Contact Start */

.contact-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-text h1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-text h2 {
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 2px;
}

.contact-text a {
  color: inherit; /* Inherit color from parent */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease; /* Smooth transition for color change */
}

.contact-text a:hover {
  color: #ffc107; /* Change color on hover */
}

/* Contact End */

/* Drama Hero Images Start */

.hero-image {
  height: 650px; /* Adjust the height as needed */
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background-color: rgba(0, 0, 0, 0); /* Semi-transparent overlay */
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
  transition: opacity 0.3s ease; /* Smooth transition for overlay */
}

.hero-link:hover .hero-overlay {
  color: #ffc107;
}
.hero-link {
  text-decoration: none;
  color: inherit;
}

.hero-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Media query for smaller viewports */
@media screen and (max-width: 900px) {
  .hero-image {
    height: 400px;
  }

  .hero-overlay {
    font-size: 18px;
  }

}

/* Drama Hero Images End */
