/* style.css */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');

:root {
  --primary: #007bff;
  --secondary: #764ba2;
  --accent: #43e97b;
  --bg-light: #f8f9fa;
  --bg-dark: #22223b;
  --text-dark: #22223b;
  --text-light: #fff;
  --card-radius: 22px;
  --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.12);
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

body {
  font-family: 'Nunito', Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

/* NAVBAR */
#nav-bar {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  background: linear-gradient(90deg, #fff 60%, #e3e6f3 100%);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  padding: 0.7rem 1.5rem;
}

.navbar-brand img {
  height: 54px;
  transition: transform .2s;
}

.navbar-brand img:hover {
  transform: scale(1.08) rotate(-3deg);
}

.navbar-nav .nav-link {
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--primary) !important;
  margin: 0 0.5rem;
  border-radius: 8px;
  transition: background .2s, color .2s, transform .2s;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .active .nav-link {
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.08);
  transform: translateY(-2px) scale(1.04);
}

.language-selector select {
  border-radius: 8px;
  border: 1px solid #e3e6f3;
  font-weight: 600;
  background: #f8f9fa;
  margin-left: 1rem;
  transition: box-shadow .2s;
}

.language-selector select:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

.navbar-nav {
  flex-wrap: wrap;
}

/* HEADER SLIDER (INDEX PAGE) */
.slider {
  margin-top: 1rem;
  margin-bottom: 3rem;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

#headerSlider {
  border-radius: var(--card-radius);
  overflow: hidden;
}

.carousel-inner img {
  border-radius: var(--card-radius);
  min-height: 350px;
  max-height: 520px;
  object-fit: cover;
  width: 100%;
  filter: brightness(0.93) saturate(1.1);
}

.carousel-caption {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 60%, rgba(118, 75, 162, 0.3) 100%);
  border-radius: 12px;
  padding: 1.5rem 2.5rem;
  left: 10%;
  right: 10%;
  bottom: 18%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ABOUT (INDEX PAGE) */
#about {
  padding: 60px 0;
  background: linear-gradient(120deg, #f8f9fa 60%, #e3e6f3 100%);
}

#about .container {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

#about .container::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 80%);
  opacity: 0.08;
  z-index: 0;
}

#about h2 {
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

#about .about-content {
  font-size: 1.13rem;
  color: #444;
  margin-bottom: 1.2rem;
  z-index: 1;
  position: relative;
}

#about .btn {
  font-weight: 700;
  border-radius: 24px;
  padding: 0.6rem 2.2rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border: none;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.08);
  transition: background .2s, transform .2s;
}

#about .btn:hover {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: translateY(-2px) scale(1.04);
}

/* SERVICES (INDEX PAGE) */
#services {
  background: linear-gradient(120deg, #764ba2 0%, #43e97b 100%);
  color: #fff !important;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #fff 0%, transparent 80%);
  opacity: 0.07;
  z-index: 0;
}

#services h1 {
  text-align: center;
  font-weight: 900;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  z-index: 1;
  position: relative;
}

.services .col-md-3 {
  background: rgba(255, 255, 255, 0.13);
  border-radius: var(--card-radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  margin-bottom: 2rem;
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  transition: transform var(--transition), box-shadow var(--transition), background .2s;
  cursor: pointer;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.services .col-md-3:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(67, 233, 123, 0.13);
  z-index: 2;
}

.services .icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.08);
  border: 3px solid #fff;
  overflow: hidden;
}

.services .icon img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.services h3 {
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}

.services p {
  color: #e3e6f3;
  font-size: 1.01rem;
  margin-bottom: 1.2rem;
  min-height: 60px;
}

.services .btn-link {
  color: #fff;
  font-weight: 700;
  border-radius: 18px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  padding: 0.4rem 1.3rem;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.08);
  margin-top: 0.5rem;
  display: inline-block;
}

.services .btn-link:hover {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: #fff;
  transform: scale(1.07) translateY(-2px);
  text-decoration: none;
}

/* TEAM */
#team {
  padding: 70px 0;
  background: linear-gradient(120deg, #f8f9fa 60%, #e3e6f3 100%);
}

#team h1 {
  text-align: center;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

.profile-pic {
  margin-top: 25px;
  text-align: center;
  transition: transform .2s;
}

.profile-pic .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.1rem;
  position: relative;
}

.profile-pic .img-box img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--primary);
  box-shadow: 0 2px 12px rgba(0, 123, 255, 0.08);
  filter: grayscale(0.15);
  transition: filter .2s, border-color .2s;
}

.profile-pic .img-box img:hover {
  filter: grayscale(0) brightness(1.08);
  border-color: var(--secondary);
}

.profile-pic h2 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.profile-pic h3 {
  font-size: 1.01rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 0.5rem;
}

/* PROMO */
#promo {
  background: linear-gradient(90deg, var(--primary) 60%, var(--secondary) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

#promo::before {
  content: '\f0f3';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  left: 10%;
  top: 10%;
  z-index: 0;
  animation: floatBell 4s infinite alternate;
}

@keyframes floatBell {
  from { transform: translateY(0); }
  to { transform: translateY(18px); }
}

#promo .btn {
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 24px;
  padding: 0.7rem 2.5rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border: none;
  margin-top: 2rem;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.08);
  transition: background .2s, transform .2s;
  z-index: 1;
  position: relative;
}

#promo .btn:hover {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scale(1.07) translateY(-2px);
}

/* PARTNERS */
#partners {
  background: #f8f9fa;
  padding: 70px 0;
  text-align: center;
}

#partners h1 {
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

#partners .img-box img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: filter .2s, transform .2s;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.08);
}

#partners .img-box img:hover {
  filter: grayscale(0) brightness(1.1);
  transform: scale(1.08) rotate(-2deg);
}

#partners h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 1rem;
}

/* CONTACT */
#contact {
  background: linear-gradient(120deg, #e3e6f3 0%, #f8f9fa 100%);
  padding: 70px 0;
}

#contact .container {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

#contact h1 {
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px !important;
  border: 1.5px solid #e3e6f3 !important;
  font-size: 1.05rem;
  padding: 0.7rem 1.1rem;
  margin-bottom: 1.1rem;
  transition: border-color .2s, box-shadow .2s;
  background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.5);
  background: #fff;
}

.contact-form .btn {
  font-weight: 700;
  border-radius: 24px;
  padding: 0.6rem 2.2rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border: none;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.08);
  transition: background .2s, transform .2s;
}

.contact-form .btn:hover {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: translateY(-2px) scale(1.04);
}

.contact-info .follow {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin: 1rem 0;
  font-size: 1.05rem;
  color: #555;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-info .fa {
  color: var(--primary);
  font-size: 1.2rem;
}

#responseMessage {
  font-weight: 700;
  color: var(--accent);
  margin-top: 1rem;
  display: none;
}

/* FOOTER */
#footer {
  background: linear-gradient(90deg, var(--primary) 60%, var(--secondary) 100%);
  color: #fff;
  padding: 18px 0;
  text-align: center;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

#footer p {
  margin: 0;
}

/* --- Testimonials Slider Styles --- */
#testimonials {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h1 {
  font-size: 3rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.section-title h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  border-radius: 2px;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonials-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.quote-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 30px;
  display: block;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.testimonial-author {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.read-more-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: 15px;
  display: inline-block;
}

.read-more-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #007bff;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-controls:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #007bff;
  transform: scale(1.3);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: #fff;
  margin: 40px auto;
  padding: 0;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px 8px 24px;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}

.modal-title {
  margin: 0;
  font-size: 1.3em;
  color: #333;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2em;
  line-height: 1;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover { color: #333; }

.modal-text, .modal-author {
  padding: 16px 24px;
  overflow-y: auto;
}

.modal-text {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 60vh;
  white-space: pre-line;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0;
}

.modal-author {
  border-top: 1px solid #eee;
  color: #007bff;
  font-style: italic;
  font-size: 1em;
  background: #fafafa;
  font-weight: 600;
  text-align: right;
}

/* Testimonial Card Colors */
.testimonial-card:nth-child(1) { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.testimonial-card:nth-child(2) { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.testimonial-card:nth-child(3) { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.testimonial-card:nth-child(4) { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.testimonial-card:nth-child(5) { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }


/* --- SUB-PAGE STYLES (Services, Gallery, etc.) --- */
.service-header,
.gallery-header {
  background: linear-gradient(120deg, #764ba2 0%, #43e97b 100%);
  color: #fff;
  padding: 70px 0 50px 0;
  border-radius: 0 0 var(--card-radius) var(--card-radius);
  box-shadow: 0 8px 32px rgba(67, 233, 123, 0.07);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.service-header::before,
.gallery-header::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #fff 0%, transparent 80%);
  opacity: 0.08;
  z-index: 0;
}

.service-header h1,
.gallery-header h1 {
  font-weight: 900;
  font-size: 2.7rem;
  color: #fff !important;
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
  z-index: 1;
  position: relative;
}

.service-header p,
.gallery-header p {
  font-size: 1.2rem;
  color: #e3e6f3;
  margin-bottom: 0;
  z-index: 1;
  position: relative;
}

.service-content,
.gallery-container {
  padding: 40px 0 70px 0;
  background: linear-gradient(120deg, #f8f9fa 60%, #e3e6f3 100%);
  min-height: 100vh;
}

.service-intro {
  margin-bottom: 2.5rem;
  text-align: center;
}

.service-intro h2 {
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-size: 2rem;
}

.service-item {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  border-left: 7px solid var(--primary);
  transition: box-shadow .2s, border-color .2s;
}

.service-item:hover {
  box-shadow: 0 8px 32px rgba(67, 233, 123, 0.13);
  border-left: 7px solid var(--secondary);
}

.service-item h3 {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
}

.service-item img {
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  max-width: 100%;
  max-height: 260px;
  object-fit: cover;
}

.service-item ul {
  padding-left: 1.2rem;
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
  list-style-type: none;
}

.service-item li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  position: relative;
  padding-left: 20px;
}

.service-item li::before {
  content: '\f058'; /* Font Awesome check-circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 2px;
}

.service-item strong {
  color: var(--secondary);
}

.service-item p strong {
    font-weight: 700;
}

/* CTA BUTTONS */
.page-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.page-cta p {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.page-cta .btn {
  font-weight: 700;
  border-radius: 24px;
  padding: 0.7rem 2.5rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border: none;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.08);
  transition: background .2s, transform .2s;
  font-size: 1.1rem;
}

.page-cta .btn:hover {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scale(1.07) translateY(-2px);
}

/* GALLERY PAGE */
.gallery-category {
  margin-top: 40px;
}

.category-title {
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.3s;
  display: inline-block;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.category-title.active-category,
.category-title:hover {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

.thumbnail-gallery {
  margin-top: 20px;
}

.thumbnail-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 15px;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  border: 2px solid #fff;
}

.thumbnail-gallery img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(67, 233, 123, 0.13);
  border: 2px solid var(--primary);
}

.gallery-carousel {
  margin-top: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .services {
    flex-direction: column;
    gap: 1.5rem 0;
  }
  .services .col-md-3 {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 1.2rem 0.7rem;
  }
  .service-item,
  #about .container,
  #contact .container {
    padding: 1.2rem 0.7rem;
  }
  .service-header,
  .gallery-header {
    padding: 40px 0 30px 0;
  }
  .carousel-inner img {
    min-height: 180px;
    max-height: 320px;
  }
}

@media (max-width: 768px) {
  .service-header h1,
  .gallery-header h1 {
    font-size: 2rem;
  }
  .service-intro h2,
  .category-title {
    font-size: 1.1rem;
  }
  .service-item {
    padding: 1rem 0.5rem;
  }
  .service-item img {
    max-height: 160px;
  }
  .thumbnail-gallery img {
    height: 90px;
  }
  .testimonial-card {
    padding: 40px 30px;
  }
  .section-title h1 {
    font-size: 2.2rem;
  }
  .testimonial-text {
    font-size: 1.1rem;
  }
  .slider-controls {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .prev-btn { left: 15px; }
  .next-btn { right: 15px; }
  #promo {
    font-size: 1.2rem;
    padding: 40px 0;
  }
  .profile-pic .img-box img {
    width: 90px;
    height: 90px;
  }
  .skills-bar {
    margin-top: 2rem;
  }
}
