@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Platypi:ital,wght@0,300..800;1,300..800&display=swap');
html{
     font-family: "Platypi", serif;
     margin: 0 auto;
     padding: 0;
}
body{
     font-family: "Platypi", serif;
     margin: 0 auto;
     padding: 0;
     background-color: #f0f0f0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.banner_section {
  background: linear-gradient(
      rgba(0, 0, 0, 0.4),  /* top gradient color with opacity */
      rgba(0, 0, 0, 0.4)   /* bottom gradient color with opacity */
    ),
    url('../images/commerical_interior.jpg') center center / cover no-repeat;
  position: center center;
  background-repeat: no-repeat;
  height: 100vh;
  background-size: cover;
  padding: 5rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: center;
}
.Elevatorsbanner_section {
  background: linear-gradient(
      rgba(0, 0, 0, 0.4),  /* top gradient color with opacity */
      rgba(0, 0, 0, 0.4)   /* bottom gradient color with opacity */
    ),
    url('../images/elevators_banner.jpg') center center / cover no-repeat;
  position: center center;
  background-repeat: no-repeat;
  height: 100vh;
  background-size: cover;
  padding: 5rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: center;
}
.hero_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    color: #fff;
  
}
.hero_content h1{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}
.hero_content p{
    font-size: 1.2rem;
    color: #ffffff; /* gray-600 */
    
}
.hero_content div{
    text-align: start;
}
.hero_container{
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
}
.header_container {
  max-width: 800px;
}
.hero_container .hero_line div {
    width: 0.8rem;
    height: 100%;
    background-color: #D5AF32;
}
.header_container h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff; /* near-black */
  margin-bottom: 1rem;
  text-align: start;
}
.header_main_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.description_container p {
  font-size: 1.2rem;
  color: #ffffff; /* gray-600 */
  margin-bottom: 2rem;
}

.btn_containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}

.btn_gtSt button,
.btn_cntct button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn_gtSt button {
  background-color: #D5AF32;
  color: white;
}

.btn_gtSt button:hover {
  background-color: #D5AF32;
}

.btn_cntct button {
  background-color: transparent;
  color: #D5AF32;
  border: 2px solid #D5AF32;
}

.btn_cntct button:hover {
  background-color: #D5AF32;
  color: white;
}
.video_frame {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9; /* Maintains 16:9 aspect ratio */
  background: #000;
}

.video_frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .header_container h1 {
    font-size: 2rem;
  }

  .description_container p {
    font-size: 1rem;
  }
}

.canvas_fullscreen {
  display: block;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.how_it_works {
  /* padding: 40px; */
  background: linear-gradient(0deg, #FBE089 0%, #FFFFFF 100%);
}

.how_it_works .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
}
.second_header h2{
  font-size: 36px;
  font-weight: 700;
}
.how_it_works_container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
}

.how_it_works_container .how_it_works_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  margin-bottom: 40px;
  padding: 25px 16px;
  background-color: #fff;
  border-radius: 24px;
  gap: 1rem;
  flex: 1;
}

.how_it_works_item .info_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  gap: 0.8rem;
}

.how_it_works_item .info_container p {
  text-align: start;
}

/* Responsive Design */

/* Tablet - Medium screens */
@media (max-width: 768px) {
  .how_it_works {
    padding: 30px 20px;
  }
  
  .how_it_works .container {
    gap: 1.5rem;
  }
  
  .how_it_works_container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .how_it_works_container .how_it_works_item {
    margin-bottom: 20px;
    padding: 20px 16px;
  }
}

/* Mobile - Small screens */
@media (max-width: 480px) {
  .how_it_works {
    padding: 20px 15px;
  }
  
  .how_it_works .container {
    gap: 1rem;
  }
  
  .how_it_works_container {
    gap: 1rem;
  }
  
  .how_it_works_container .how_it_works_item {
    margin-bottom: 15px;
    padding: 20px 12px;
    border-radius: 16px;
  }
  
  .how_it_works_item .info_container {
    gap: 0.6rem;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  /* .how_it_works {
    padding: 60px 40px;
  } */
  
  .how_it_works .container {
    gap: 3rem;
  }
  
  .how_it_works_container {
    gap: 3rem;
  }
  
  .how_it_works_container .how_it_works_item {
    padding: 30px 20px;
  }
}
  .service_container {
           background: linear-gradient(135deg, #E6C456 0%, #F4E2A3 100%);
   
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100%;
        }
       .inner_container{
        display: flex;
       }
        .main_ServiceContainer {
    max-width: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    z-index: 2;
    flex-direction: column;
    padding: 2rem;
}

.logo_hero{
      width: 50%;
    background-color: #d5af32;
    display: flex;
    align-items: center;
    justify-content: center;
}

        .header_section {
            flex: 1;
            max-width: 500px;
        }

        .header_container {
            margin-bottom: 40px;
        }

        .text-wrapper h2 {
            font-size: 4rem;
            font-weight: 700;
            color: #2C2C2C;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .we-design-and-craft {
            font-size: 1.25rem;
            color: #2C2C2C;
            line-height: 1.6;
            opacity: 0.8;
        }

        .btn_gtSt button {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            color: #2C2C2C;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .btn_gtSt button:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .inner_Container {
            flex: 1;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .servc_ct {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 2px solid rgba(44, 44, 44, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .servc_ct:hover {
            padding-left: 20px;
            border-bottom-color: #2C2C2C;
        }

        .servc_ct:hover .text-wrapper-4 {
            transform: translate(5px, -5px);
            background: #ffe9a0;
            color: #E6C456;
        }

        .text-wrapper-3 {
            font-size: 2rem;
            font-weight: 600;
            color: #2C2C2C;
            line-height: 1.2;
        }

        .text-wrapper-4 {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .text-wrapper-4 i {
            font-size: 1.2rem;
            color: #2C2C2C;
            transition: color 0.3s ease;
        }

       
      
        /* Responsive Design */
        @media (max-width: 1024px) {
            .main_ServiceContainer {
                flex-direction: column;
                gap: 60px;
            }

            .text-wrapper h2 {
                font-size: 3rem;
            }

            .text-wrapper-3 {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 768px) {
            .service_container {
                padding: 60px 20px;
            }

            .text-wrapper h2 {
                font-size: 2.5rem;
            }

            .text-wrapper-3 {
                font-size: 1.5rem;
            }

            .servc_ct {
                padding: 20px 0;
            }

            .text-wrapper-4 {
                width: 45px;
                height: 45px;
            }

            .geometric-shape-1,
            .geometric-shape-2,
            .geometric-shape-3 {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .service_container {
                padding: 40px 15px;
            }

            .text-wrapper h2 {
                font-size: 2rem;
            }

            .we-design-and-craft {
                font-size: 1.1rem;
            }

            .text-wrapper-3 {
                font-size: 1.25rem;
            }

            .btn_gtSt button {
                padding: 14px 28px;
                font-size: 0.9rem;
            }
        }
        /* Tablet styles */
@media (max-width: 768px) {
  .header_container {
    max-width: 100%;
    padding: 0 1.5rem;
  }
  
  .header_container h1 {
    font-size: 2rem;
    text-align: center;
  }
  
  .header_main_container {
    align-items: center;
    text-align: center;
  }
  
  .description_container p {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .btn_containers {
    justify-content: center;
    flex-direction: row;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .header_container {
    padding: 0 1rem;
  }
  
  .header_container h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .description_container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn_containers {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  
  .btn_gtSt button,
  .btn_cntct button {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    min-width: unset;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .header_container {
    max-width: 900px;
  }
  
  .header_container h1 {
    font-size: 3rem;
  }
  
  .description_container p {
    font-size: 1.3rem;
  }
}

/* Extra small screens */
@media (max-width: 320px) {
  .header_container {
    padding: 0 0.75rem;
  }
  
  .header_container h1 {
    font-size: 1.5rem;
  }
  
  .description_container p {
    font-size: 0.9rem;
  }
  
  .btn_gtSt button,
  .btn_cntct button {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
}