@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;
}


/*---logo---*/

.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;
}

  .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 ol li a:hover {
     color: #fff; 
  }
  
  .hamburgers {
    font-size: 20px;
    margin-top: 25px;
    float: right;
    display: none;
    cursor: pointer;
  }
  
  /* 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*/
/*--end-nav---*/

/*---landing-page---*/

main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255, 255, 255);
    flex-direction: column;
}

.head-container {
    margin-top: 24em;
    width: 80%;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 5em;
}

.text-container h1 {
    font-size: 8rem;
    margin-bottom: .5em;
}



.info-container {
    display: flex;
    justify-content: space-around;
}

.info-container h2 {
    font-size: 2rem;
    margin-bottom: .5em;
}

.info-container p {
    font-size: 2rem;
    color: grey;
}

@media (max-width: 1024px) {
    .head-container {
        margin-top: 15em !important;
    }    
}



/*--images----*/

.images {
    margin-top: 10em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}


/*--head-img--*/
.head-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 4em;
}

.head-img img{
    width: 100%;
}

.head-video {
    width: 100%;
}
/*--end--*/

/*--service-text-container--*/
.service-text-container {
    width: 90%;
    margin-top: 15em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 15em;
}

.service-text-container h1 {
    font-size: 2rem;
    margin-bottom: .5em;
}

.service-text-container p {
    font-size: 6.4rem;
    margin-bottom: .5em;
}
/*--end--*/

.img-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;    
    margin-bottom: 4em;
}

.img-1 img {
    width: 95%;
}

.img-1 video {
    width: 95%;
}


/*----next-project----*/

.next-project {
    width: 95%;
    position: relative;
    display: inline-block; /* or block if it should take full width */
    overflow: hidden; /* Ensure content doesn't spill out */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Transition for glow and scale effect */
    margin-bottom: 4em;
}

.next-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust color and transparency */
    z-index: 1; /* Places the overlay above the image */
}

.next-project-img {
    display: block;
    width: 100%;
    height: auto; /* Keeps the image aspect ratio */
    position: relative; /* Ensures it remains beneath the overlay */
    z-index: 0; /* Ensure the image stays behind the overlay */
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 7rem; /* Adjust size as needed */
    font-weight: bold;
    z-index: 2; /* Ensures the text is above the overlay */
    text-align: center;
    pointer-events: none; /* Prevents text from interfering with hover events */
}

.next-project:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); /* Glow effect on hover */
    transform: scale(1.05); /* Scale the section on hover */
}

.next-project:hover .overlay-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.8);
}

.overlay-text i {
    margin-left: 10px; /* Space between text and icon */
    font-size: 7rem; /* Match size with text */
    transition: transform 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.next-project:hover .overlay-text i {
    transform: translateX(5px); /* Move the arrow slightly on hover */
}



/*--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--*/
}



/*---screen-size----*/

@media only screen and (max-width: 700px) {
    .head-container {
        margin-top: 40em;
        width: 90%;       
    }
    
}


/*--screen-size--nav-bar--*/





/*-----screen-size----**/
  
@media only screen and (min-width: 100px) and (max-width: 199px) {
    html {
        font-size: 2px;
    }
}

@media only screen and (min-width: 200px) and (max-width: 399px) {
    html {
        font-size: 3px;
    }
}

@media only screen and (min-width: 400px) and (max-width: 599px) {
    html {
        font-size: 5.5px;
    }
}

@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: 8px;
    }
}

@media only screen and (min-width: 899px) and (max-width: 1100px) {
    html {
        font-size: 6px;
    }
}

@media only screen and (min-width: 1100px) and (max-width: 1399px) {
    html {
        font-size: 7px;
    }
}

@media only screen and (min-width: 1399px) and (max-width: 1599px) {
    html {
        font-size: 8px;
    }
}


