html {
html {
  font-size: 14px;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  margin-bottom: 60px;
}

/* Icon Styles */
.fa {
  margin-right: 8px;
  color: #00bfe7;
}

.section-title span .fa {
  font-size: 18px;
  margin-right: 10px;
}

.about__text__desc h5 .fa {
  font-size: 16px;
  margin-right: 10px;
}

.breadcrumb__text h2 .fa {
  font-size: 24px;
  margin-right: 10px;
  color: #ffffff;
}

.breadcrumb__links a .fa {
  font-size: 14px;
  margin-right: 5px;
  color: #ffffff;
}

.breadcrumb__links span .fa {
  font-size: 12px;
  margin: 0 5px;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial__text .fa {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0 5px;
}

.testimonial__author__text .fa {
  font-size: 12px;
  margin-right: 5px;
}

.skills__item__text h5 .fa {
  font-size: 14px;
  margin-right: 8px;
}

.services__item__icon .fa {
  color: #00bfe7 !important;
  transition: transform 0.3s ease;
}

.services__item:hover .services__item__icon .fa {
  transform: scale(1.1);
}

.services__item h4 .fa {
  font-size: 14px;
  margin-right: 8px;
}

.services__item p .fa {
  font-size: 12px;
  margin-right: 5px;
}

.counter__item__text .fa {
  color: #00bfe7 !important;
  margin-bottom: 15px;
}

.counter__item__text p .fa {
  font-size: 14px;
  margin-right: 8px;
}

/* Skills Section Enhancements */
.skills__content {
  margin-top: 10px;
}

.skills__item {
  margin-bottom: 18px;
}

.skills__item__text h5 {
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
}

.skills__item__progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

.skills__item__bar {
  background: rgba(255, 255, 255, 0.12);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  flex: 1 1 auto;
}

.skills__item__bar__inner {
  background: #00bfe7;
  height: 100%;
  width: 0; /* JS ile data-width kadar set edilecek */
  transition: width 0.8s ease;
}

.skills__item__progress span {
  color: #ffffff;
  min-width: 38px;
  text-align: right;
}

/* Testimonial Section Enhancements */
.testimonial {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/videograph-master/img/testimonial-bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}

.testimonial__item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial__text {
  margin-bottom: 20px;
}

.testimonial__text p {
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial__author__pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00bfe7;
}

.testimonial__author__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__author__text h5 {
  color: #ffffff;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.testimonial__author__text span {
  color: #00bfe7;
  font-size: 14px;
  display: block;
}

.testimonial__author__text small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

/* Responsive Testimonial */
@media (max-width: 768px) {
  .testimonial__item {
    padding: 20px;
    margin: 10px;
  }
  
  .testimonial__author__pic {
    width: 50px;
    height: 50px;
  }
  
  .testimonial__author__text h5 {
    font-size: 16px;
  }
  
  .testimonial__author__text span {
    font-size: 13px;
  }
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Themed sections on dark background so white texts are visible */
.skills,
.experience,
.education {
  background: #100028;
}

/* Contact Page Social Media Styles */
.contact__social {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.contact__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(229, 54, 55, 0.1);
  color: #e53637;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact__social a:hover {
  background: #e53637;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(229, 54, 55, 0.3);
  border-color: #e53637;
}

.contact__social a i {
  margin: 0;
}

@media (max-width: 768px) {
  .contact__social {
    gap: 10px;
  }
  
  .contact__social a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}