* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Work Sans", sans-serif;
}

.top__bar {
    background: #2dbaf1;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 30px;
    font-size: 14px;
}

.top__bar i {
    margin-right: 8px;
}

.purple {
    background: #774ad8;
    color: #fff;
    padding: 6px;
    border-radius: 50%;
}

.orange {
    background: #ff9f1c;
    color: #fff;
    padding: 6px;
    border-radius: 50%;
}

.top__bar .green {
    background: #8bc34a;
    color: #fff;
    padding: 6px;
    border-radius: 50%;
}

.main__header {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.main__header .container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

a {
    color: inherit;
    text-decoration: none;
}

.logo {

    font-size: 24px;
    font-weight: 800;
}

.logo {
    color: inherit;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
    color: #2dbaf1;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.top__bar .container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    align-items: center;
}

.burger span {
    height: 3px;
    width: 25px;
    background: #333;
    border-radius: 2px;
}

.container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        padding: 15px 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav ul.active {
        display: flex;
    }

    .burger {
        display: flex;
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: 0.3s;
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 99;
        right: 0;
        background: #fff;
        padding: 20px 30px;
        display: none;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav ul.active {
        display: flex;
    }
}

.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero button {
    background-color: #FFA736;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #e68a00;
}

.hero .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero .swiper-slide img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .swiper-slide h1{
    color: #fff;
}
.hero .swiper-pagination-bullets {
    bottom: 40px !important;
}
.hero__btn {
   border-radius: 30px;
   padding: 15px 30px;
   text-wrap-mode: nowrap;
   background-color: #e68a00;
color: #fff;
}
.hero__btn:hover{
    background-color: #b6720d;
}
.hero__content {
    max-width: 600px;
    display: block;
    z-index: 1;
z-index:  256px;
}

/* Features Block */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    background-color: #fff;
}

.feature {
    flex: 1 1 200px;
    padding: 40px 20px;
    color: white;
    min-width: 250px;
}

.feature__icon {
    background: white;
    border-radius: 50%;
    width: 100px;
    z-index: 9;
    position: relative;
    height: 100px;
    margin: -100px auto 20px;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #333;
}
.feature.red{
background-color: #28A9F1;
}
.feature.blue{
background-color: #EF5350;
}
.feature.bluu{
background-color: #774ad8;
}
.feature.green{
    background-color: #83C870;
}
.feature h3 {
    margin-bottom: 10px;
}

/* Background Colors */
.bg-blue {
    background-color: #28A9F1;
}

.bg-green {
    background-color: #83C870;
}

.bg-purple {
    background-color: #6C63FF;
}

.bg-red {
    background-color: #EF5350;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero__slide {
        padding: 10px;
    }

    .feature {
        padding: 20px;
    }
}

/* Swiper override */
.hero__slider {
    height: 100vh;
    width: 100%;
}
/* Offer Section */
.offer{
    display: flex;
 
    background: #fff;
    padding: 90px 30px;
   
    margin: 0 auto;
    gap: 30px;
  }
  .offer .container{
    display: flex;
    gap: 50px;
  }
  .offer__left, .offer__right {
    flex: 1 1 500px;
    min-width: 300px;
  }
  
  .offer__left h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .offer__left p {
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
  }
  
  .offer__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .offer__item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 calc(50% - 30px);
  }
  
  .offer__item .icon {
    background: #28A9F1;
    color: white;
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }
  
  .offer__item h4 {
    margin: 0;
    font-size: 18px;
  }
  
  .offer__item p {
    margin: 0;
    color: #666;
    font-size: 14px;
  }
  
  .offer__right h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .offer__right p {
    color: #777;
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .offer__right button {
    background-color: #FFA736;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .offer__right button:hover {
    background-color: #e68a00;
  }
  .contact-us{
    padding: 90px 0;
    background-position: center;
    background-size: cover;
    background-color: #333;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
  }
 .contact-us .container{
    display: flex;
    align-items: center;
    gap: 30px;
 }
 .contact-us__content{
    display: flex;
    flex-direction: column;
    gap: 15px;
 }
 .contact-us__content h2{
    color: #fff;
    font-size: 36px;
    font-weight: 600;
 }
 .contact-us__content p{
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    font-weight: 400;
 }
 .teachers {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .teachers h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .teachers h2 span {
    color: #6C63FF;
  }
  
  .teachers p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #777;
  }
  
  .teachers__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .teacher {
    width: 250px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .teacher:hover {
    transform: translateY(-5px);
  }
  
  .teacher img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
  }
  
  .teacher h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .teacher .position {
    color: #888;
    text-transform: uppercase;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
  }
  
  .teacher p {
    font-size: 14px;
    color: #666;
  }
  
  @media (max-width: 768px) {
    .teachers__list {
      flex-direction: column;
      align-items: center;
    }
    .teacher {
      width: 90%;
    }
  }
  .courses {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
  }
  
  .courses__header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .courses__header h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .courses__header h2 span {
    color: #6C63FF;
  }
  
  .courses__header p {
    color: #777;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .courses__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .course {
    width: 100%;
    max-width: 550px;
    display: flex;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .course:hover {
    transform: translateY(-5px);
  }
  
  .course img {
    width: 180px;
    height: auto;
    object-fit: cover;
  }
  
  .course__content {
    padding: 20px;
  }
  
  .course__content h3 {
    margin: 0 0 5px;
    color: #2196f3;
  }
  
  .course__content .time {
    font-size: 14px;
    color: #ff9800;
    margin-bottom: 10px;
  }
  
  .course__content p {
    font-size: 14px;
    color: #555;
  }
  
  @media (max-width: 768px) {
    .course {
      flex-direction: column;
      max-width: 100%;
    }
  
    .course img {
      width: 100%;
      height: auto;
    }
  }
  .stats{
    padding: 120px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #666;
    background-blend-mode: multiply;
   background-attachment: fixed;
  }
  .stats p{
    color: #fff;
  }
   .stats h2{
    margin-bottom: 30px;
    font-size: 44px;
    font-weight: 600;
    color: #fff;
    text-align: center;
   }
   .stats h2 span{
    color: #5d50c6;
   }
   .stats__items{
    margin-top: 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
   }
   .stats__item{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
   }
   .stats__item span:first-child{
    font-weight: 500;
    font-size: 50px;
    color: #1eaaf1;
    display: block;
   }
   .stats__item span:last-child{
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 254, 254, 0.8);
   }
   .testimonials {
    padding: 90px 20px;
    text-align: center;
    background: #fff;
  }
  
  .testimonials h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .testimonials h2 span {
    color: #6C63FF;
  }
  
  .testimonials p {
    color: #777;
    max-width: 700px;
    margin: 0 auto 40px;
  }
  
  .testimonialSwiper {

   
  }
  
  .testimonial {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    justify-content: center;
  }
  
  .testimonial img {
    width: 100px;
    position: relative;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .testimonial__text {
    max-width: 600px;
  }

  .testimonial__text .q {
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin-bottom: 10px;
  }
  
  .testimonial__text h3 {
    margin: 5px 0 2px;
    font-size: 16px;
  }
  
  .testimonial__text span {
    color: #2196f3;
    font-size: 14px;
  }
  
  .swiper-pagination {
    margin-top: 20px;
  }
  
  @media (max-width: 768px) {
    .testimonial {
      flex-direction: column;
      text-align: center;
    }
  
    .testimonial__text {
      max-width: 100%;
    }
  }

  .quote {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
  }
  
  .quote__left {
    flex: 1;
    min-width: 300px;
  }
  
  .quote__left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .quote__form {
    flex: 1;
    background: #27a9ef;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .quote__form h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .quote__form p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #e0f7ff;
  }
  
  .quote__form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .quote__row {
    display: flex;
    gap: 15px;
  }
  
  .quote__row input,
  .quote__row select {
    flex: 1;
  }
  
  .quote  input, select, textarea {
    padding: 10px;
    border: none;
    border-radius: 4px;
    width: 100%;
  }
  
  .quote textarea {
    resize: vertical;
  }
  
.quote  button {
    padding: 12px;
    background: #fca433;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .quote  button:hover {
    background: #ff9a18;
  }
  
  @media (max-width: 768px) {
    .quote {
      flex-direction: column;
    }
  
    .quote__form {
      padding: 30px 20px;
    }
  
    .quote__row {
      flex-direction: column;
    }
  }

  .blog {
    padding: 60px 20px;
    background: #fdfdfd;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .blog h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .blog h2 span {
    color: #6c63ff;
  }
  .blog p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #777;
  }
  
  .blog__item {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    text-align: left;
  }
  
  .blog__item img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .blog__date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #6c63ff;
    color: #fff;
    padding: 10px 8px;
    text-align: center;
    font-size: 12px;
    border-radius: 3px;
  }
  .blog__date .day {
    font-size: 20px;
    font-weight: bold;
    display: block;
  }
  
  .blog__content {
    padding: 20px;
  }
  .blog__content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .blog__content p {
    font-size: 14px;
    color: #666;
  }
  
  .blog__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }
  
  .blog__bottom .btn {
    background: #fca433;
    padding: 8px 15px;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
  }
  .blog__bottom .btn:hover {
    background: #ff9800;
  }
  
  .blog__bottom .meta {
    font-size: 14px;
    color: #6c63ff;
  }
  .blog__bottom i {
    margin-left: 5px;
  }
  .gallery {
    padding: 80px 0px 0 0;
    background: #fff;

    margin: 0 auto;
  }
  
  .gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
  }
  
  .gallery__grid a {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 0px;
  }
  
  .gallery__grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 0px;
  }
  
  .gallery__grid a:hover img {
    transform: scale(1.05);
  }
  .footer {
    background: #1c1c1c;
    color: #fff;
    padding: 60px 20px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  
  .footer__column h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .footer__column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer__column ul li {
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .footer__column ul li i {
    margin-right: 10px;
  }
  
  .footer__blog {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .footer__blog img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .footer__blog p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .footer__blog small {
    font-size: 12px;
    color: #bbb;
  }
  
  .footer__column a {
    color: #ccc;
    text-decoration: none;
    transition: 0.2s;
  }
  
  .footer__column a:hover {
    color: #fff;
  }
  
  .footer__subscribe {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer__subscribe input {
    padding: 10px;
    border: none;
    background: #333;
    color: #fff;
    font-size: 14px;
  }
  
  .footer__subscribe button {
    padding: 10px;
    background: #6C63FF;
    color: #fff;
    border: none;
    font-size: 14px;
    cursor: pointer;
  }
  
  .footer__socials a {
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
  }
  
  .footer__bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 13px;
    color: #999;
  }
  .offer__right img{
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
  .pricing {
    padding: 60px 20px;
    background: #fdfdfd;
    text-align: center;
  }
  
  .pricing h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .pricing  h2 span {
    color: #6C63FF;
  }
  
  .pricing  p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #777;
  }
  
  .pricing__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .pricing__card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .pricing__card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .pricing__card .price {
    font-size: 24px;
    font-weight: bold;
    color: #00aaff;
    margin-bottom: 15px;
  }
  
  .pricing__card .price span {
    color: #888;
    font-size: 14px;
    margin-left: 4px;
  }
  
  .pricing__card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
  }
  
  .pricing__card .desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .pricing  .btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
  }
  
 .pricing .btn.blue { background: #00aaff; }
 .pricing .btn.orange { background: #fca311; }
 .pricing .btn.green { background: #28a745; }
 .pricing  .btn.red { background: #dc3545; }
  
  @media (max-width: 768px) {
    .pricing__cards {
      grid-template-columns: 1fr;
    }
  }
  .blog.blo .container{
max-width: 970px;
  }
  .blog__items{
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .blog.blo .blog__item img{
    height: 350px;
    object-fit: cover;
  }
  .post {
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  }

  .post__title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #333;
  }

  .post__meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .post__image {
    width: 100%;
    object-fit: cover;
    height: 250px;
    margin: 20px 0;
  }

  .post__content {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
  }

  .post__content h2 {
    margin-top: 30px;
    color: #222;
  }

  .post__content ul {
    margin-top: 10px;
    padding-left: 20px;
  }

  .post__content li {
    margin-bottom: 10px;
  }

  .post__footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }

  @media (max-width: 600px) {
    .post {
      padding: 20px;
    }
    .post__title {
      font-size: 1.5rem;
    }
  }
  .gallery.gal .gallery__grid {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.faq {
    max-width: 900px;
    margin: 90px auto;
padding: 20px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 8px;
  }

  .faq__container h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
  }

  .faq__item {
    border-bottom: 1px solid #e0e0e0;
  }

  .faq__question {
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
  }

  .faq__question:hover {
    background-color: #f1f1f1;
  }

  .faq__question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
    transition: transform 0.3s;
  }

  .faq__item.active .faq__question::after {
    content: "-";
  }

  .faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #f9f9f9;
    color: #444;
    transition: all 0.3s ease;
  }

  .faq__item.active .faq__answer {
    max-height: 500px;
    padding: 20px;
  }

  @media (max-width: 600px) {
    .faq__container {
      margin: 20px;
      padding: 15px;
    }

    .faq__container h1 {
      font-size: 26px;
    }
  }
  .tes {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
  }

  .tes__title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .tes__subtitle {
    color: #666;
    margin-bottom: 40px;
  }

  .tes__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .tes__item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
  }

  .tes__text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
  }

  .tes__author {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .tes__author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
  }

  .tes__author-info {
    font-size: 14px;
  }

  .tes__author-info strong {
    display: block;
    color: #000;
  }

  @media (max-width: 768px) {
    .tes__item {
      padding: 20px;
    }
  }
  .term{
    padding: 90px 0;
  }
  .term .container{
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .term ul{
    padding-left: 15px;
  }
  .term ul li{
    margin-bottom: 10px;
  }
  @media screen and (max-width: 768px) {
    .top__bar .container {
        display: flex
    ;
        justify-content: flex-start;
        gap: 15px;
        align-items: center;
        flex-wrap: wrap;
    }
    .offer .container {
        display: flex
    ;
        gap: 50px;
        flex-direction: column;
    }
    .stats__items {
        margin-top: 40px;
        display: flex
    ;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }
  }
  .contact {
    padding: 60px 20px;
    background: #f9f9f9;
    font-family: sans-serif;
  }
  .contact__info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 20px;
  }
  .contact__item {
    flex: 1 1 200px;
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 5px;
  }
  .contact__item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
  }
  .contact__main {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  .contact__map {
    flex: 1 1 50%;
overflow: hidden;
    background: #e5e5e5;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    text-align: center;
  }
  .contact__map img{
    width: 100%;
  }
  .contact__form {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .contact__form input,
  .contact__form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
  }
  .contact__form textarea {
    min-height: 150px;
  }
  .contact__form button {
    background: #00b3ff;
    border: none;
    padding: 14px;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  .contact__form button:hover {
    background: #0099dd;
  }

  @media screen and (max-width:768px) {
    .feature__icon {
        background: white;
        border-radius: 50%;
        width: 100px;
        z-index: 9;
        position: relative;
        height: 100px;
        margin: 0px auto 20px;
        display: flex
    ;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        color: #333;
    }
    .contact-us .container {
        display: flex
    ;
        align-items: center;
        gap: 30px;
        flex-direction: column;
    }
    .gallery__grid {
        display: grid
    ;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    .contact__form {
        flex: 1 1 50%;
        display: flex
    ;
        flex-direction: column;
        gap: 15px;
    }
    .gallery.gal .gallery__grid {
        display: grid
    ;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
  }
  .co__banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: #fff;
    padding: 20px;
    font-family: sans-serif;
    z-index: 9999;
    display: none;
  }
  .co__banner__content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .co__banner__content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
  }
  .co__banner__content a {
    color: #00c8ff;
    text-decoration: underline;
  }
  .co__banner__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .co__banner__buttons button {
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
  }
  #co__accept {
    background-color: #00c853;
    color: white;
  }
  #co__settings {
    background-color: #444;
    color: #fff;
  }
  #co__settings:hover {
    background-color: #555;
  }
  #co__accept:hover {
    background-color: #00b14c;
  }