@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}


body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: black;
}

html {
    font-size: 10px;
}


/*navigation bar*/
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #FC5C03;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease-in-out;
    margin-top: -14px;
  }
  
  .hidden {
    top: -100px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  
  .logo img {
    max-height: 50px;
  }
  
  .menu {
    flex: 1;
    padding-top: 30px;
  }
  
 
  .menu ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between;
  }
  
  .menu ol li {
    margin: 0 10px;
    
  }
  
  .menu-item {
    border: 1px solid #ffa777;
    border-radius: 10px;
    padding: 1px 10px 1px 10px; 
    /* background-color: #ffa777;  */
    background-color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

  .menu-item:hover {
    background-color: black;
    border: 1px solid black;
  }

  .menu ol li a {
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    color: black;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
    
  }
  
  .menu-item:hover a {
    color: white !important;
}
  
  .hamburgers {
    font-size: 20px;
    margin-top: 25px;
    float: right;
    display: none;
    cursor: pointer;
  }
.mobile-menu {
  display: none;
  position: fixed;
  top: 57px;
  left: 0;
  width: 100%;
  height: calc(100vh - 57px);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); /* 👈 Add this line */
  padding: 30px 20px;
  text-align: left;
  z-index: 1000;
}

.mobile-menu {
  border: 1px solid transparent; /* Force a new layer for rendering */
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ol {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.mobile-menu ol li {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); /* Thin line between items */
}

.mobile-menu ol li a {
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    color: black; /* Black text */
    font-weight: 500;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu ol li a span {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.5); /* Faded arrow */
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: black;
    cursor: pointer;
    font-weight: bold;
}



@keyframes slideUpFade {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}


  /* Responsive Styles */
  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #FC5C03;
      padding: 10px 0;
    }
  
    .menu.active {
      display: flex;
    }
  
    .menu ol {
      flex-direction: column;
      align-items: center;
    }
  
    .menu ol li {
      margin: 10px 0;
    }
  
    .hamburgers {
      display: block;
    }
  
    .logo {
      justify-content: space-between;
      width: 100%;
    }
  }

/*navigation bar end*/


/*-----------page-1------*/

main {
    width: 100%;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    justify-content: center;
    align-items: center;
    display: flex;    
}

.page-2 {
   margin-top: 15em;
   width: 100%;
   flex-direction: column;
   justify-content: center;
   display: flex;
   align-items: center;
   
   color: #FC5C03;
}

.text-container{
    width: 70%;
    height: fit-content;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 10em;
}

.text-container h3 {
    font-size: 2rem;
    margin-bottom: 0.5em;
    font-weight: 300;
    color: gray;
}

.text-container h1 {
    font-size: 8rem;
    font-weight: 500;
    margin-bottom: .5em;
}

.text-container p {
    font-size: 1.5rem;
}

/*--work-contianer--*/

.work-container {
    width: 100%;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    display: flex;
    margin-bottom: 8em;
    flex-wrap: wrap;

}

.img-container {
    
    width: 49%;
    border-radius: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-bottom: 10px;    
}

.img-container img {
    border-radius: 1em;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: transform 0.3s ease; */
}

/* .img-container:hover img {
    transform: scale(1.1); /*Zooms the image by 10% on hover}*/
   
 
@media (max-width: 1024px) {
    .page-2 {
        margin-top: 15em !important;
    }
}

.img-container video {
    border-radius: 1em;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.work-container .hover-effect {
    
    margin-top: 2%;
    width: 15%;
    border-radius: .5em;
    padding: 1em 2.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background-color 0.5s ease;
    background-color: white;
    color: black;
}

.hover-effect:hover {
    background-color: rgb(181, 181, 181);
}

.work-container button p {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: black;
}
/*--BRAND IDENTITY-- START*/
.slider-text{
    margin-top: 8px;
    padding-bottom: 10px;
}

.slider-text h1 {
    font-size: 25px;
    font-weight: 500;
    padding-top: 10px;
    color: black;
}

.slider-text p {
    margin-top: 15px;
    font-size: 15px; 
    margin-bottom: 10px;  
}

.slider-text .highlight {
    padding: 8px;
    border-radius: 10px;
    background-color: rgb(230, 230, 230);
    color: rgb(0, 0, 0);
    margin-right: 10px; 
}

/*--BRAND IDENTITY-- END*/


/* Responsive styling for mobile devices */
@media only screen and (max-width: 600px) {
    .page-2 {
        margin-top: 30em;
    }
    .img-container {
        width: 95%; /* Full width for single column layout */
        margin-bottom: 1em; /* Add spacing between items if needed */
    }
}


/*---animating element movement----*/

.anim-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
}

.anim-slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

/*------end----------*/


/*---------page-4---------*/

.page-4 {
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FC5C03;
    flex-direction: column;
    background-image: url('/images/patterns/About-hero.svg'); /* Replace 'path_to_your_image.jpg' with your image file path */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image within the container */
}

/* Container for centering the button */

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 3em;
}

/* Creative Button Styles */
.creative-button {
    font-family: 'Space Grotesk', sans-serif;
    padding: 1.5em 3.0em;
    font-size: 1.6em;
    color: white;
    background-color: #FC5C03;
    border: 0.2em solid transparent;
    border-radius: 5em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    text-decoration: none; /* Remove underline */
}

.creative-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.4s ease;
    z-index: -1;
}

.creative-button:hover {
    color: #FC5C03;
    border-color: #FC5C03;
}

.creative-button:hover::before {
    left: 0;
}

/* Additional animation */

.creative-button:hover {
    transform: scale(1.05);
    text-decoration: none; /* Remove underline */
}

.creative-button::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.4s ease;
    z-index: -1;
    text-decoration: none; /* Remove underline */
}

.creative-button:hover::after {
    right: 0;
}

.cta-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-one {
    margin-right: 1em;
}

.cta-two {
    margin-left: 1em;
}

.cta-2{
    background-color: white;
    color: #FC5C03;
    padding: 1.5em 3em;
    font-size: 2em;
}

.cta-2::before {
    background-color: #FC5C03;
}

.cta-2:hover{
    color: white;
    border-color: white;
}

.cta-2::after {
    background-color: #FC5C03;
}

/*--button-end---*/


.page-container {
    width: 60%;
    display: flex;
    margin-top: 5em;
    
}

.media-container-1 {
    width: 100%;
    display: flex;
}

.page4-text-container {
    width: 100%;
    justify-content: space-around;
    text-align: center;
}

.page4-text-container h2 {
    margin-bottom: 2em;
    text-decoration: none;
}


.page4-text-container a {
    position: relative;
    text-decoration: none;
    font-size: 3.5rem;
    font-weight: 200;
    letter-spacing: .2em;
    color: white;
    text-decoration: none;
}

.page4-text-container a:hover {
    text-decoration: none;
    color: white;
}

.page4-text-container  a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
    text-decoration: none;
}
.page4-text-container a:hover::after {
    visibility: visible;
    transform: scaleX(1);
    animation: animate__fadeIn 0.3s;
    animation-fill-mode: forwards;
    text-decoration: none;
}


.footer {
    margin-top: 4em;
}

.footer p {
    font-size: 2em;
    color: white;
}

@media only screen and (max-width: 900px) {
    /*--last-page*/
    .page-4 .page-container {
        flex-direction: column;
    }
    .page-4 .media-container-1 {
        width: 100%;
        margin-bottom: 3em;
    }
    .page-4 .logo p {
        letter-spacing: .1em;
    }
    /*--screen-size--nav-bar--*/
}







@media only screen and (max-width: 1300px) {
    .text-container {
        width: 80%;
    }
    .work-container {
        width: 100%;
    }
}

/*-----screen-size----**/
  
@media only screen and (min-width: 100px) and (max-width: 199px) {
    html {
        font-size: 3px;
    }
}

@media only screen and (min-width: 200px) and (max-width: 399px) {
    html {
        font-size: 4px;
    }
}

@media only screen and (min-width: 400px) and (max-width: 599px) {
    html {
        font-size: 6px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 799px) {
    html {
        font-size: 7px;
    }
}

@media only screen and (min-width: 799px) and (max-width: 899px) {
    html {
        font-size: 7.5px;
    }
}

@media only screen and (min-width: 899px) and (max-width: 1100px) {
    html {
        font-size: 8px;
    }
}

@media only screen and (min-width: 1100px) and (max-width: 1399px) {
    html {
        font-size: 8.5px;
    }
}

@media only screen and (min-width: 1399px) and (max-width: 1599px) {
    html {
        font-size: 9px;
    }
}













/*--screen-size--

@media (min-width: 4150px) {
    html {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    html {
        font-size: 10px;
    }
}


@media (max-width: 920px) {
    html {
        font-size: 7px;
    }
}

@media (max-width: 800px) {
    html {
        font-size: 5px;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 4px;
    }
}

@media (max-width: 400px) {
    html {
        font-size: 2px;
    }
}