@import url(https://db.onlinewebfonts.com/c/e46b475339f550c0e7d552169a8ef2f3?family=Colo-Pro-Black);
@import url(https://db.onlinewebfonts.com/c/e695a2b548e145591a266fc50eb492e0?family=Regular);

 :root {
    --color-menu-overlay: #01c8e2;
    --color-menu-text: #000;
    --color-divider: #000000;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




html, body{
    width: 100%;
    height: 100%;
    background:#EFE9F7;
    font-family: "Colo-Pro-Black";
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-menu-text);
}

i {
    position: relative;
    top: 1px;
}

.container {
  position: relative;
  width: 100%;
  margin-bottom: 4rem;
 
  
}

nav {
  position: relative;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 2em;
  backdrop-filter: blur(20px);
  background:#EFE9F7;
  z-index: 0;
}



.logo img{
   width: 15rem;
}

.mainicon{
  display: flex;
}

.menu-open-btn {
  cursor: pointer;
  display: flex;
  gap: 1rem;
  margin-right: 2rem;
  margin-top: 1.5rem;
}

.menu-open-btn img{
  width: 4rem;
}

.sci {
  display: flex;
  margin-top: 1.5rem;
  gap: 1rem;
}

.icon img{
  width: 4rem;
}

.icon1 img{
  width: 4rem;
}
h1.header {
  position: absolute;
  bottom: 0;
  margin: 0.25em;
  font-weight: 400;
  color:#503082;
  font-size: 140px;
  line-height: 1;
}

.icon1 img{
  width: 4rem;
  margin-left: 1rem;
}
.menu-overlay {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2em;
  background: #ba8eff;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  z-index: 1000 !important;
}

.menu-close-btn {
  cursor: pointer;
}

.menu-nav {
 display: flex;
 justify-content: space-between;
 margin-bottom: 1em;
 color: var(--color-menu-text);
}

.menu-cols {
  display: flex;
}

.menu-cols > div {
  flex: 1;
  padding: 1em 0;
}

.video {
  width: 50%;
}

.video-preview {
  width: 100%;
  height: 0px;
  background: url("./assets/showreel-thumbnail.webp") no-repeat 50% 50%;
  background-size: cover;
  border-radius: 4px;
}

.video-details {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0.5em 0;
  color: var(--color-menu-text);
}

.menu-link {
  position: relative;
  width: max-content;
}

.menu-link a {
  font-size: 40px;
}



.btn {
  position: relative;
  margin: 2em 0;
  border: 1px solid var(--color-menu-text);
  width: max-content;
  padding: 1.25em 2.5em;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-menu-text);
  transition: 0.3s all;
  z-index: -1;
}

.btn:hover a {
  color: var(--color-menu-overlay);
}

.btn:hover.btn:before {
  width: 100%;
}

.menu-footer {
  display: flex;
  flex-direction: column;
  color: var(--color-menu-text);
}

.menu-divider {
  width: 0%;
  height: 1px;
  background: var(--color-divider);
  margin: 1em 0;
}

.menu-footer-copy {
  display: flex;
  justify-content: space-between;
}

.socials {
  display: flex;
  gap: 1em;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  position: relative;
}

.image-item {
  position: relative;
  overflow: hidden;
  transform-origin: center;
  animation-duration: 2s; /* Default animation duration */
  animation-fill-mode: both; /* Retain final animation state */
}

.image-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Custom sizes for the images */
.item-1 img, .item-3 img, .item-4 img, .item-5 img, .item-6 img {
  width: 300px;
  height: 400px;
}

.item-2 img {
  width: 300px;
  height: 300px;
}

/* Apply different rotations and offsets to create staggered layout */
.item-1 {
  transform: rotate(-10deg);
  margin-left: 30px;
  animation: slideInLeft 2s ease-in-out;
}

.item-2 {
  transform: rotate(5deg);
  margin-top: -50px;
  animation: fadeIn 2s ease-in-out;
}

.item-3 {
  transform: rotate(-5deg);
  margin-right: 50px;
  animation: bounceIn 2s ease-in-out;
}

.item-4 {
  transform: rotate(10deg);
  margin-top: -70px;
  margin-left: 20px;
  animation: slideInRight 2s ease-in-out;
}

.item-5 {
  transform: rotate(-7deg);
  margin-bottom: 30px;
  animation: zoomIn 2s ease-in-out;
}

.item-6 {
  transform: rotate(12deg);
  margin-top: -20px;
  margin-left: -40px;
  animation: flipInX 2s ease-in-out;
}

/* Animations */

/* Slide in from the left */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%) rotate(-10deg);
    opacity: 0;
  }
  to {
    transform: translateX(0) rotate(-10deg);
    opacity: 1;
  }
}

/* Fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Bounce in */
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Slide in from the right */
@keyframes slideInRight {
  from {
    transform: translateX(100%) rotate(10deg);
    opacity: 0;
  }
  to {
    transform: translateX(0) rotate(10deg);
    opacity: 1;
  }
}

/* Zoom in */
@keyframes zoomIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Flip in horizontally */
@keyframes flipInX {
  from {
    transform: rotateX(90deg);
    opacity: 0;
  }
  to {
    transform: rotateX(0);
    opacity: 1;
  }
}




.text h1{
    margin-left: 30rem;
    padding-top: 5rem;
    font-size: 7rem;
    color: #000000;
    font-style: italic;
}


.para{
  background:#EFE9F7;
   padding-top: 3rem;
   padding-left: 6rem;
  
}

.we h2{
    font-size: 3rem;
    margin-left: 8rem;
    
}

.we p{

    font-size: 1.5rem;
    width: 80%;
    padding-top: 1rem;
    font-family: "Regular";
    margin-left: 8rem;
   
}

.maincard {
  margin: 2rem;
}

.card-row1, .card-row2 {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  margin-top: 2rem;
  padding-bottom: 7rem;
}

.card-container {
  perspective: 1000px; /* Enables the 3D effect */
}

.card {
  width: 700px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.card:hover {
  transform: rotateY(180deg); /* Flips the card on hover */
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Ensures the hidden side isn't visible */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-front {
  background-color: #ffffff;
}

.card-back {
  background-color: #ffffff;
  transform: rotateY(180deg);
}

.card-img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h2 {
  font-size: 1.5rem;
  color: #503082;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.card-button {
  width: 130px;
  height: 45px;
  background-color: transparent;
  border: 2px solid #e74c3c;
  border-radius: 0.6em;
  color: #e74c3c;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase;
  transition: background 300ms ease-in-out;
  background-image: linear-gradient(45deg, #ba8eff 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
}

.card-button:hover {
  background-position: 0;
}
 
#footer {
   
  height: 90vh;
  width: 100%;
  background-color: #000;
  color: #fff;
  z-index: 9;
  bottom: 0;
  display: flex;
  /* align-items: flex-end; */
  justify-content: flex-end;
  flex-direction: column;
  padding: 1vw 3vw;
}


#footer-div {
  height: 15rem;
  width: 100%;
  background: #2a2f33; 
  display: flex;
  gap: 70vh;
  
}



#full-scr {
  height: 20rem;
  width: 100%;
  background-color: #00000070;
  position: fixed;
  z-index: 99;
  top: -100%;
  transition: all ease 0.5s;
}

#full-div1 {
  height: 50%;
  width: 100%;
  background-color: #EFEAE3;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  

}


/* Container for menu links */
.menu-link2 {
  position: relative;
  width: max-content;
  margin-bottom: 10px; /* Adds space between the menu items */
  margin-left: 1.5rem;
  margin-top: 1rem;
}

/* Styling for the anchor tags inside the menu */
.menu-link2 a {
  font-size: 20px;
  text-decoration: none;
  color: #f5f4f0;; /* Color of the text */
 
  display: inline-block;
}



/* Change the color of the text on hover */


.newsletter-section{
  margin-left: 1.5rem;
  margin-top: 1rem;
}



.newsletter-section h3 {
  margin-bottom: 10px;
}

.newsletter-section input[type="email"] {
  padding: 10px;
  width: 250px;
  border-radius: 5px;
  border: none;
  margin-right: 10px;
  margin-bottom: 1rem;
  
}

.newsletter-section button {
  padding: 10px 20px;
  background-color: #ba8eff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
   ;
}

.newsletter-section button:hover {
  background-color: rgb(87, 238, 0);
}

#subscriptionMessage {
  margin-top: 10px;
  color: #00c851; /* Green for success message */
}


.bigtext img{
  width: 80rem;
  height: 15rem;
}


#footer-bottom {
  border-top: 1px solid #dadada;
  height: 2rem;
  width: 100%;
}

#last {
  display: flex;
  gap: 45vh;
}

.baila a {
  color: #fff;
  text-decoration: none;
}

/* HR hover effect for h4 tags */
.footer-h4 {
  position: relative;
  display: inline-block;
  color: #fff;
}

.footer-h4:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footer-h4:hover:after {
  width: 100%;
}

.footer-h4:hover {
  color: #fbfbfb; /* Text color change on hover */
}



 /* mobile resposive */
 @media (max-width: 600px){
  .menu-overlay {
    height: 100vh;
  }
  
  .menu-cols {
    display: block;
  }
  
  .video-preview {
    height: 125px;
  }
  
  .menu-link a {
    font-size: 30px;
  }
  
  h1.header {
    font-size: 40px;
  }
  
  nav{
  margin-right: 20rem;
  }
  
  .logo img{
  width: 8rem;
  margin-top: 1rem;
  }
   
  
  .gallery-container {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 10px; /* Reduce the gap between images */
  }

  .image-item {
    margin: 0; /* Remove margins for cleaner layout */
    transform: none; /* Remove rotations for a cleaner mobile layout */
  }

  .image-item img {
    width: 100%; /* Make images take full width */
    height: auto; /* Adjust height automatically */
  }

  /* Override specific item sizes */
  .item-1 img, .item-3 img, .item-4 img, .item-5 img, .item-6 img, .item-2 img {
    width: 100%; /* Full width for mobile screens */
    height: auto; /* Let the height adjust based on width */
  }





  .text h1 {
    margin-left: 0;
    padding-top: 2rem;
    font-size: 3rem; /* Decrease font size */
    text-align: center; /* Center the text */
  }

  /* Adjusting paragraph section */
  .para {
    padding: 1rem; 
    text-align: center; 
  }

  .we h2 {
    font-size: 2rem; 
    margin-left: 0;
  }

  .we p {
    font-size: 1.2rem; 
    width: 100%;
    margin-left: 0;
    text-align: center; 
  }

  /* Adjusting card layout */
  .maincard {
    margin: 1rem; 
    margin-bottom: 12rem;
  }

  .card-row1 {
    flex-direction: column;
    gap: 21rem; 
  }

  .card-row2{
    margin-top: 12rem;
    flex-direction: column;
    gap: 21rem; 
  }

  .card {
    width: 100%; /* Make the card take up full width */
    height: auto; /* Let the height adjust */
  }

  /* Adjusting image sizes */
  .card-img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }

  /* Adjusting card content */
  .card-content h2 {
    font-size: 1.2rem; /* Decrease font size */
  }

  .card-content p {
    font-size: 0.9rem; /* Adjust paragraph font size */
  }

  /* Adjusting button */
  .card-button {
    width: 100px;
    height: 40px;
    font-size: 0.8rem; /* Adjust button size */
  }






  #footer-div {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}



#footer h1 {
    font-size: 12vw;
}

.menu-link2 a {
    font-size: 16px;
}

/* Create the HR effect */
.menu-link2:after {
content: "";
position: absolute;
top: 100%;
left: 0;
width: 0;
height: 2px;
background: black; /* Color of the HR line */
transition: width 0.3s ease;
}

 /* On hover, expand the HR effect */
  .menu-link2:hover:after {
     width: 100%;
    }

 /* Change the color of the text on hover */
      .menu-link2 a:hover {
      color: #f5f4f0; /* Color when hovered */
     }
.footer-h4 {
    font-size: 14px;
}

.bigtext img {
  width: 95vw;
  height: 10vh;
  margin-top: 5rem;
  
}

#footer-bottom{
    height: 20rem;
}

.footer-h4:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.footer-h4:hover:after {
    width: 100%;
}

.footer-h4:hover {
    color: #fbfbfb; /* Text color change on hover */
}


#last {
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.baila a {
  font-size: 18px;
}


 }







































   
      





    