* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.containerr {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.tbc-logo {
  width: 50px;
  height: auto;
  margin-left: -100px;
}

.containerr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.logo span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav ul li a {
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.nav ul li a:hover {
  color: #555;
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.search input {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}

.search button {
  background: none;
  border: none;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.search button img {
  width: 15px;
  height: 15px;
}

.icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.icons a img {
  width: 30px;
  height: 30px;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.icons a img:hover {
  opacity: 0.7;
}

.header {
  font-family: "BPG Nino Mkhedruli Bold", sans-serif;
}

.header h1 {
  font-size: 2rem;
  color: #444;
}

.nav ul li a {
  font-family: "BPG Nino Mkhedruli Bold", sans-serif;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
}

.nav ul li a:hover {
  color: #555;
}


body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}


.services-section {
  padding: 70px 20px;
  background: -webkit-gradient(linear, left top, right bottom, from(#f5f7fa), to(#ffffff));
  background: -o-linear-gradient(top left, #f5f7fa, #ffffff);
  background: linear-gradient(to bottom right, #f5f7fa, #ffffff);
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  color: #2d3e50;
  margin-bottom: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #ff6b6b;
  margin: 20px auto 0;
  border-radius: 2px;
}

.services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px; 
  -webkit-box-align: stretch; 
      -ms-flex-align: stretch; 
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 50px; 
}


.service-card {
  background: #ffffff;
  border-radius: 15px;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  text-align: center;
  padding: 25px;
  position: relative;
}

.service-card:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.service-card:hover .service-icon {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.service-title {
  font-size: 1.6rem;
  color: #2d3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}


.service-card a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ff6b6b;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.service-card a:hover {
  background-color: #e05a5a;
}


.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 20px;
}

.footer-section h4 {
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
}

.header {
  font-family: "BPG Nino Mkhedruli Bold", sans-serif;
}

.header h1 {
  font-size: 2rem;
  color: #444;
}

.nav ul li a {
  font-family: "BPG Nino Mkhedruli Bold", sans-serif;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
}

.nav ul li a:hover {
  color: #555;
}

.fb {
  width: 40px;
}

.ig {
  width: 40px;
}


@media (max-width: 1200px) {
  .containerr {
    width: 95%;
  }
}

@media (max-width: 992px) {
  .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-left: -30px;
  } 


  .logo {
    margin-top: -150px;
  }

  .search {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-top: -150px;
  }

  .icons {
    margin-top: -150px;
  }

  .search input {
    margin-bottom: 5px;
  }
}


@media (max-width: 576px) {
  
  .header {
    padding: 10px;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    margin-right: -50px;
  }

  .search input {
    width: 100%;
  }
}



@media (max-width: 768px) {

  .section-title {
    font-size: 2.2rem;
  }

  .service-card {
    padding: 20px;
  }
 
  .service-title {
    font-size: 1.4rem;
  }

  .service-description {
    font-size: 0.95rem;
  }
}

