body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
  }
  
 header .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
 
  }
  
  .topbar {
    background-color: #1e1f23;
    color: white;
    font-size: 14px;
    padding: 10px 0;
  }
  
  .topbar__left span,
  .topbar__right a {
    margin-right: 15px;
    color: white;
    text-decoration: none;
  }
  
  .topbar__right a:hover {
    color: #ffc107;
  }
  
  .navbar {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 30px;
    margin-right: 10px;
  }
  
  .logo span {
    font-size: 24px;
    font-weight: bold;
    color: #222;
  }
  
  .logo b {
    color: #ffc107;
  }
  
  .nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .nav li {
    margin-left: 30px;
  }
  
  .nav a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
  }
  
  .nav a.active,
  .nav a:hover {
    color: #ffc107;
  }
  
  .cart {
    position: relative;
    margin-left: 30px;
    font-size: 20px;
  }
  
  .cart-count {
    background: #ffc107;
    color: black;
    font-size: 12px;
    border-radius: 50%;
    padding: 3px 6px;
    position: absolute;
    top: -10px;
    right: -10px;
  }
  
  .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
  }
  
  .burger span {
    height: 3px;
    width: 25px;
    background: #222;
    margin: 4px 0;
  }
  
  @media screen and (max-width: 768px) {
    .nav {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
    }
  
    .nav.active {
      display: flex;
    }
  
    .burger {
      display: flex;
    }
  }
  .hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 100%;
  }
  /* #heroSwiper{
    height: 100vh;
    min-height: 100%;
  } */
  .hero__slide {
    background-size: cover;
    background-position: center;
    height: 90vh;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero__content {
    text-align: center;
    color: #222;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px 40px;
    border-radius: 10px;
  }
  .hero__content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .hero__content h1 {
    font-size: 3.5rem;
    font-weight: bold;
  }

  .about {
    font-family: Arial, sans-serif;
  }
  
  /* Top black bar */
  .about__topbar {
    background-color: #1b1b1b;
    padding: 20px 0;
    color: white;
  }
  
  .about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .about__title {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
  }
  
  .about__button {
    float: right;
    background-color: transparent;
    border: 2px solid #ffc107;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .about__button:hover {
    background-color: #ffc107;
    color: #000;
  }
  
  /* Main content */
  .about__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
  }
  
  .about__text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
  }
  
  .about__heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
  }
  
  .about__heading span {
    color: #000;
  }
  
  .about__subheading {
    color: #ffc107;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .about__paragraph {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .about__image {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  .about__image img {
    max-width: 100%;
    height: auto;
  }
  .services {
    background-color: #fff;

  }
  
  .services__container {
    display: flex;
 
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .services__left {
  
    background-size: cover;
    flex: 1 1 60%;
    padding: 60px 20px;
  }
  
  .services__right {
    background-color: #1b1b1b;
    color: #fff;
    flex: 1 1 40%;
    padding: 60px 40px;
  }
  
  .services__heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .services__heading span {
    color: #fff;
  }
  
  .services__subheading {
    color: #ffc107;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .services__text {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .services__grid {
    display: grid;
    max-width: 700px;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .services__item {
    background-color: #fff;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: relative;
    border-top: 4px solid #ffc107;
  }
  
  .services__item img {
    height: 48px;
    margin-bottom: 15px;
  }
  
  .services__item h3 {
    font-size: 14px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
  }
  
  .services__item p {
    font-size: 14px;
    color: #555;
  }
  .services__item i {
    font-size: 36px;
    color: #ffc107;
    margin-bottom: 15px;
  }
  .projects {
  padding: 90px 20px;
 
}

.projects__container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
}

/* Sidebar */
.projects__sidebar {
  flex: 1;
  max-width: 200px;
}

.projects__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.projects__title span {
  color: #000;
}

.projects__subtitle {
  color: #ffc107;
  font-weight: bold;
  margin-bottom: 30px;
}

.projects__tabs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.projects__tab {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.projects__tab:hover,
.projects__tab.active {
  color: #ffc107;
}

/* Grid */
.projects__grid {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.projects__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.projects__item img {
  width: 100%;
  object-fit: cover;
  height: 350px;
  display: block;
  transition: 0.3s;
}

.projects__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.8);
  color: #fff;
  padding: 20px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: opacity 0.3s ease;
  padding: 15px;
  bottom: 0;
  box-sizing: border-box;
  min-height: 100px;
}

.projects__item:hover .projects__overlay {
  opacity: 1;
}

.projects__overlay h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffc107;
}

.projects__overlay p {
  font-size: 14px;
  line-height: 1.4;
}
.work {
 
  background-size: cover;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

.work__overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work__content {
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.work__title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.work__title span {
  color: #fff;
}

.work__subtitle {
  color: #ffc107;
  font-weight: bold;
  margin-bottom: 20px;
}

.work__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #eee;
}

.work__button {
  background-color: #ffc107;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.work__button:hover {
  background-color: #e0a800;
}
.stats {
  background-color: #2e333c;
  padding: 40px 20px;
  color: #fff;
}

.stats__container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.stats__item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stats__item i {
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
}

.stats__item h3 {
  font-size: 28px;
  margin: 0;
}

.stats__item p {
  font-size: 14px;
  color: #ddd;
}

/* Testimonial */
.testimonial {
  background-color: #f8f8f8;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.testimonial__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.testimonial__left {
  flex: 1;
}

.testimonial__left h2 {
  font-size: 32px;
  font-weight: bold;
  color: #2e333c;
}

.testimonial__left span {
  color: #2e333c;
}

.testimonial__subtitle {
  color: #ffc107;
  font-weight: bold;
  margin-top: 10px;
}

.testimonial__right {
  flex: 2;
}

.testimonial__box {
  display: flex;
  background-color: #ffc107;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.testimonial__content {
  padding: 40px;
  flex: 2;
}

.testimonial__content i {
  font-size: 24px;
  color: #2e333c;
  margin-bottom: 10px;
}

.testimonial__content p {
  margin-bottom: 10px;
  color: #2e333c;
  line-height: 1.5;
}

.testimonial__image {
  flex: 1;
  height: 100%;
}

.testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news {
  padding: 90px 0px;
 
  background-color: #fff;
  text-align: center;
}

.news__container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.news__title {
  font-size: 36px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.news__title span {
  color: #222;
}

.news__subtitle {
  color: #ffc107;
  font-weight: bold;
  margin-bottom: 40px;
}

.news__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.news__card {
  width: 100%;
  max-width: 360px;
  border: 1px solid #ddd;
  text-align: left;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.news__image {
  position: relative;
}

.news__image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.news__date {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffc107;
  color: #fff;
  padding: 8px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.news__date span {
  font-size: 16px;
  display: block;
}

.news__content {
  padding: 20px;
}

.news__content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.news__author {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.news__text {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

.news__footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #333;
  align-items: center;
}

.news__footer a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  transition: 0.3s;
}

.news__footer a:hover {
  color: #ffc107;
}
.footer {
  font-family: Arial, sans-serif;
  color: #fff;
  background-color: #2d3139;
}

.footer__top {
  padding: 50px 20px;
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer__column {
  flex: 1;
  min-width: 200px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 10px;
}

.footer__logo img {
  width: 30px;
}

.footer__socials a {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s;
}

.footer__socials a:hover {
  color: #ffc107;
}

.footer__column h4 {
  color: #ffc107;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer__post {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer__post img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.footer__post p {
  font-size: 14px;
  color: #ccc;
}

.footer__column p {
  font-size: 14px;
  color: #ccc;
  margin: 8px 0;
}

.footer__cta p {
  color: #ffc107;
  font-size: 16px;
}

.footer__cta h3 {
  color: #ffc107;
  font-size: 24px;
  margin: 10px 0;
}

.footer__cta span {
  display: block;
  margin: 10px 0;
}

.footer__quote {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.footer__quote:hover {
  background-color: #e0a800;
}

/* Bottom */
.footer__bottom {
  text-align: center;
  background-color: #23262b;
  padding: 15px 20px;
  font-size: 14px;
  color: #aaa;
}

.footer__bottom i {
  color: #ffc107;
}

.footer ul{
  display: flex;
  gap: 10px;
flex-wrap: wrap;
list-style: none;
}
a{
  text-decoration: none;
  color: inherit;
}
.pro .projects__container {
  display: flex
;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
  flex-direction: column;
}
.pro .projects__tabs {
  list-style: none;
  padding: 0;
  width: 100%;
  display: flex
;
  gap: 15px;
  margin: 0 auto;
  justify-content: center;
}
.pro .projects__sidebar {
  flex: 1;
  max-width: 100%;
}
.pro .projects__subtitle {
  color: #ffc107;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}
.pro .projects__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #222;
}


.why {
  background: #f8f8f8;
  padding: 60px 20px;
}

.why__container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.why__left {
  flex: 1;
}

.why__left h2 {
  font-size: 30px;
  font-weight: bold;
}

.why__left span {
  color: #ffc107;
}

.why__left ul {
  padding: 0;
  list-style: none;
}

.why__left li {
  margin: 10px 0;
}

.why__left i {
  color: #ffc107;
  margin-right: 10px;
}

.why__right {
  flex: 1;
}

.why__right img {
  width: 100%;
}

/* Services Icons */
.ser__icons {
  text-align: center;
  padding: 60px 20px;
}

.ser__grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.ser__card {
  flex: 1;
  max-width: 280px;
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
}

.ser__card i {
  font-size: 32px;
  color: #ffc107;
  margin-bottom: 10px;
}

/* Slider div */
.slider {
  padding: 90px 0px;
}

.slider__image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.slider__thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 15px 0;
}

.slider__thumbs img {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #ddd;
  cursor: pointer;
}

.slider__content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.slider__column {
  flex: 1;
  min-width: 280px;
}

.slider__column ul {
  list-style: none;
  padding: 0;
}

.slider__column li i {
  color: #ffc107;
  margin-right: 10px;
}

/* Progress bars */
.progress label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.bar {
  width: 100%;
  background: #eee;
  height: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.bar span {
  display: block;
  height: 100%;
  background: #ffc107;
  border-radius: 5px;
}

/* Project preview */
.projects__preview {
  padding: 60px 20px;
  background: #f8f8f8;
  text-align: center;
}
/* 
.projects__grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.projects__grid img {
  width: 200px;
  height: 150px;
  object-fit: cover;
} */
.article {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.article__image {
  position: relative;
  margin-bottom: 20px;
}

.article__image img {
  width: 100%;
  object-fit: cover;
  height: 300px;
}

.article__date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffc107;
  color: #fff;
  padding: 8px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
}

.article__date span {
  font-size: 18px;
  display: block;
}

.article__meta {
  color: #888;
  font-size: 14px;
}

.article__meta span {
  background: #eee;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
}

.article__title {
  font-size: 24px;
  margin: 10px 0 20px;
  color: #222;
}

.article__quote {
  background: #f8f8f8;
  border-left: 4px solid #ffc107;
  padding: 15px;
  font-style: italic;
  margin: 20px 0;
}

.article__quote i {
  color: #ffc107;
  margin-right: 10px;
}

.article ul {
  padding-left: 20px;
  margin: 15px 0;
  list-style: none;
}

.article ul li {
  margin-bottom: 10px;
}

.article ul i {
  color: #ffc107;
  margin-right: 5px;
}

.article__tags {
  margin-top: 20px;
  color: #666;
}

/* Related posts */
.article__related {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.related__item img {
  width: 100%;
  max-width: 100%;
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.related__item p {
  font-size: 14px;
}

/* Comments */
.article__comment {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.article__comment img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.article__comment strong {
  display: block;
  color: #222;
}

.article__comment span {
  font-size: 12px;
  color: #999;
}

.article__comment p {
  margin: 5px 0;
}

.article__comment a {
  font-size: 13px;
  color: #ffc107;
  text-decoration: none;
}

/* Reply indent */
.article__comment.reply {
  margin-left: 50px;
}

/* Form */
.article__form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.article__form input,
.article__form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  width: 100%;
}

.article__form textarea {
  height: 100px;
  resize: vertical;
}

.article__form button {
  background: #ffc107;
  color: #000;
  border: none;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.article__form button:hover {
  background: #e0a800;
}

.contact-us {
  padding: 120px 0px;
  background: #f8f8f8;
 
}

.contact-us__container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-us__info {
  flex: 1;
  min-width: 280px;
}

.contact-us__info h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-us__info p {
  margin-bottom: 20px;
  color: #555;
}

.contact-us__details {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.contact-us__details li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.contact-us__details i {
  color: #ffc107;
  margin-right: 10px;
}

.contact-us__socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #333;
  transition: 0.3s;
}

.contact-us__socials a:hover {
  color: #ffc107;
}

.contact-us__form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-us__form input,
.contact-us__form textarea {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  width: 100%;
}

.contact-us__form textarea {
  height: 120px;
  resize: vertical;
}

.contact-us__form button {
  padding: 12px;
  background-color: #ffc107;
  border: none;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}

.contact-us__form button:hover {
  background-color: #e0a800;
}

.tes {
  padding: 90px 0px;
  background: #f9f9f9;
  text-align: center;
 
}

.tes__container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.tes h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.tes__grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.tes__item {
  background: #fff;
  padding: 20px;
  max-width: 350px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: left;
}

.tes__item p {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.tes__author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tes__author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.faq {
  padding: 60px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.faq__container {
  max-width: 800px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.faq__item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq__item input {
  display: none;
}

.faq__question {
  display: block;
  font-weight: bold;
  cursor: pointer;
  padding: 15px;
  background: #f1f1f1;
  transition: background 0.3s;
}

.faq__question:hover {
  background: #eaeaea;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease;
  background: #fafafa;
}

.faq__item input:checked ~ .faq__answer {
  padding: 15px;
  max-height: 300px;
}
.tem{
  padding: 90px 0;

}
.tem li{
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .nav ul {
    list-style: none;
    display: flex
;
    gap: 10px;
    margin: 0;
    background-color: #fff;
    z-index: 999;
    padding: 20px 0;
    flex-direction: column;
}
.services__container {
  display: flex
;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  flex-direction: column;
}
.about__text {
  flex: 1;
  min-width: 100%;
  padding-right: 0px;
  width: 100%;
  padding: 15px;
}
.about__text {
  flex: 1;
  min-width: 100%;
  padding-right: 0px;
  width: 100%;
  padding: 15px;
}
.about__content {
  display: flex
;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
  flex-direction: column;
}
.projects__container {
  display: flex
;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  flex-direction: column;
}
.projects__container {
  display: flex
;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  flex-direction: column;
}
.about__text {
  flex: 1;
  min-width: auto;
  padding-right: 0px;
  width: auto;
  padding: 15px;
}
.about__image img {
  max-width: none;
  height: 300px;
  object-fit: cover;
  width: 100%;
}
.about__image {
  flex: 1;
  min-width: 300px;
  width: 100%;
  text-align: center;
}
.about__button {
  float: right;
  background-color: transparent;
  border: 2px solid #ffc107;
  padding: 10px 20px;
  color: white;
  display: block;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex
;
  padding: 0 0px;
  align-items: center;
}
.topbar__left {
  display: flex
;
  gap: 5px;
  flex-wrap: wrap;
}
.why__container {
  display: flex
;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-direction: column;
}
.contact-us__form input, .contact-us__form textarea {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  width: auto;
}
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #2d3139;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  max-width: 900px;
  margin: auto;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: #ffc107;
  text-decoration: underline;
}

.cookie-banner__btn {
  background-color: #ffc107;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-banner__btn:hover {
  background-color: #e0a800;
}

/* Responsive */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__btn {
    width: 100%;
    margin-top: 10px;
  }
}