* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #0d6efd;
}

.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}
.hero-img img {
  width: 300px;
  height: auto;
}
.hero-content {
  max-width: 600px;
}
.tag {
  background-color: #0d6efd;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 15px;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}
.hero-content h1 span {
  color: #2c3e50;
}
.hero-content h3 {
  color: #555;
  margin-bottom: 20px;
}
.info {
  list-style: none;
  line-height: 1.8;
  margin-bottom: 20px;
}
.info li i {
  margin-right: 10px;
  color: #2c3e50;
}
.social-icons a {
  margin-right: 15px;
  font-size: 18px;
  color: #333;
  text-decoration: none;
}

#about h2 {
  color: #2c3e50;
}
#about p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}
#about .btn-success {
  background-color: #0d6efd;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 30px;
}
#about .btn-success:hover {
  background-color: #0d6efd;
}

#services .service-icon {
  background-color: #0d6efd;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#services .service-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  min-height: 270px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.owl-nav button {
  background: #0d6efd !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
}
.owl-nav i {
  font-size: 1.2rem;
}

.svg-skill {
  position: relative;
  width: 100px;
  height: 100px;
  margin: auto;
}
.progress-ring {
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 10;
}
.ring-bar {
  fill: none;
  stroke: #0d6efd;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1s ease-out;
}
.percent-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* REMOVED rotate(90deg) */
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

.exp-card {
  background: #fff;
  border-radius: 8px;
  transition: 0.3s ease;
}
.exp-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

#portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: all 0.3s ease;
  gap: 1rem;
}

.portfolio-item {
  width: 300px;
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
}

.portfolio-item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  position: absolute;
}
.portfolio-box {
  position: relative;
  overflow: hidden;
}

.portfolio-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 204, 113, 0.85);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.portfolio-box:hover .overlay {
  opacity: 1;
}

.portfolio-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 71.93%; /* 880x633 = ~1.39 ratio (or use 100% for square) */
  overflow: hidden;
  border-radius: 8px;
}

.portfolio-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}



.overlay h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.filter-btn {
  margin: 0 5px 10px;
}
.filter-btn.active {
  background-color: #0d6efd;
  color: #fff;
  border: none;
}
.price-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.price-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}
.ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0d6efd;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 4px 15px;
  border-bottom-right-radius: 6px;
}
.pricing-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.pricing-list li:last-child {
  border-bottom: none;
}
.review-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  max-width: 300px;
  margin: auto;
}
.custom-input {
  background-color: #f7f7f7;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 1rem;
}

.custom-textarea {
  background-color: #f7f7f7;
  border: none;
  border-radius: 20px;
  padding: 15px 20px;
  font-size: 1rem;
  resize: none;
}


