@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;    
}

/*--head-text-container--*/

.uiux-container {
    width: 100%;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.landing-text {
    width: 100%;
    height: 90vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/images/patterns/Services-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 */
}

.landing-text-container {
    width: 100%;
}

.landing-text-container, .text-1, .text-2, .text-3 {
    width: 90%;
}

.landing-text-container .text-1 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: .4em;
}

.landing-text-container .text-2 {
    margin-top: .4em;
    margin-bottom: .4em;
    font-size: 8rem;
    font-weight: 500;
}

.landing-text-container .text-3 {
    font-size: 2rem;
    width: 60%;
    font-weight: 300;
    color: grey;
}

.orange {
    color: #FC5C03;
}

@media (max-width: 1024px) {
    .landing-text {
        background-image:none;
    }
}
/*----end---*/

/*---ux-container---*/

.ux-container {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5vw; /* Responsive padding */
    gap: 2rem;
    flex-wrap: wrap;
}

.ux-container-2 {
    margin-top: 5em;
}

.ux-text-container {
    width: 33%;
}

.ux-h1 {
    font-size: 6em;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.ux-p {
    font-size: 2.7em;
    color:rgb(5, 4, 17);
    margin-bottom: 1.5em;
}

.uxlist {
    font-size: 2.5rem;
    color: rgb(5, 4, 17);
    font-weight: 600;
    margin-left: -1px;
}

.uxlist li {
    margin: 13px 0;
}

.ux-img {
    position: relative;
    width: 53%;
    
    border-radius: 2em;
    padding-bottom: 40.25%; /* 16:9 aspect ratio */
}


.ux-img .img-container-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.ux-img .img-container-2 .image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 1.5em;
  }

  @media (max-width: 1024px) {
    .ux-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        
    }

    .ux-text-container {
        width: 90%;
    }

    .ux-img {
        width: 90%;
    }
}

@media (max-width: 768px) {

    /* .ux-container {
        margin-top: -5em;
    } */

    .ux-h1 {
        font-size: 6em;
    }

    .ux-p, .uxlist {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .ux-h1 {
        font-size: 5em;
    }

    .ux-p, .uxlist {
        font-size: 2.5em;
    }

    .ux-img {
        width: 100%;
    }
}

/*---end---*/

/*--web-services---*/

.web-services{
    margin-top: 20em;
    width: 85%;
    text-align: center; /* Center align text */
    margin-left: auto;
    margin-right: auto;
}

.web-h1 {
    font-size: 5.0rem;
    font-weight: 500;
    margin-bottom: .5em;
}

.web-h2 {
    font-size: 2.0rem;
    font-weight: 300;
    margin-bottom: 3em;
    color: grey;
}
.web-services-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem; /* Add some padding if needed */
}

.web-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4em;
    flex-wrap: wrap; /* Allows items to wrap */
    gap: 1rem; /* Adds spacing between elements */
    flex-wrap: wrap; /* Allow wrapping of items */
}

.web-coloum {
    width: 24%; /* For larger screens */
    height: 30vh;
    border: 1px solid #efefef;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 300;
    background: #F5F5F5;
    transition: 0.3s ease-in-out;
}

.web-row p {
    font-size: 2rem;
}

/* Responsive styling for mobile devices */
@media (max-width: 1024px) {
    .web-services {
        margin-top: 10em;
        width: 90%;
    }

    .web-row {
        justify-content: space-between; /* Ensures equal spacing */
    }

    .web-coloum {
        width: 23%; /* Four columns in a row */
        height: 25vh;
    }
}


@media (max-width: 768px) {
    .web-services {
        margin-top: 7em;
        width: 95%;
    }

    .web-coloum {
        width: 45%; /* Two columns for smaller tablets */
        height: 22vh;
    }
}

@media (max-width: 480px) {
    .web-services {
        margin-top: 5em;
    }

    .web-row {
        flex-direction: column;
        gap: 1rem;
    }

    .web-coloum {
        width: 100%; /* Full width for mobile */
        height: 18vh;
    }

    .web-row p {
        font-size: 2.3rem !important;
    }
}




/*--container-altering--*/

/*--container-altering--*/

.web-coloum:hover {
    background-color: #FC5C03;
    color: white;
    font-weight: 500;
    background-image: url('/images/patterns/Services-boxes.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 */
}



/*---------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--*/
}




/*------end-----*/


/*--screen-size--nav-bar--*/



/*------end----*/



@media only screen and (max-width: 1000px) {
    
    .ux-text-container {
        margin-bottom: 5em;
    }
    .ux-h1 {
        margin-bottom: .5em;
    }
    .ux-container {
        flex-direction: column;
    }
    .ux-text-container {
        width: 100%;
    }
    .ux-img {
        width: 100%;
        padding-bottom: 53%;
    }
}







@media only screen and (max-width: 700px) {
    .inside-container .row-1 {
        flex-direction: column;
        margin: 0;
    }
    .inside-container .row-1 .coloum-1 {
        margin-bottom: 5em;
        width: 100%;
    }
}


















/*-----screen-size----**/
  
@media only screen and (min-width: 100px) and (max-width: 199px) {
    html {
        font-size: 4px;
    }
}

@media only screen and (min-width: 200px) and (max-width: 399px) {
    html {
        font-size: 5px;
    }
}

@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;
    }
}


@media only screen and (min-width: 100px) and (max-width: 199px) {
    .web-coloum p {
        font-size: 4px;
    }
}

@media only screen and (min-width: 200px) and (max-width: 450px) {
    .web-coloum p {
        font-size: 5px;
    }
}




















/*--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;
    }
}