/* Custom Service Images Styles */
.services .service-item .icon.service-icon-img {
  width: 100px;
  height: 100px;
  background: rgba(25, 119, 204, 0.1);
  padding: 15px;
  border-radius: 8px;
  position: relative;
  overflow: visible;
  margin-bottom: 20px;
  transition: all ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .service-item .icon.service-icon-img::before {
  display: none;
}

.services .service-item .service-image {
  width: 100%;
  height: 100%;
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
  transition: all ease-in-out 0.3s;
  filter: brightness(1);
  display: block;
  opacity: 1;
}

.services .service-item:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.services .service-item:hover .service-image {
  transform: scale(1.1);
  filter: brightness(1.2) contrast(1.15) saturate(1.1);
  opacity: 1;
}

.services .service-item:hover .icon.service-icon-img {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
}

/* Feature Boxes Section Styles */
.feature-boxes .feature-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-boxes .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.feature-boxes .feature-box .icon {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature-boxes .feature-box h3 {
  color: var(--default-color);
  margin-bottom: 15px;
  font-size: 22px;
}

.feature-boxes .feature-box p {
  color: var(--text-color);
  line-height: 1.8;
}

/* About Page Feature Box Styles */
#why-choose-us .feature-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

#why-choose-us .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

#why-choose-us .feature-box .icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#why-choose-us .feature-box .icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

#why-choose-us .feature-box h3 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

#why-choose-us .feature-box p {
  color: var(--default-color);
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 0;
}

/* Blog Card Styles */
.blog-card {
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15) !important;
}

.blog-card:hover img {
  transform: scale(1.05);
}

/* Recruitment Process Styles */
#recruitment-process .section-title {
  padding-bottom: 40px;
}

#recruitment-process .section-title p {
  margin-bottom: 10px;
}

.recruitment-step {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.recruitment-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.recruitment-step .step-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruitment-step .step-icon > div {
  transition: transform 0.3s ease;
}

.recruitment-step:hover .step-icon > div {
  transform: scale(1.05);
}

.recruitment-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.recruitment-step p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Step 1: Purple Smartphone with Green Checkmark */
.step-icon-1 .phone-icon {
  width: 70px;
  height: 100px;
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  border-radius: 18px;
  position: relative;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.step-icon-1 .phone-screen {
  width: 60px;
  height: 80px;
  background: #fff;
  border-radius: 12px;
  position: absolute;
  top: 8px;
  left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-1 .checkmark-on-screen {
  color: #10B981;
  font-size: 32px;
}

/* Step 2: Light Blue Document with Red Stamp */
.step-icon-2 .document-icon {
  width: 70px;
  height: 90px;
  position: relative;
}

.step-icon-2 .document-paper {
  width: 70px;
  height: 90px;
  background: linear-gradient(135deg, #93C5FD 0%, #60A5FA 100%);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.step-icon-2 .document-paper::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
}

.step-icon-2 .document-paper::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
}

.step-icon-2 .red-stamp {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: #EF4444;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(15deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
}

.step-icon-2 .stamp-content {
  color: #fff;
  font-size: 16px;
}

/* Step 3: Blue Clipboard with COMPLIANCE Badge */
.step-icon-3 .clipboard-icon {
  width: 80px;
  height: 100px;
  position: relative;
}

.step-icon-3 .clipboard-board {
  width: 70px;
  height: 90px;
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  border-radius: 8px 8px 4px 4px;
  position: relative;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-icon-3 .clipboard-board::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 12px;
  background: #1E40AF;
  border-radius: 4px 4px 0 0;
}

.step-icon-3 .compliance-label {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #10B981;
  color: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
}

.step-icon-3 .checkmarks-group {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-icon-3 .checkmarks-group i {
  color: #10B981;
  font-size: 16px;
  background: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step 4: Two Figures at Desk with Laptop */
.step-icon-4 .interview-icon-wrapper {
  width: 100px;
  height: 80px;
  position: relative;
}

.step-icon-4 .desk-icon {
  width: 100px;
  height: 8px;
  background: #8B5CF6;
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.step-icon-4 .person-left {
  position: absolute;
  left: 15px;
  bottom: 8px;
}

.step-icon-4 .person-left .person-head {
  width: 20px;
  height: 20px;
  background: #6366F1;
  border-radius: 50%;
  margin-bottom: 2px;
}

.step-icon-4 .person-left .person-body {
  width: 24px;
  height: 30px;
  background: #6366F1;
  border-radius: 4px;
}

.step-icon-4 .person-right {
  position: absolute;
  right: 15px;
  bottom: 8px;
}

.step-icon-4 .person-right .person-head {
  width: 20px;
  height: 20px;
  background: #6366F1;
  border-radius: 50%;
  margin-bottom: 2px;
}

.step-icon-4 .person-right .person-body {
  width: 24px;
  height: 30px;
  background: #6366F1;
  border-radius: 4px;
}

.step-icon-4 .laptop-icon {
  width: 40px;
  height: 25px;
  background: #4F46E5;
  border-radius: 4px;
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
}

.step-icon-4 .laptop-icon::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 3px;
  background: #6366F1;
  border-radius: 2px;
}

/* Step 5: Green Circular Stamp with APPROVED */
.step-icon-5 .approved-stamp {
  position: relative;
  width: 100px;
  height: 100px;
}

.step-icon-5 .stamp-circle {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-5 .stamp-star {
  color: #fff;
  font-size: 40px;
  position: relative;
  z-index: 2;
}

.step-icon-5 .stamp-star i {
  color: #fff;
  font-size: 40px;
}

.step-icon-5 .stamp-circle::after {
  content: '★';
  color: #F59E0B;
  font-size: 24px;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
}

.step-icon-5 .approved-text {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #10B981;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 2px solid #10B981;
}

/* Step 6: Two Figures at Desk with Laptops and Speech Bubble */
.step-icon-6 .working-icon-wrapper {
  width: 100px;
  height: 80px;
  position: relative;
}

.step-icon-6 .desk-icon-2 {
  width: 100px;
  height: 8px;
  background: #F59E0B;
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.step-icon-6 .person-left-2 {
  position: absolute;
  left: 15px;
  bottom: 8px;
}

.step-icon-6 .person-left-2 .person-head-2 {
  width: 20px;
  height: 20px;
  background: #F59E0B;
  border-radius: 50%;
  margin-bottom: 2px;
}

.step-icon-6 .person-left-2 .person-body-2 {
  width: 24px;
  height: 30px;
  background: #F59E0B;
  border-radius: 4px;
}

.step-icon-6 .speech-bubble-icon {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 28px;
  height: 28px;
  background: #3B82F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
}

.step-icon-6 .speech-bubble-icon i {
  color: #fff;
  font-size: 14px;
}

.step-icon-6 .person-right-2 {
  position: absolute;
  right: 15px;
  bottom: 8px;
}

.step-icon-6 .person-right-2 .person-head-2 {
  width: 20px;
  height: 20px;
  background: #F59E0B;
  border-radius: 50%;
  margin-bottom: 2px;
}

.step-icon-6 .person-right-2 .person-body-2 {
  width: 24px;
  height: 30px;
  background: #F59E0B;
  border-radius: 4px;
}

.step-icon-6 .laptop-icon-2 {
  width: 40px;
  height: 25px;
  background: #D97706;
  border-radius: 4px;
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
}

.step-icon-6 .laptop-icon-2::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 3px;
  background: #F59E0B;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .recruitment-step {
    padding: 30px 20px;
  }
  
  #recruitment-process .section-title h2 {
    font-size: 32px;
  }
  
  .recruitment-step .step-icon {
    height: 80px;
  }
}

/* Blog Page Styles */
#blogs {
  padding: 80px 0;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.blog-date-badge .date-day {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.blog-date-badge .date-month {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.blog-meta .blog-author,
.blog-meta .blog-category,
.blog-meta .blog-comments {
  color: #666;
}

.blog-meta .blog-separator {
  color: #ccc;
  margin: 0 5px;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: var(--heading-font);
}

.blog-excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-read-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  gap: 10px;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  #blogs {
    padding: 60px 0;
  }
  
  .blog-image-wrapper {
    height: 220px;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-title {
    font-size: 18px;
  }
  
  .blog-excerpt {
    font-size: 14px;
  }
}

/* Progress Bars Styles */
.progress-section .progress-item {
  margin-bottom: 20px;
}

.progress-section .progress-label {
  font-weight: 600;
  color: var(--default-color);
}

.progress-section .progress-percentage {
  font-weight: 600;
  color: var(--accent-color);
}

.progress-section .progress {
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.progress-section .progress-bar {
  background-color: var(--accent-color);
  transition: width 0.6s ease;
}

/* Testimonial Section Styles - Redesigned */
.testimonials.section.light-background {
  background-color: #e8f4fd !important;
  padding: 70px 0;
}

.testimonials .section-title {
  padding-bottom: 45px;
}

.testimonials .section-title h2 {
  color: var(--heading-color);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
}

.testimonials .section-title h2 em {
  color: var(--accent-color);
  font-style: normal;
  font-weight: 700;
}

.testimonials-slider-wrapper {
  padding: 0 15px;
}

.testimonials-slider {
  padding-bottom: 0px;
  overflow: visible;
}

.testimonials-slider {
  height: auto !important;
}

.testimonials-slider .swiper-wrapper {
  align-items: flex-start !important;
  height: auto !important;
}

.testimonials-slider .swiper-slide {
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  display: flex;
  align-items: stretch;
}

.testimonials .testimonial-item {
  background: transparent !important;
  padding: 15px 20px !important;
  border-radius: 0;
  box-shadow: none !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  border-top: none !important;
  box-sizing: border-box !important;
}

.testimonials .testimonial-item::before {
  display: none;
}

.testimonials .testimonial-item:hover {
  transform: none;
  box-shadow: none;
}

.testimonials .testimonial-content {
  flex: 1;
  margin-bottom: 12px;
  position: relative;
}

.testimonials .testimonial-content blockquote {
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
}

.testimonials .testimonial-content blockquote::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 24px;
  color: var(--accent-color);
  opacity: 0.15;
  position: absolute;
  left: 0;
  top: -2px;
  line-height: 1;
}

.testimonials .testimonial-content blockquote p {
  font-style: normal;
  color: var(--default-color);
  line-height: 1.5;
  font-size: 14px;
  margin: 0;
  padding-left: 28px;
  position: relative;
  font-weight: 400;
}

.testimonials .testimonial-author {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonials .testimonial-author::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
  display: inline-block;
}

.testimonials .testimonial-author h4 {
  color: var(--heading-color);
  font-weight: 600;
  margin: 0;
  font-size: 16px;
  font-style: normal;
}

/* Swiper Pagination Styles */
.testimonials-pagination {
  position: relative;
  margin-top: 35px;
  text-align: center;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 991px) {
  .testimonials.section.light-background {
    padding: 60px 0;
  }

  .testimonials .section-title h2 {
    font-size: 28px;
  }

  .testimonials .testimonial-item {
    padding: 25px 22px;
  }

  .testimonials-slider-wrapper {
    padding: 0;
  }

  .testimonials .testimonial-content blockquote p {
    font-size: 14px;
    padding-left: 30px;
  }

  .testimonials .testimonial-content blockquote::before {
    font-size: 28px;
  }
}

/* Accreditation Section Styles */
.accreditation {
  background: var(--default-color);
}

.accreditation .section-title h2 {
  color: #fff;
}

.accreditation .section-title h2 em {
  color: var(--accent-color);
}

.accreditation .accreditation-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.accreditation .accreditation-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.accreditation .accreditation-logo {
  padding: 20px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accreditation .accreditation-logo h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.accreditation .accreditation-item:hover .accreditation-logo h4 {
  opacity: 1;
}

/* Contact Form Styles */
.contact {
  padding: 80px 0;
}

.contact .contact-form-wrapper {
  background: var(--accent-color);
  padding: 45px 40px;
  border-radius: 0;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact .contact-form-wrapper h5 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
  text-transform: none;
}

.contact .contact-form-wrapper .form-control,
.contact .contact-form-wrapper .form-select {
  border-radius: 0;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 14px 18px;
  font-size: 15px;
  width: 100%;
}

.contact .contact-form-wrapper .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.contact .contact-form-wrapper .form-select {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}

.contact .contact-form-wrapper .form-select option {
  background-color: var(--accent-color);
  color: #fff;
}

.contact .contact-form-wrapper .form-control:focus,
.contact .contact-form-wrapper .form-select:focus {
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: #fff;
  box-shadow: none;
  outline: none;
}

.contact .contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact .contact-form-wrapper .btn-primary {
  background: var(--accent-color) !important;
  color: #fff !important;
  border: 2px solid var(--accent-color) !important;
  padding: 16px 40px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 1px;
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
}

.contact .contact-form-wrapper .btn-primary:hover {
  background: #E55A2B !important;
  color: #fff !important;
  border-color: #E55A2B !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.contact .contact-form-wrapper .btn-primary:active {
  background: #E55A2B !important;
  color: #fff !important;
  border-color: #E55A2B !important;
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.contact .contact-image {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.contact .contact-image img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}

@media (max-width: 991px) {
  .contact {
    padding: 60px 0;
  }

  .contact .contact-form-wrapper {
    padding: 35px 30px;
    margin-bottom: 30px;
  }

  .contact .contact-image img {
    min-height: 400px;
  }
}

/* Footer Professional Styles */
.footer {
  background-color: var(--background-color) !important;
}

.footer .footer-about .logo img {
  max-height: 45px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.footer .footer-about .logo .sitename {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 1px;
}

.footer-contact {
  margin-top: 0;
}

.footer-contact p {
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.footer-contact p strong {
  color: var(--heading-color);
  font-weight: 600;
}

.footer-contact p a {
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact p a:hover {
  color: var(--accent-color);
}

.footer .footer-links h4 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: all 0.3s ease;
}

.footer .footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 0;
}

.footer .copyright .sitename {
  color: var(--heading-color);
  font-weight: 700;
}

.footer .copyright a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .copyright a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .credits a {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-about .logo .sitename {
    font-size: 24px;
  }
}

