/* Durkon Modern Style Definitions - Created for new modern UI */

:root {
  --primary-color: #0D1D40;
  --primary-light: rgba(13, 29, 64, 0.8);
  --secondary-color: #f5f5f5;
  --accent-color: #2C4F9E;
  --text-color: #333;
  --light-text: #fff;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 0;
  overflow: hidden;
  min-height: 85vh;
}

/* Hero Min-Height Override Class */
.hero-section-sm {
  min-height: 50vh;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://img.freepik.com/free-vector/abstract-technology-particle-background_52683-25766.jpg');
  background-size: cover;
  opacity: 0.2;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.hero-content h1 .text-highlight {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-content h1 .text-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(255, 255, 255, 0.3) 100%);
  border-radius: 5px;
  z-index: -1;
  opacity: 0.6;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image-container {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  text-align: center;
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  transform: perspective(800px) rotateY(-5deg);
  transition: all 0.5s ease;
  filter: brightness(1.05) contrast(1.05);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-overlay {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  pointer-events: none;
}

.hero-overlay-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-color) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.2;
  animation: pulse 8s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.1;
  }
  50% {
    transform: scale(1);
    opacity: 0.2;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.1;
  }
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Buttons */
.btn-hero-primary {
  background-color: var(--light-text);
  color: var(--primary-color);
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background-color: var(--light-text);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--light-text);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
  margin-top: -3rem;
  position: relative;
  z-index: 5;
}

.stats-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stats-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(13, 29, 64, 0.05);
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section styling */
.section-subtitle {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.section-desc {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin-top: 1rem;
}

/* Service Card - Genel Stiller */
.service-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
  transition: none; /* Hover efekti kaldırıldı */
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: none; /* Hover efekti kaldırıldı */
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

/* Services Cards Modern */
.service-card-modern {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-modern > p {
  flex-grow: 0;
}

.service-card-modern:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, transparent 50%, rgba(13, 29, 64, 0.03) 50%);
  border-radius: 0 0 0 100px;
  z-index: 0;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card-icon {
  margin-bottom: 1.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(13, 29, 64, 0.2);
}

.service-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1rem;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.25rem;
}

.service-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-color);
}

.service-link:hover:after {
  width: 100%;
}

.service-link i {
  margin-left: 0.35rem;
  transition: all 0.3s ease;
}

.service-link:hover i {
  transform: translateX(3px);
}

.service-link-container {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Why Us Section */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-us-card {
  display: flex;
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #fff;
  border-radius: 10px;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.why-us-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.why-us-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #666;
}

.why-us-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.why-us-image {
  object-fit: cover;
  height: auto;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  z-index: 2;
}

.experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 0.5rem;
}

.experience-badge .text {
  font-size: 0.9rem;
  line-height: 1.2;
}

/* Case Studies */
.case-study-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.case-study-image {
  position: relative;
  overflow: hidden;
}

.case-study-image img {
  transition: all 0.5s ease;
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
}

.case-study-content {
  padding: 2rem;
}

.case-study-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.case-study-tags span {
  background-color: rgba(13, 29, 64, 0.05);
  padding: 0.35rem 0.9rem;
  border-radius: 30px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* References Section */
.references-container {
  padding: 20px 0;
}

.references-container .row {
  margin: 0 -5px;
  justify-content: center;
}

.references-container .col-lg-2,
.references-container .col-md-3,
.references-container .col-6 {
  padding: 5px;
}

/* Logo alanı için temel stil */
.reference-logo-wrapper {
  background-color: #fff;
  border-radius: 4px;
  padding: 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  aspect-ratio: 1/1;
}

.reference-logo-wrapper:hover {
  transform: none !important;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03) !important;
}

/* Logo kapsayıcısı içerisindeki konumlandırma için */
.reference-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Logo görsel stili */
.reference-logo {
  max-width: 100%;
  max-height: 100%;
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  opacity: 0.8 !important; /* Hafif soluk gösterme (%80 opaklık) */
  filter: grayscale(0.1) !important; /* Çok hafif gri tonu */
  transition: all 0.3s ease !important;
}

/* Referanslar sayfası için özel stiller */
.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* Referans kartı özel stili */
.reference-card {
  transition: none !important;
  transform: none !important;
}

.reference-card:hover {
  transform: none !important;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03) !important;
  transition: none !important;
}

.reference-grid .service-card {
  background-color: #fff;
  border-radius: 4px;
  padding: 0;
  height: 100%;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03) !important;
  overflow: hidden;
  transition: none !important;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  transform: none !important;
}

.reference-grid .service-card:hover {
  transform: none !important;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03) !important;
  transition: none !important;
}

/* Tüm hover efektlerini kaldır */
.reference-logo-wrapper:hover,
.reference-logo:hover,
.reference-card:hover,
.reference-grid .service-card:hover,
.references-container .reference-logo-wrapper:hover,
body .reference-grid .service-card:hover {
  transform: none !important; 
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03) !important;
  transition: none !important;
  opacity: 1 !important;
  filter: none !important;
}

.reference-grid .logo-container {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reference-grid .logo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 90%;
  height: 90%;
}

.reference-grid .reference-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: none !important;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
  .reference-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .why-us-image-wrapper {
    margin-top: 3rem;
  }
  
  .experience-badge {
    position: relative;
    bottom: auto;
    left: auto;
    display: inline-flex;
    margin-top: 2rem;
  }
  
  .experience-badge .years {
    font-size: 2rem;
  }
  
  .service-card-modern {
    padding: 1.5rem;
  }
  
  .hero-content {
    padding: 4rem 0;
  }
}

@media (max-width: 767px) {
  #referenceCarousel .carousel-control-prev,
  #referenceCarousel .carousel-control-next {
    display: flex;
    width: 30px;
    height: 30px;
    top: calc(50% - 25px);
    background-color: rgba(13, 29, 64, 0.7);
  }
  
  #referenceCarousel .carousel-control-prev {
    left: 0;
  }
  
  #referenceCarousel .carousel-control-next {
    right: 0;
  }
  
  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  #referenceCarousel .reference-grid {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  #referenceCarousel .carousel-indicators {
    bottom: -10px;
  }
  
  #referenceCarousel {
    padding-bottom: 30px;
  }
}

/* Testimonial Cards */
.testimonial-card-modern {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  padding: 2.5rem 2rem 1.5rem;
  position: relative;
  flex-grow: 1;
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgba(13, 29, 64, 0.1);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.testimonial-author {
  padding: 1.5rem 2rem;
  background-color: rgba(13, 29, 64, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author-info {
  text-align: center;
}

.testimonial-author-info h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial-author-info p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: #666;
}

/* CTA Section */
.cta-section-modern {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #fff;
  overflow: hidden;
}

.cta-section-modern:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://cdn.pixabay.com/photo/2020/04/25/12/14/network-5090539_1280.jpg');
  background-size: cover;
  opacity: 0.08;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  color: #fff;
}

/* Özel Stil Sınıfları (Inline Stillerden Çevrildi) */
.section-title-start {
  margin-bottom: 2rem;
  text-align: start;
}

.section-title-light {
  margin-bottom: 2rem;
  color: var(--light-text);
}

.max-width-400 {
  max-width: 400px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.services-top-padding {
  padding-top: 5rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .service-card-modern {
    padding: 1.25rem;
  }
  
  .service-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .service-card-modern h3 {
    font-size: 1.3rem;
  }
  
  .hero-badge {
    width: 100%;
    justify-content: center;
    margin-right: 0;
    text-align: center;
  }
  
  .hero-badges .row {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .service-card-modern {
    padding: 1.25rem;
  }
  
  .service-card-modern h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .service-card-modern p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .service-link-container {
    padding-top: 0.5rem;
  }
  
  .service-features {
    margin: 1rem 0 0.75rem;
  }
  
  .service-features li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}

/* Referans Carousel Ayarları */
#referenceCarousel {
  margin: 0 auto;
  position: relative;
  padding-bottom: 50px;
}

#referenceCarousel .carousel-indicators {
  bottom: 0;
}

#referenceCarousel .carousel-indicators button {
  background-color: var(--primary-color);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.5;
}

#referenceCarousel .carousel-indicators button.active {
  opacity: 1;
}

#referenceCarousel .carousel-control-prev,
#referenceCarousel .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

#referenceCarousel .carousel-control-prev {
  left: -20px;
}

#referenceCarousel .carousel-control-next {
  right: -20px;
}

#referenceCarousel .carousel-control-prev:hover,
#referenceCarousel .carousel-control-next:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  #referenceCarousel .carousel-control-prev,
  #referenceCarousel .carousel-control-next {
    display: none;
  }
}

/* Müşteri Yorumları Carousel Stilleri */
#testimonialCarousel {
  position: relative;
  padding-bottom: 50px;
}

#testimonialCarousel .carousel-indicators {
  bottom: -40px;
}

#testimonialCarousel .carousel-indicators button {
  background-color: var(--primary-color);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.5;
  margin: 0 5px;
}

#testimonialCarousel .carousel-indicators button.active {
  opacity: 1;
  width: 12px;
  height: 12px;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

#testimonialCarousel .carousel-control-prev {
  left: -20px;
}

#testimonialCarousel .carousel-control-next {
  right: -20px;
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  #testimonialCarousel .carousel-control-prev,
  #testimonialCarousel .carousel-control-next {
    display: flex;
    width: 30px;
    height: 30px;
    top: 50%;
    background-color: rgba(13, 29, 64, 0.7);
    transform: translateY(-50%);
  }
  
  #testimonialCarousel .carousel-control-prev {
    left: -5px;
  }
  
  #testimonialCarousel .carousel-control-next {
    right: -5px;
  }
  
  #testimonialCarousel {
    padding-bottom: 30px;
    margin: 0 10px;
  }
  
  #testimonialCarousel .carousel-indicators {
    bottom: -25px;
  }
  
  #testimonialCarousel .service-card {
    padding: 15px;
  }
  
  #testimonialCarousel p {
    font-size: 14px;
  }
  
  #testimonialCarousel h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  #testimonialCarousel .carousel-indicators {
    bottom: -20px;
  }
  
  #testimonialCarousel {
    padding-bottom: 25px;
  }
  
  #testimonialCarousel .service-card {
    padding: 12px;
  }
  
  #testimonialCarousel .service-card-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 1.2rem;
  }
} 