body {
    margin: 0;
    background-color: #3a3a3c;
    font-family: 'Lato', sans-serif;
  }
  h1{
    text-align: center;
    font-size: 48px;
    color: #fff;
  }
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header {
    background-color: #3a3a3c;
    color: #fff;
    z-index: 3;
    width: 100%;
    position: fixed;
  }
  
  .header__logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
  }
  
  .header__logo img {
    width: 24px;
    height: auto;
    margin-right: 8px;
  }
  
  .header__nav .nav__list {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }
  
  .header__nav a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    position: relative;
  }
  .hero__content h1 {
    color: #fff;
    font-size: 36px;
  }
  .header__nav a:hover {
    color: #a084ff;
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    padding: 10px 0;
    min-width: 160px;
  }
  a{
    text-decoration: none;
    color: inherit;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu li {
    padding: 5px 20px;
  }
  
  .dropdown-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
  }
  
  .btn-primary {
    background-color: #5f50ff;
    color: white;
    padding: 12px 14px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    border-bottom: 2px solid #fff;
}
  
  .btn-primary:hover {
    opacity: 0.9;
  }
  .hero__wrap{
    display: flex;
    gap: 55px;
    align-items: center;
  }
  .hero__wrap img{
    width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
  }
.hero

 {
    padding: 80px 0;
}
.hero .btn-primary{
  margin-top: 50px;
  display: block;
  width: fit-content;
}
.service {
  padding: 80px 0px;
  text-align: center;
  background-color: #fff;
}
.service .container{
  flex-direction: column;
}
.service__header .subtitle {
  color: #6c63ff;
  font-size: 14px;
  margin-bottom: 10px;
}

.service__header h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
  line-height: 1.4;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service__card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service__card:hover {
  box-shadow: 0 0 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.service__card .icon {
  font-size: 40px;
  color: #6c63ff;
  margin-bottom: 20px;
}

.service__card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.service__card p {
  font-size: 14px;
  color: #666;
}
.featured-works {
  padding: 80px 0px;
  text-align: center;
}

.featured-works h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #f3f0f0;
}
.featured-works .container{
  flex-direction: column;
}
.featured-works p {
  color: #d6d6d6;
  max-width: 600px;
  margin: 0 auto 40px;
}

.featured-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.featured-works__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.featured-works__item.item1 {
  grid-column: span 2; /* або: grid-column: 1 / 3; */
  background: #6c63ff;
  color: white;
}
.featured-works__item img {
  width: 100%;
object-fit: cover;
  height: 300px;
  display: block;
  transition: transform 0.3s ease;
}

.featured-works__item:hover img {
  transform: scale(1.05);
}

.featured-works__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 20, 20, 0.7);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

.featured-works__item:hover .featured-works__overlay {
  opacity: 1;
}

.featured-works__overlay .featured-works__category {
  font-size: 13px;
  color: #7b5dfc;
  margin-bottom: 5px;
}

.featured-works__overlay h3 {
  font-size: 18px;
  margin: 10px 0;
}

.featured-works__overlay .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background-color: #6c63ff;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.featured-works__overlay .btn:hover {
  background-color: #4e44e4;
}
  .about{
  display: flex;

  width: 100%;
  min-height: 500px;
}

.about__image {
  flex: 1;

}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__content {
  flex: 1;
  background-color: #1e1e1e;
  color: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
flex: 1;
}

.about__label {
  color: #bbb;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}

.about__content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about__content p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about__content .btn {
  margin-top: 20px;
  width: fit-content;
  padding: 10px 24px;
  background-color: #6c63ff;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.about__content .btn:hover {
  background-color: #4e44e4;
}
.work {

  padding: 80px 0px;
  background-color: #fff;
  gap: 40px;

}
.work__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.work__content {
  flex: 1 1 50%;
padding: 50px;
}

.work__content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.work__content .work__.quote {
  font-weight: bold;
  margin-bottom: 15px;
}

.work__content .work__description {
  color: #555;
  margin-bottom: 30px;
}



.work__image {
  flex: 1 1 50%;

}

.work__image img {
  width: 100%;
  border-radius: 0px;
  object-fit: cover;
}
.testimonial{
  position: relative;
 background-color: #b8b7b7!important;
  color: #fff;
  background-attachment: fixed!important;
  background-blend-mode: multiply!important;
  padding: 120px 20px;
  text-align: center;
}

.testimonial__content {
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  font-size: 40px;
  color: white;
  margin-bottom: 20px;
}

.testimonial__text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.author h4 {
  margin: 0;
  font-size: 16px;
}

.author small {
  font-size: 13px;
  color: #ccc;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  font-weight: bold;
}
.footer {
  background: #1d1d1d;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer__top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.footer__left .logo {
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  color: #fff;
}

.footer__nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 0;
  padding: 0;
}

.footer__nav li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.footer__right {
  text-align: right;
}

.footer__socials {
  display: flex;
  gap: 15px;
  list-style: none;
  justify-content: flex-end;
  padding: 0;
  margin: 0 0 10px;
}

.footer__socials li a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.footer__socials li a:hover {
  background: #5a49f8;
  border-color: #5a49f8;
}

.footer__address {
  font-size: 13px;
  color: #ccc;
}

.footer hr {
  border: none;
  border-top: 1px solid #333;
  margin: 30px 0 10px;
}

.footer__bottom {
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.footer__bottom a {
  color: #5a49f8;
  text-decoration: none;
}
.missi{
  padding: 90px 0;
  background-color: #fff;
}
.missi .container{

  flex-direction: column;
}
.missi__items{
  display: flex;
  gap: 55px;
}
.missi__item{
  flex: 1;
}
.missi__item h3{
  font-size: 24px;
    color: #615CFD;
    font-weight: 400;
}
.missi__item p{
  color: #707070;
    font-size: 16px;
    margin-bottom: 20px;
}
.project__detail {
  max-width: 960px;
  margin: auto;
  padding: 50px 20px;
  font-family: sans-serif;
  color: #333;
}

.project__header {
  background-color: #1d1d1d;
  color: #fff;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
  border-radius: 8px;
}

.project__header h1 {
  margin: 0 0 10px;
}

.project__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
}

.project__meta li {
  color: #aaa;
}

.project__link {
  background: #5a49f8;
  padding: 6px 16px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.project__main-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: 30px;
  border-radius: 6px;
}

.project__description {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.project__description p {
  width: 48%;
  color: #fff;
  line-height: 1.6;
}

.project__gallery {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.project__gallery img {
  width: 50%;
  border-radius: 6px;
}
.testimonial__author img{
width: 90px;
height: 90px;
border-radius: 100%;
}
.blog {
  max-width: 800px;

  padding: 90px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: Arial, sans-serif;
}

.blog__card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.blog__image {
  position: relative;
}

.blog__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.blog__date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #5a49f8;
  color: #fff;
  padding: 8px 10px;
  text-align: center;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.2;
}

.blog__date .day {
  font-weight: bold;
  font-size: 18px;
  display: block;
}

.blog__content {
  padding: 20px;
}

.blog__content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #f1f1f1;
}

.blog__content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.blog__meta {
  font-size: 13px;
  color: #999;
  margin-top: 10px;
}
.post {
  max-width: 800px;
  margin: 0px auto;
  color: #333;
  padding: 90px 0;
}

.post__image {
  width: 100%;
  border-radius: 8px;
}

.post__meta {
  color: #777;
  margin-top: 10px;
  font-size: 14px;
}

.post__meta span {
  margin-right: 20px;
}

.post__body {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
}
.post__header img{
  width: 100%;
  height: 320px;
  object-fit: cover;
}
blockquote {
  margin: 20px 0;
  padding: 15px;
  background-color: #f5f5f5;
  border-left: 4px solid #5a49f8;
  font-style: italic;
}

.post__author {
  display: flex;
  gap: 15px;
  background: #f9f9f9;
  padding: 20px;
  margin-top: 40px;
  border-radius: 8px;
}

.post__author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.author__info h4 {
  margin: 0 0 5px;
}

.comments{
  margin-top: 40px;
}

.comment {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.comment img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.comment__content h5 {
  margin: 0 0 5px;
}

.comment__content span {
  font-size: 12px;
  color: #999;
}

.comment__form {
  margin-top: 40px;
}

.comment__form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comment__form textarea {
  resize: vertical;
  min-height: 100px;
  padding: 10px;
  font-size: 14px;
}

.comment__form input {
  padding: 10px;
  font-size: 14px;
}

.comment__form button {
  background-color: #5a49f8;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.comment__form button:hover {
  background-color: #4a3be6;
}

.contact__form {
  flex: 1 1 60%;
}

.contact__form h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.contact__form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact__form textarea,
.contact__form input {
  width: auto;
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 14px;
  border-radius: 2px;
}

.contact__form .form-row {
  display: flex;
  gap: 15px;
}

.contact__form .form-row input {
  width: 100%;
}

.contact__form button {
  padding: 14px 24px;
  border: 1px solid #5a49f8;
  background: transparent;
  color: #5a49f8;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact__form button:hover {
  background: #5a49f8;
  color: white;
}

.contact__info {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 14px;
}

.contact__info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact__info-box i {
  font-size: 20px;
  color: #5a49f8;
  margin-top: 4px;
}

.contact__info-box h4 {
  margin: 0 0 5px;
  font-size: 15px;
}

.contact__info-box p {
  margin: 0;
  color: #777;
}
.contact{
  padding: 90px 0;
}
.contact__form form{

  width: auto;
  display: flex
;
  flex-direction: column;
}
.contact .container{
  gap: 50px;
  margin-bottom: 80px;
}

.faq {

 padding: 90px 0px;

}

.faq h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #5a49f8;
}

.accordion {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 15px;
}

.accordion__header {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  background-color: #f1f1f1;
  transition: background 0.3s;
}

.accordion__header:hover {
  background-color: #e0e0e0;
}

.accordion__body {
  display: none;
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  line-height: 1.6;
}

.accordion.active .accordion__body {
  display: block;
}

.accordion__icon {
  transition: transform 0.3s ease;
}

.accordion.active .accordion__icon {
  transform: rotate(180deg);
}
.faq__accordions{
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.testimonial {


  padding: 90px 0;
}

.testimonial h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  color: #5a49f8;
}

.testimonial__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial__card {
  background-color: #0a0a0a;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial__card:hover {
  transform: translateY(-5px);
}

.testimonial__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial__name {
  font-weight: 600;
  margin: 0;
  font-size: 18px;
}

.testimonial__role {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.testimonial__text {
  font-size: 15px;
  line-height: 1.6;
}
.testimonial__grid,
.testimonial__content{
  flex: 1;
}
.testimonial__con img{
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
}
.testimonial .container{
  gap: 55px;
}
.terms{
  padding: 90px 0;
}
.terms h1{
  color: #1d1d1d;
}
@media screen and (max-width:768px) {
  .service__grid {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: fit-content;
    margin: 0 auto;
}
.hero__wrap {
  display: flex
;
  gap: 55px;
  align-items: center;
  flex-direction: column;
}
.hero__wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 5px;
}
.header__nav .nav__list {
  list-style: none;
  display: flex
;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.about {
  display: flex
;
  width: 100%;
  min-height: fit-content;
  flex-direction: column;
}
.featured-works__grid {
  display: grid
;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.work__items {
  display: flex
;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-direction: column-reverse;
}
.footer__top {
  display: flex
;
  gap: 15px;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.missi__items {
  display: flex
;
  gap: 55px;
  flex-direction: column;
}
}
.c__banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 16px 24px;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s ease-out forwards;
}

.c__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.c__content p {
  margin: 0;
  font-size: 14px;
  color: #333;
  flex: 1 1 300px;
}

.c__content a {
  color: #5a49f8;
  text-decoration: underline;
}

.c__btn {
  background-color: #5a49f8;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.c__btn:hover {
  background-color: #4536d7;
}

@keyframes slideUp {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}