@tailwind base;
@tailwind components;
@tailwind utilities;

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}
:root {
  --main-orange : #f59323;
}

/* google font */
body {
  font-family: "Josefin Sans", sans-serif;
  background-color: #333;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}
/* start scroll style */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--main-orange);
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background-color: rgb(255, 255, 255);
}
/* end scroll style */
/* start my container  */
.my-container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* Small */
@media (min-width: 768px) {
  .my-container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .my-container{
    width: 960px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .my-container {
    width: 1140px;
  }
}
/* x-Large */
@media (min-width: 1400px) {
  .my-container {
    width: 1350px;
  }
}
/* end my container  */
/* whatsapp link */
.floating-whatsapp a {
  background-color: #25d366;
  box-shadow: -1px 2px 48px -6px rgba(37,211,102,0.66);
-webkit-box-shadow: -1px 2px 48px -6px rgba(37,211,102,0.66);
-moz-box-shadow: -1px 2px 48px -6px rgba(37,211,102,0.66);
}
.floating-whatsapp a:hover {
  box-shadow: -1px 2px 89px 15px rgba(37,211,102,0.72);
-webkit-box-shadow: -1px 2px 89px 15px rgba(37,211,102,0.72);
-moz-box-shadow: -1px 2px 89px 15px rgba(37,211,102,0.72);
transform: scale(1.1);
}
/* whatsapp link */
/* scroll to top */
.popup {
  transition: 0.5s;
  z-index: 10000000000000000000000000000000000;
}
.popup a i {
  display: flex;
  margin: 20px;
  box-shadow: 2px 10px 87px 3px rgba(255,255,255,0.51);
-webkit-box-shadow: 2px 10px 87px 3px rgba(255,255,255,0.51);
-moz-box-shadow: 2px 10px 87px 3px rgba(255,255,255,0.51);
transition: 0.5s;
}
.popup a i:hover {
  transform: scale(1.1);
box-shadow: 2px 10px 88px 28px rgba(245,147,36,0.49);
-webkit-box-shadow: 2px 10px 88px 28px rgba(245,147,36,0.49);
-moz-box-shadow: 2px 10px 88px 28px rgba(245,147,36,0.49);
}
.visible-scroll-to-top {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
/* scroll to top */
/* home page */
/* intro section */
.zoom {
  animation: scale 40s linear infinite;
}
  
@keyframes scale {
  50% {
    transform:scale(1.15);
  }
}
@media (max-width: 992px) {
  .intro .photo .music-intro {
    display:none;
  }
}
@media (max-width: 768px) {
  .intro .photo {
    display:none;
  }
  .intro .intro-content {
    justify-content: center;
  }
}
/* heading shine effect */
.heading {
  line-height: 1.8;
}
.glowIn {
color: var(--main-orange);
}
.glowIn span {
  animation: glow-in 2s both infinite;
}
@keyframes glow-in {
  from {
    opacity: 1;
  }
  65% {
    opacity: 1;
    text-shadow: 0 0 25px white;
  }
  75% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
/* intro section */

/* about us section  */
/* services */
.services .cards {
  grid-template-columns: repeat(auto-fill , minmax(300px ,1fr));
}
@media (max-width:1280px) {
  .services .cards {
  grid-template-columns: repeat(auto-fill , minmax(350px ,1fr));
}
}
@media (max-width:786px) {
  .services .cards {
  grid-template-columns: repeat(auto-fill , minmax(250px ,1fr));
  }
} 
.services .cards .card:hover {
  box-shadow: -1px 8px 31px 0px rgba(0,0,0,0.39);
  -webkit-box-shadow: -1px 8px 31px 0px rgba(0,0,0,0.39);
  -moz-box-shadow: -1px 8px 31px 0px rgba(0,0,0,0.39);
  transform: scale(1.05);
}
.services .cards .card {
background-color:  white;
transition: 0.5s;
}
.services .cards .card:hover a {
  text-shadow: 2px 0px 5px rgba(0,0,0,0.54);
}

.services-container {
  background-image: linear-gradient(#f2f2f2 10%, #333 10%, #333 40%, #333 40%, #333 60%, #333 60%, #333 90%, #f2f2f2 90%);
}


/* services */
/* our work */
.owr-work-section {
  background-image: url('https://i.ibb.co/8PRbvWy/our-work-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
}
/* our work */


/* clients */
.clientsSection {
position: relative;

}
.clientsSection .clients .client {
transition: 0.5s;
}
.clientsSection .clients .client:hover {
  transform: scale(1.05);
}
.carousel {
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
  display: flex;
}
.carousel:hover .carousel__item {
  animation-play-state: paused !important;
}
.carousel__list {
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}
.carousel__item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: slide var(--duration) linear infinite;
  animation-delay: calc(var(--duration) / var(--quantity) * (var(--position) - var(--quantity))) !important;
}
[reverse=true] .carousel__item {
  animation: slideReverse var(--duration) linear infinite;
}

@keyframes slide {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--width) * -1);
  }
}
@keyframes slideReverse {
  from {
    left: calc(var(--width) * -1);
  }
  to {
    left: 100%;
  }
}
/* clients */
/* home page */
/* footer */
footer {
  background-color: #333;
}
footer .logoAndFollowUs i ,
footer .aboutUS i {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  }

@media (max-width : 1280px) {
  footer .footerContent .map iframe {
  width: 250px;
  height: 200px;
  }
}
  /* footer */
/* ========================================================= */
/* ========================================================= */
/* ========================================================= */
/* ========================================================= */
/* our work */
/* show reals */

.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fill , minmax(calc(100%/3) , 1fr));
}
@media (max-width:1280px) {
  .video-container {
  grid-template-columns: repeat(auto-fill , minmax(350px ,1fr));
}
}
@media (max-width:786px) {
  .video-container {
  grid-template-columns: repeat(auto-fill , minmax(250px ,1fr));
  }
} 
.video-container img {
  width: 100%;
  height: 100%;
  position: relative;
}
.video-container .video  {
  padding: 5px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition-duration: 0.5s;
}
.video-container .video .overlay{
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.541);
  transition-duration: 0.5s;
  pointer-events: none;
}
.video-container .video:hover .overlay {
  opacity: 1;
  transition-duration: 0.5s;
}
.video-container .video .overlay p {
  width: 100%;
  font-size: 30px;
  text-align: center;
  color: var(--main-blue);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-iframe {
  width: 75%;
  height: 75%;
}
.video-modal-container {
  display: none;
  position: fixed;
  z-index: 10000000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.video-modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 100%;
  height: 100%;
}
.close-button {
  position: absolute;
  top: 50px;
  right: 20px;
  font-size: xxx-large;
  font-weight: bold;
  color: white;
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: fit-content;
}
.thumbnail {
  cursor: pointer;
}
#img {
  border-radius: 50%;
}
/* show reals */

/* image gallery  */



.gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill , minmax(calc(100%/3) , 1fr));
  justify-items: center;
}
@media (max-width:1280px) {
  .gallery {
  grid-template-columns: repeat(auto-fill , minmax(350px ,1fr));
}
}
@media (max-width:786px) {
  .gallery {
  grid-template-columns: repeat(auto-fill , minmax(250px ,1fr));
  }
} 

.gallery img {
  width:100%;
  height: auto;
  padding: 5px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery .img {
  overflow: hidden;
  width: 100%;
}

.gallery .img {
  overflow: hidden;
  width: 100%;
}

.gallery .overlay {
  transform: translate(-50% ,-50% );
  top: 50%;
  left: 50%;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background-color: rgba(255, 255, 255, 0.46);
  transition: 0.5s;
  opacity: 0;
}
.gallery .img:hover .overlay  {
  opacity: 1;
  pointer-events: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.myEditModal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
  height: 100%;
  flex-direction: column;
  gap: 20px;
  margin: auto;
}
.modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto; 
  gap: 15px;
  height: 75%;
}
@media (max-width:786px) {
  .modal-content {
    height: auto;
  }
}

.main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto; 
  height: 75%;
  transition: opacity 0.5s ease-in-out;
}
@media (max-width:786px)  {
  .main-image {
    height: 100%;
  }
}
.main-arrow {
  background-color: transparent;
  border: none;
  color: #ffff;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.2s;
}

.main-arrow:hover {
  color: #bbb;
}

#caption {
display: none;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.slider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.slider button {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.2s;
  margin: 0 10px;
}

.slider button:hover {
  color: #bbb;
}

.related-images {
  display: flex;
  gap: 10px;
  overflow: hidden;
  width: 400px; /* Adjust this value to control the number of visible related images */
  transition: transform 0.5s ease-in-out; /* Add this line */
}
@media (max-width:786px) {
  .related-images {
    width: 200px;
    gap: 5px;
  }
}

.related-images img {
  width: auto;
  height: 80px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (max-width:786px) {
  .related-images img {
    height: 35px;
  }
}

.related-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* image gallery  */
/* contact us page */

/* contact us page */

@media (max-width:768px) {
  .video-intro-services {
    /* width: 100%; */
    writing-mode: vertical-rl;
    display: grid;
    align-content: center;
  } 
}
@media (max-width:768px) {
  .video-intro-services .about-image {
    width: 1000px;
  } 
}


/* mouse follower */
.circle {
  --circle-size: 40px;
  position: fixed;
  height: var(--circle-size);
  width: var(--circle-size);
  border: 3px solid #f59323;
  border-radius: 100%;
  top: calc(var(--circle-size) / 2 * -1);
  left: calc(var(--circle-size) / 2 * -1);
  pointer-events: none;
}
@media (max-width:768px) {
  .circle {
    display: none;
  }
}
/* mouse follower */

/* header  */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
.header-row {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  text-decoration: none; /* if using anchor */

}
.hamburger path {
  fill: none;
  stroke: #f59323;
  stroke-linecap: round;

}
.fullpage-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: none;
}
.fullpage-menu-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 100px 60px;
}
.menu-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  opacity: 0;
}
nav {
  position: relative;
  z-index: 1;
  text-align: center;
}
nav ul {
  list-style-type: none;
}
nav li {
  overflow: hidden;
}
nav li + li {
  margin-top: 30px;
}
nav li a {
  font-size: 50px;
  padding: 5px 0;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  letter-spacing: 5px;
  color: var(--main-orange);
}
nav li a span {
  position: relative;
  display: block;
}
nav li a span:before {
  content: attr(data-clip);
  color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f59323;
  background-image: linear-gradient(135deg, #f59323 100%);
  -webkit-text-stroke: 3px transparent;
  -webkit-background-clip: text;
  z-index: 1;
  height: 0%;
  overflow: hidden;
  transition: 400ms linear 0s;
}
nav li:hover a span:before{
  height: 100%;
}
@media screen and (max-width:767px) {
  .header-row{
      padding: 30px;
  }
  nav li a{
      font-size: 30px;
  }
}
/* header  */

/* services page */
.servicesCards  {
  grid-template-columns: repeat(auto-fill , minmax(500px ,1fr));
  gap: 40px;
}
@media (max-width:1280px) {
  .servicesCards  {
  grid-template-columns: repeat(auto-fill , minmax(350px ,1fr));
}
}
@media (max-width:786px) {
  .servicesCards  {
  grid-template-columns: repeat(auto-fill , minmax(250px ,1fr));
  }
} 

.cardService .content {
  transition: 0.5s linear;
}

.cardService:hover .content {
  width: 100%;
  height: 100%;
backdrop-filter: blur(8px);
}

/* text animation on hover */
.rolling-text {
  display: inline-block;
  line-height: 75px;
  height: 72px;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  color: transparent;
}
.cardService:hover .letter,
.rolling-text.play .letter {
  transform: translateY(-100%);
}
.rolling-text .block:last-child {
  color: var(--main-orange);
}
.rolling-text .letter {
  display: inline-block;
  /* transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1); */
  transition: transform 0.9s cubic-bezier(0.79,-0.03,0.48,1.5);;
}


.letter:nth-child(1) {
  transition-delay: 0s;
}
.letter:nth-child(2) {
  transition-delay: 0.5;
}
.letter:nth-child(3) {
  transition-delay: 0.25s;
}
.letter:nth-child(4) {
  transition-delay: 0s;
}
.letter:nth-child(5) {
  transition-delay: 0.5s;
}
.letter:nth-child(6) {
  transition-delay: 0.25s;
}
.letter:nth-child(7) {
  transition-delay: 0s;
}
.letter:nth-child(8) {
  transition-delay: 0.5s;
}
.letter:nth-child(9) {
  transition-delay: 0.25;
}
.letter:nth-child(10) {
  transition-delay: 0s;
}
.letter:nth-child(11) {
  transition-delay: 0.5;
}
.letter:nth-child(12) {
  transition-delay: 0.25s;
}
.letter:nth-child(13) {
  transition-delay: 0s;
}
.letter:nth-child(14) {
  transition-delay: 0.5s;
}
.letter:nth-child(15) {
  transition-delay: 0.25;
}
.letter:nth-child(16) {
  transition-delay: 0s;
}
.letter:nth-child(17) {
  transition-delay: 0.5;
}
.letter:nth-child(18) {
  transition-delay: 0.25s;
}
.letter:nth-child(19) {
  transition-delay: 0s;
}
.letter:nth-child(20) {
  transition-delay: 0.5s;
}
.letter:nth-child(21) {
  transition-delay: 0.25;
}
.letter:nth-child(22) {
  transition-delay: 0s;
}
.letter:nth-child(23) {
  transition-delay: 0.5;
}
.letter:nth-child(24) {
  transition-delay: 0.25s;
}
/* services page */

/* loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #333;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.loader-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.loader .loader-wrapper img {
  width: 300px;
  margin-bottom: 50px;
  animation: fade linear 0.75s infinite;
}
@keyframes fade {
  from {
    opacity: 0.25;
  }
  to {
    opacity: 1;
  }
}
.loader-text {
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  text-align: center;
  color: #f2f2f2;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.loader-bar {
  margin-top: 18px;
  width: 95%;
  background-color: #ccc;
  height: 1px;
}

.loader-progress {
  height: 100%;
  width: 100%;
  display: block;
  background-color: #f59323;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
/* loader */

