 * {
     font-family: "Poppins", sans-serif;
     margin: 0;
     padding: 0;
     box-sizing: border-box;

 }


 .left-icons {
     opacity: 0.2;
     font-size: 12px;
 }

 .fa-brands {
     padding-left: 15px;
 }

 .fa-solid {
     padding-left: 15px;
 }

 .top-bar {
     height: 45px;
     border-bottom: 0.2px solid rgba(128, 128, 128, 0.115);
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 55%;

 }

 .right-btn {
     background-color: #FAB700;
     border: 0.2px solid rgba(128, 128, 128, 0.388);
     padding-top: 7px;
     border: none;
     padding-bottom: 8px;
     padding-left: 15px;
     padding-right: 15px;
     font-size: 12px;
     font-weight: 600;
     color: white;
     border-radius: 3px;
     transition: background-color 0.3s ease-in-out;
     cursor: pointer;
 }

 .right-btn:hover {
     background-color: white;
     color: black;
 }

 .languages {
     background-color: rgba(128, 128, 128, 0.118);
     padding-top: 7px;
     padding-bottom: 8px;
     padding-left: 15px;
     padding-right: 15px;
     font-size: 12px;
     font-weight: 600;
     color: rgba(128, 128, 128, 0.892);
     border-radius: 3px;
     border: none;
 }

 .nav-bar {
     height: 100px;
     /* background-color: grey; */
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 500;
     gap: 31%;

 }

 .nav-bar i {
     transition: color 0.3s ease-in-out;
 }

 .menu {
     display: flex;
 }

 .menu li {
     display: inline-flex;
     font-size: 12px;
     padding-left: 30px;
     transition: color 0.3s ease-in-out;

 }

 .fa-magnifying-glass {
     padding-left: 30px;
     font-size: 12px;
 }

 .menulist:hover {
     color: #FAB700;
     cursor: pointer;
 }

 .main-home {
     background-image: url('./img/home-banner.jpg.webp');
     height: 700px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     color: #fff;
 }

 .main-home h3 {
     font-size: 56px;
 }

 .main-home p {
     font-size: 14px;
     font-family: "Roboto", sans-serif;
     font-weight: normal;
     margin: 20px 0 0px 0;
 }

 .main-home h3 span {
     background-color: #e6b639;
     border: 5px;
     border-radius: 5px;
     padding: 3px;
 }

 .black_btn {
     padding: 0px 44px;
     line-height: 50px;
     background: #222222;
     color: #fab700;
     display: inline-block;
     border-radius: 5px;
     font-size: 13px;
     font-family: "Roboto", sans-serif;
     font-weight: 500;
     -webkit-transition: all 300ms linear 0s;
     -o-transition: all 300ms linear 0s;
     transition: all 300ms linear 0s;
     text-decoration: none;
     margin-top: 40px;
 }

 .black_btn:hover {
     background: #FAB700;
     color: #222222;
 }

 .third-part {
     text-align: center;
     max-width: 720px;
     margin: 0px auto 75px;
     padding: 100px 0 12px 0;
 }


 .third-part p {
     font-size: 14px;
     font-family: "Roboto", sans-serif;
     font-weight: normal;
     line-height: 24px;
     color: #777777;
     margin-bottom: 0px;
 }

 .third-part h2 {
     font-family: "Oswald", sans-serif;
     font-size: 36px;
     color: #222222;
     margin-bottom: 12px;
 }

 .services_item {
     max-width: 300px;
     justify-content: center;
     align-items: center;
     font-family: "Oswald", sans-serif;
     height: 280px;
     display: flex;
     flex-direction: column;
     text-align: center;
     padding: 20px;
     text-decoration: none;
     border-radius: 5px;
     transition: box-shadow 0.3s ease-in-out;

 }

 .services_item:hover {
     -webkit-box-shadow: 0px 0px 16px -5px rgba(0, 0, 0, 0.34);
     -moz-box-shadow: 0px 0px 16px -5px rgba(0, 0, 0, 0.34);
     box-shadow: 0px 0px 16px -5px rgba(0, 0, 0, 0.34);
 }

 .services_item img {
     margin-bottom: px;
 }

 .services_item h4 {
     font-size: 20px;
     margin-bottom: 10px;
     font-family: "Oswald", sans-serif;
     text-decoration: none;
     color: #222222;
 }

 .services_item a {
     text-decoration: none !important;
 }

 .services_item p {
     font-size: 14px;
     color: #777777;
 }

 .row {
     display: flex;
 }

 .services_inner {
     width: 100%;
     align-items: center;
     justify-content: center;
     gap: 25px;
 }

 .projects-section {
     text-align: center;
     padding: 50px 0px;
 }

 .section-title {
     font-family: "Oswald", sans-serif;
     font-size: 36px;
     color: #222222;
     margin-bottom: 12px;
     font-weight: 500;
 }

 .section-subtitle {
     font-size: 14px;
     font-family: "Roboto", sans-serif;
     font-weight: normal;
     line-height: 24px;
     color: #777777;
     margin-bottom: 65px;
 }

 .projects-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 0;
 }

 .project-item {
     position: relative;
     overflow: hidden;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .project-item img {
     width: 100%;
     height: auto;
     display: block;
     transition: transform 0.3s ease;
 }

 .overlay {
     position: absolute;
     background-color: #fab700d1;
     height: 90%;
     width: 90%;
     padding-top: 20vh;
     opacity: 0;
     /* transition: opacity 0.3s ease;
    transition: width 0.3s ease;
    transition: height 0.3s ease; */
     transition: all 0.3s ease;
 }

 .project-item .overlay h4 {
     font-family: "Oswald", sans-serif;
     font-size: 20px;
     color: #222222;
     margin-bottom: 0px;
     font-weight: 500;
 }

 .project-item .overlay p {
     font-size: 14px;
     font-family: "Roboto", sans-serif;
     font-weight: normal;
     line-height: 14px;
     color: #222222;
     margin-bottom: 65px;
 }

 .project-item:hover .overlay {
     opacity: 1;
     height: 100%;
     width: 100%;
 }

 .fifth-part h2 {
     font-family: "Oswald", sans-serif;
     font-size: 36px;
     color: #222222;
     margin-bottom: 12px;
     font-weight: 500;
 }

 .fifth-part p {
     font-size: 14px;
     font-family: "Roboto", sans-serif;
     font-weight: normal;
     line-height: 24px;
     color: #777777;
     margin-bottom: 65px;
 }

 .fifth-part {
     text-align: center;
     max-width: 720px;
     margin: 0px auto 75px;
     padding: 100px 0 12px 0;
 }

 .team-section {
     text-align: center;
     padding: 50px 20px;
 }

 .team-grid {
     display: flex;
     justify-content: space-between;
     padding: 0 40px;
     gap: 10px;
 }

 .team-member {
     position: relative;
     overflow: hidden;
     text-align: center;
     max-width: 70%;
 }

 .team-member img {
     width: 75%;
     height: auto;
     display: block;
     transition: transform 0.3s ease;
 }

 .team-member h4 {
     font-size: 1.2em;
     margin-top: 15px;
 }

 .team-member p {
     font-size: 1em;
     color: #666;
 }

 .team-member .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 75%;
     height: 50.5%;
     background: rgba(255, 165, 0, 0.9);
     opacity: 0;
     z-index: 1;
     display: flex;
     justify-content: center;
     align-items: center;
     transition: opacity 0.3s ease;
 }


 .team-member:hover .overlay {
     opacity: 1;
 }

 .social-icons {
     display: flex;
     gap: 10px;
 }

 .social-icons i {
     font-size: 1.5em;
     color: white;
 }


 .stats-section {
     background-color: #FAB700;
     padding: 80px 0;
     text-align: center;
 }

 .stats-container {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 30px;
 }

 .stats-item {
     color: black;
     text-align: center;
     flex: 1;
     min-width: 150px;
 }

 .stats-item h2 {
     font-size: 48px;
     margin-left: -15%;
     margin-bottom: 0;
     font-family: "Oswald", sans-serif;


 }

 .stats-item p {
     font-size: 14px;
     margin: 10px 0 50px;
     font-family: "Roboto", sans-serif;

 }

 .seventh-part h2 {
     font-family: "Oswald", sans-serif;
     font-size: 36px;
     color: #222222;
     margin-bottom: 12px;
     font-weight: 500;
 }

 .seventh-part p {
     font-size: 14px;
     font-family: "Roboto", sans-serif;
     font-weight: normal;
     line-height: 24px;
     color: #777777;
     margin-bottom: 65px;
 }

 .seventh-part {
     text-align: center;
     max-width: 720px;
     margin: 0px auto 75px;
     padding: 100px 0 12px 0;
 }

 .footer {
     background-color: #222;
     color: #fff;
     padding: 40px 20px;
 }

 .footer-container {
     display: flex;
     justify-content: space-between;
     gap: 20px;
     flex-wrap: wrap;
 }

 .footer-column {
     flex: 1;
     min-width: 250px;
 }

 .footer-column h3 {
     font-size: 18px;
     margin-bottom: 10px;
     font-weight: bold;
 }

 .footer-column p {
     font-size: 14px;
     line-height: 1.6;
     color: #aaa;
 }

 .phone-number {
     color: #f7c843;
     font-weight: bold;
 }

 .newsletter {
     display: flex;
     gap: 5px;
     margin-top: 10px;
 }

 .newsletter input {
     padding: 10px;
     border: none;
     border-radius: 5px;
     width: 70%;
 }

 .newsletter button {
     background-color: #f7c843;
     border: none;
     border-radius: 5px;
     color: #000;
     font-size: 18px;
     padding: 10px 15px;
     cursor: pointer;
 }

 .newsletter button:hover {
     background-color: #e6b639;
 }

 .footer-bottom {
     margin-top: 20px;
     text-align: center;
 }

 .footer-bottom p {
     font-size: 14px;
     color: #aaa;
 }

 .footer-bottom .love {
     color: red;
 }

 .footer-bottom a {
     color: #f7c843;
     text-decoration: none;
 }

 .footer-bottom a:hover {
     text-decoration: underline;
 }

 .social-icons {
     margin-top: 10px;
 }

 .social-icons a {
     color: #fff;
     margin: 0 5px;
     font-size: 18px;
     text-decoration: none;
 }

 .social-icons a:hover {
     color: #f7c843;
 }