body {
    margin: 0;
    line-height: 140%;
    font-family: 'Lato', sans-serif;
  }
  
  .header {
    background: #f8f8f8;
    border-bottom: 5px solid #ff5a0e;
  }
  a{
    color: inherit;
    text-decoration: none;
  }
 .header .container {
    display: flex;
    max-width: 1140px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 15px;
  }
  .container{
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto;
  }
  .logo {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .header__icon {
    color: #ff5a0e;
    font-size: 30px;
  }
  
  .header__info {
    display: flex;
    gap: 30px;
    font-size: 14px;
    align-items: center;
  }
  
  .header__info i {
    color: #ff5a0e;
    margin-right: 5px;
    font-size: 30px;
  }
  
  .header__info b {
    font-weight: bold;
  }
  
  .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .burger span {
    width: 25px;
    height: 3px;
    background: black;
  }
  
  .navbar {
    background: #ff5a0e;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 30px 0;
    margin: 0;
    flex-wrap: wrap;
  }
  
  .navbar li {
    margin: 0 15px;
  }
  
  .navbar a {
    color: white;
    font-weight: bold;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .contact-info {
      display: none;
    }
  
    .burger {
      display: flex;
    }
  
    .navbar {
      display: none;
      flex-direction: column;
    }
  
    .navbar.active {
      display: flex;
    }
  
    .navbar ul {
      flex-direction: column;
      align-items: center;
    }
  
    .navbar li {
      margin: 10px 0;
    }
  }
  .header__info-content{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0px;
  }
  .header__info-tem{
    display: flex;
    gap: 10px;
align-items: center;
  }
  .hero__slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero__slide {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .hero__slide.active {
    display: flex;
  }
  
  .hero__content {
    color: white;
    text-align: center;
    font-size: 40px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 300;
  }
  
  .hero__content strong {
    font-weight: 700;
  }
  
  .hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 30px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 2;
  }
  
  .hero__nav.prev {
    left: 10px;
  }
  
  .hero__nav.next {
    right: 10px;
  }
  
  @media (max-width: 768px) {
    .hero__content {
      font-size: 26px;
      padding: 0 20px;
    }
}
.what-we-do {
    text-align: center;
    padding: 60px 20px;
  }
  
  .what-we-do__subtitle {
    color: #ff5722;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  .what-we-do__title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 40px;
  }
  
  .what-we-do__title strong {
    font-weight: 700;
  }
  
  .what-we-do__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    background: #eee;
  }
  
  .what-we-do__item {
    position: relative;
    background: #fff;
    padding: 30px;
    text-align: left;
    transition: box-shadow 0.3s ease;
  }
  
  .what-we-do__item:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }
  
  .what-we-do__icon {
    font-size: 40px;
    color: #ff5722;
  }
  
  .what-we-do__heading {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 10px;
  }
  
  .what-we-do__text {
    font-size: 14px;
    color: #666;
  }
  
  .what-we-do__number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    color: #eee;
    font-weight: bold;
  }
  .why-choose-us {
    background-color: #0b1b2a;
    color: #fff;
    padding: 60px 20px;
  }
  
  .why-choose-us__container {
    display: flex;
   
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .why-choose-us__image {
    flex: 1 1 50%;
  }
  
  .why-choose-us__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .why-choose-us__content {
    flex: 1 1 50%;
    padding: 40px;
  }
  
  .why-choose-us__subtitle {
    color: #ff4a24;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .why-choose-us__title {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 20px;
  }
  
  .why-choose-us__title strong {
    font-weight: 700;
  }
  
  .why-choose-us__text {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .why-choose-us__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .why-choose-us__feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .why-choose-us__feature i {
    font-size: 36px;
    color: #ff4a24;
    min-width: 36px;
  }
  
  .why-choose-us__feature h4 {
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: bold;
  }
  
  .why-choose-us__feature p {
    margin: 0;
    color: #ccc;
  }
  .quote {
    background: #fff;
    padding: 50px 0;
  }
  .quote__container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .quote__image {
    flex: 1;
    padding: 0px;
  }
  .quote__image img {
    max-width: 100%;
    height: 507px;
    width: 100%;
    object-fit: cover;
  }
  .quote__form {
    flex: 1;
    background: #000;
    padding: 40px;
    color: #fff;
  }
  .quote__title {
    color: #ff4d00;
    margin-bottom: 10px;
    font-size: 18px;
  }
  .quote__subtitle {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .quote__row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  .quote__row input {
    flex: 1;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    color: #fff;
  }
  .quote__form textarea {
    width: 100%;
    padding: 12px;
    height: 80px;
    margin-bottom: 20px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #fff;
  }
  .quote__form button {
    background: #ff4d00;
    color: #fff;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
  }
  .quote__form input::placeholder,
  .quote__form textarea::placeholder {
    color: #ccc;
  }
  .projects {
    background: #0a1429;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  .projects__head span {
    color: #ff4d00;
    font-weight: bold;
    display: block;
  }
  .projects__head h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .project__item {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
  }
  .project__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    color: #fff;
    text-align: left;
    text-decoration: none;
    opacity: 0;
    transition: 0.3s ease;
  }
  .project__item:hover .project__info {
    opacity: 1;
  }
  .project__category {
    color: #ff4d00;
    font-size: 14px;
    text-transform: uppercase;
  }
  .project__title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
  }
  
  /* Swiper custom */
  .swiper {
    padding-bottom: 50px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  .swiper-pagination-bullet-active {
    background: #ff4d00;
  }
  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after

 {
 
    font-weight: 900;
    font-size: 20px;
    line-height: 10px;
}
.testimonial {
    padding: 60px 20px;
    text-align: center;
  }
  .testimonial__title span {
    color: #ff4d00;
    font-weight: bold;
    display: block;
  }
  .testimonial__title h2 {
    font-size: 32px;
    margin: 10px 0 40px;
  }
  .testimonial__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  .testimonial__item {
    max-width: 500px;
    text-align: left;
  }
  .testimonial__img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  .testimonial__text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .testimonial__name {
    color: #ff4d00;
    font-weight: bold;
    text-transform: uppercase;
  }
  .blog {
    padding: 60px 20px;
    background: #fff;
    text-align: left;
  }
  .blog__header {
    margin-bottom: 40px;
  }
  .blog__subtitle {
    color: #ff4d00;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
  }
  .blog__title {
    font-size: 32px;
    margin: 10px 0;
  }
  .blog__grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  .blog__item {
    background: #fff;
  }
  .blog__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
  }
  .blog__item h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .blog__item p {
    color: #888;
    font-size: 14px;
  }
  .blog__author {
    color: #ff4d00;
  }
  .blog__category {
    color: #ff4d00;
  }
  .subscribe {
    background: #ff5a10;
    padding: 50px 20px;
    color: #fff;
  }
  .subscribe__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .subscribe__text {
    flex: 1 1 45%;
    margin-bottom: 20px;
  }
  .subscribe__title {
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
  }
  .subscribe__desc {
    margin-top: 10px;
    font-size: 16px;
  }
  .subscribe__form {
    flex: 1 1 25%;
    display: flex;
    justify-content: center;
    max-width: 100%;
  }
  .subscribe__input {
    flex: 1;
    padding: 15px;
    border: 2px solid #fff;
    border-right: none;
    font-size: 16px;
    outline: none;
  }
  .subscribe__button {
    background: #000;
    color: #fff;
    padding: 30px;
    font-size: 14px;
    letter-spacing: 2px;
    border: 2px solid #000;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .subscribe__button:hover {
    background: #333;
  }
  @media (max-width: 768px) {
    .subscribe__container {
      flex-direction: column;
      align-items: flex-start;
    }
    .subscribe__form {
      width: 100%;
    }
  }
  .footer {
    background: #0c0c0c;
    color: #fff;
    padding: 60px 20px 30px;
    font-family: 'Oswald', sans-serif;
  }
  .footer__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer__column {
    flex: 1 1 220px;
    margin-bottom: 30px;
  }
  .footer__logo {
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .footer__logo-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ff5a10;
    margin-right: 5px;
    clip-path: polygon(0 0, 100% 0, 0% 100%);
    vertical-align: middle;
  }
  .footer__column h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    text-transform: uppercase;
  }
  .footer__column h3::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #ff5a10;
    margin-top: 5px;
  }
  .footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer__column ul li {
    margin: 5px 0;
  }
  .footer__column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
  }
  .footer__column ul li a:hover {
    color: #fff;
  }
  .footer__bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #bbb;
  }
  @media (max-width: 768px) {
    .footer__container {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  #navbar {
    width: 100%;
    
    transition: all 0.3s ease;
    z-index: 99;
  }
  #navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .project__items{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
  .post-detail {
    padding: 60px 0;
  }
  .post-detail__content {
    max-width: 800px;
    margin: 0 auto;
  }
  .post-detail__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 8px;
  }
  .post-detail__title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .post-detail__meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
  }
  .post-detail__text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
  }
  .post-detail__share {
    margin-top: 40px;
  }
  .post-detail__share span {
    margin-right: 10px;
    font-weight: bold;
  }
  .post-detail__share a {
    display: inline-block;
    margin-right: 10px;
    color: #333;
    font-size: 18px;
    transition: 0.3s;
  }
  .post-detail__share a:hover {
    color: #ff5722;
  }
  .contact-us {
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  
  .contact-us__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-us__info {
    flex: 1 1 300px;
  }
  
  .contact-us__title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .contact-us__desc {
    margin-bottom: 20px;
    color: #555;
  }
  
  .contact-us__details {
    list-style: none;
    padding: 0;
  }
  
  .contact-us__details li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
  }
  
  .contact-us__details i {
    margin-right: 10px;
    color: #ff5722;
  }
  
  .contact-us__form {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
  }
  
  .form__group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .form__group input {
    flex: 1 1 200px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .contact-us__form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .btn-submit {
    background-color: #ff5722;
    color: #fff;
    border: none;
    padding: 14px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
    transition: 0.3s;
  }
  
  .btn-submit:hover {
    background-color: #e64a19;
  }

  .services {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .services__header {
    margin-bottom: 40px;
  }
  
  .services__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .services__subtitle {
    font-size: 18px;
    color: #888;
  }
  
  .services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .service__item {
    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s ease;
    background-color: #f9f9f9;
  }
  
  .service__item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background-color: #fff;
  }
  
  .service__item i {
    font-size: 40px;
    color: #ff5722;
    margin-bottom: 15px;
  }
  
  .service__item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .service__item p {
    font-size: 15px;
    color: #555;
  }
  .faq {
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  
  .faq__title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .faq__item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
  }
  
  .faq__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    position: relative;
  }
  
  .faq__question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
  }
  
  .faq__item.active .faq__question::after {
    transform: rotate(45deg);
  }
  
  .faq__answer {
    display: none;
    padding: 0 15px 15px;
    color: #555;
    font-size: 16px;
  }
  
  .faq__item.active .faq__answer {
    display: block;
  }
  .terms{
    padding: 90px 0;
  }
  .terms ul li{
    margin-bottom: 10px;
  }
  .project-detail {
    padding: 60px 20px;
    background: #fff;
  }
  
  .project-detail__container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
  }
  
  .project-detail__image {
    flex: 1 1 50%;
  }
  
  .project-detail__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .project-detail__content {
    flex: 1 1 45%;
  }
  
  .project-detail__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .project-detail__content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
  }
  
  .project-detail__btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background-color: #f45511;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .project-detail__btn:hover {
    background-color: #d44408;
  }
  @media screen and (max-width:768px) {
    .header__info {
      display: flex;
      gap: 2px;
      margin-top: 10px;
      font-size: 14px;
      align-items: center;
      flex-direction: column;
  }
  .why-choose-us__container {
    display: flex
;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
}
form#frm {
  display: flex
;
  flex-direction: column;
}
.quote__form textarea {
  width: auto;
  padding: 12px;
  height: 80px;
  margin-bottom: 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  color: #fff;
}
.quote__row {
  display: flex
;
  gap: 20px;
  margin-bottom: 20px;
  flex-direction: column;
}
.quote__container {
  max-width: 1200px;
  margin: auto;
  display: flex
;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
}
.quote__form {
  flex: 1;
  background: #000;
  padding: 40px;
  color: #fff;
  width: auto;
}
.project__items {
  display: grid
;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}
  }
  .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1e1e1e;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    font-family: Arial, sans-serif;
  }
  
  .cookie-banner__text {
    flex: 1 1 60%;
  }
  
  .cookie-banner__buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  .cookie-banner__btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .cookie-banner__btn.accept {
    background-color: #ff5a00;
    color: white;
  }
  
  .cookie-bannerbtn.decline {
    background-color: #ffffff;
    color: #1e1e1e;
  }
  
  .cookie-banner__btn:hover {
    opacity: 0.8;
  }