.icon-circle {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.icon-circle i {
  color: #03a4ed;
  font-size: 18px;
}

.contact-text {
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}

.contact-email {
  color: #fff !important;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

.portfolio-carousel .item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.portfolio-carousel .item:hover {
  transform: translateY(-5px);
}

.portfolio-carousel img {
  width: 100%;
  display: block;
}

.portfolio-carousel .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.portfolio-carousel .owl-nav button {
  background: #03a4ed;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-carousel .owl-nav button:hover {
  background: #0283c7;
}

.portfolio-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.portfolio-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s;
}

.portfolio-carousel .owl-dots .owl-dot.active {
  background: #03a4ed;
}

.portfolio-carousel img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.popup-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {
    transform: scale(0.7);
  }
  to {
    transform: scale(1);
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.text-white {
  color: #fff !important;
}

.services-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
}

.services-list li {
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.services-list i {
  background: #f1f1f1;
  color: #03a4ed;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Hover effect */
.services-list li:hover {
  color: #03a4ed;
}

.services-list li:hover i {
  background: #03a4ed;
  color: #fff;
  transform: rotate(8deg) scale(1.05);
  box-shadow: 0 4px 10px rgba(3, 164, 237, 0.3);
}

#portfolio .section-heading h2 {
  margin-bottom: 12px;
}

#portfolio .section-heading p {
  font-size: 16px;
  color: #666;
  margin-bottom: 35px;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.toast {
  visibility: hidden;
  min-width: 250px;
  max-width: 350px;
  margin-left: -125px;
  background-color: #03a4ed;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.5s ease, bottom 0.5s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}
