/*
  Author: Vizido
  Owner: Vizido
  Date: 2025-08-06
  Description: Basic styles for the project
*/

@font-face {
  font-family: 'Font Awesome 6 Brands';
  src: url('fonts/fa-brands-400.woff2') format('woff2');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'bootstrap-icons';
  src: url('fonts/bootstrap-icons.woff2') format('woff2');
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}

/************************************************************/
/*                        HEADER                            */
/************************************************************/
	html {overflow-x: hidden;}
	body {
      position: relative;
      min-height: 100vh;
      margin: 0;
	  overflow-x: hidden;
    }
    /* Header sa žutom linijom */
    header {
      background: #222;
      color: white;
      padding: 10px 20px;
      border-bottom: 4px solid #F1E728; /* žuta linija */
      font-weight: 600;
      font-size: 1.2rem;
      user-select: none;
    }
    .info-top {
      background-color: #F1E728;
      height: 40px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
    }

    .info-top-content {
      white-space: nowrap;
      display: inline-block;
      position: absolute;
      font-size: 18px;
      font-weight: bold;
      color: #111;
      will-change: transform;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .no-js .info-top-content {
      opacity: 1 !important;
      animation: none !important;
    }

    .info-top-content:hover {
      animation-play-state: paused;
    }

    .info-part { display: inline-block; }
    .separator { color: #111; font-weight: bold; }

    footer {
      height: 60px;
      background: #F1E728;
      color: white;
      /* position: fixed; */
      bottom: 0; left: 0; right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1030;
    }

    .social-icons a {
	color: #000;
    margin: 0 10px;
    font-size: 1.1rem;
    transition: color 0.3s;
    border: 1px solid #000;
    border-radius: 4px;
    width: 30px;
    height: 32px;
    display: inline-block;
    text-align: center;
    line-height: 29px;
    padding: 0;
    box-sizing: border-box;
    }
    .social-icons a:hover {
      color: #333;
      border-color: #333;
    }

    #sidebarToggle {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      background: #F1E728;
      border: none;
      color: #222;
      padding: 10px 15px;
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
      cursor: pointer;
      z-index: 1040;
      font-weight: 700;
      font-size: 2.2rem;
      box-shadow: 0 0 8px rgba(241, 231, 40, 0.7);
      transition: background-color 0.3s;
    }
    #sidebarToggle:hover {
      background-color: #d9cd22;
    }

    #sidebarMenu {
      position: fixed;
      right: -320px;
      top: 0;
      height: 100vh;
      width: 320px;
      background: #343a40;
      color: white;
      padding: 20px 20px 0px 20px;
      transition: right 0.3s ease;
      z-index: 1050;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }
    #sidebarMenu.show {
      right: 0;
    }

    #sidebarHeader {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }
    #sidebarHeader h4 {
      margin: 0;
      font-weight: 600;
      color: #F1E728;
    }
    #sidebarCloseBtn {
      background: none;
      border: none;
      color: #F1E728;
      font-size: 2.5rem;
      cursor: pointer;
      padding: 0;
      line-height: 1;
      transition: color 0.3s;
    }
    #sidebarCloseBtn:hover {
      color: #fff;
    }

    #sidebarMenu a {
      color: white;
      display: block;
      padding: 10px 0;
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid #495057;
      transition: background-color 0.3s, color 0.3s;
    }
    #sidebarMenu a:hover {
      /* background: #4950572e; */
      color: #F1E728;
      text-decoration: none;
    }
	
	#sidebarMenu ul li div div a {
	  border-bottom: 0px solid red;
	}
	#sidebarMenu ul li div div a:hover {
	  background: none !important;
	  color: inherit !important;
	  text-decoration: none !important;
	}

    @media (max-width: 576px) {
      #sidebarMenu {
        width: 100%;
        right: -100%;
      }
      #sidebarMenu.show {
        right: 0;
      }
      #sidebarToggle {
        transform: none;
      }
    }

    /* Overlay koji pokriva stranicu kad je meni otvoren */
    #sidebarOverlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.5);
      z-index: 1045; /* između body i sidebar menija */
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
    }
    #sidebarOverlay.show {
      opacity: 1;
      visibility: visible;
    }
	/* */
.sidebar-social-icons {
  margin-top: auto;
  border-top: 1px solid #495057; /* gornja linija */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  box-sizing: border-box;
  background-color: #343a40; /* pozadina sidebar-a, da se vidi razmak */
  position: sticky;  /* ili fixed ako želiš fiksno na dnu */
  bottom: 0;
  left: 0;
  /* ako sticky ne radi kako treba, koristi position: absolute i parent position: relative */
}

.sidebar-social-icons a.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 42px;
  border: none; 
  color: white;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
}

/* Dodaj bele linije između ikonica */
.sidebar-social-icons a.social-icon:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #495057;
}
/**/

.title-for-sections h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.title-for-sections p {
  font-size: 1.125rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}


/************************************************************/
/*                        PROMO                             */
/************************************************************/


#promo-section {
  position: relative;
  padding: 100px 0;
  background: #f9f9f9;

}



.promo-wrapper {
  position: relative;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--accent-color), transparent 92%);
  overflow: hidden;
}

.promo-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.promo-shapes .promo-shape {
  position: absolute;
  border-radius: 50%;
}

.promo-shape-alpha {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  top: -150px;
  right: -100px;
}

.promo-shape-beta {
  width: 200px;
  height: 200px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 95%) 100%);
  bottom: -100px;
  left: 20%;
}

.promo-shape-gamma {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, color-mix(in srgb, var(--heading-color), transparent 92%) 100%);
  top: 30%;
  left: -75px;
}

.promo-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
}

.label-highlight {
  display: inline-block;
  background-color: #F1E728;
  color: var(--accent-color);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.promo-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.promo-description {
  color: #000;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.features-row {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.icon-container {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: #F1E728;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.feature-text h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.feature-text p {
  margin: 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.btn-group .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #F1E728;
  border-color: #000;
  color: #000;
}

.btn-primary:hover {
  color: #000 !important;
  background-color: #F1E728 !important;
  border-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, #000, transparent 80%);
}

.btn-outline-secondary {
  color:#000;
  border-color: #000;
  background-color: #fff;
}

.btn-outline-secondary:hover {
  color:#000 !important;
  background-color: #FFF !important;
  box-shadow: 0 10px 20px color-mix(in srgb, #000, transparent 80%);
  transform: translateY(-3px);
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  color: var(--heading-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.guarantee-badge i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

/* Image Container */
.image-wrapper {
  position: relative;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  z-index: 2;
}

.main-promo-image {
  position: relative;
  z-index: 2;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
}

/* Floating Elements */
.floating-info {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.floating-info i {
  color: #F1E728;
  font-size: 1.1rem;
}

.floating-info span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.floating-info.info-1 {
  top: 20%;
  left: 0;
  animation: float1 4s ease-in-out infinite;
}

.floating-info.info-2 {
  bottom: 25%;
  right: 0;
  animation: float2 5s ease-in-out infinite;
}

/* Pattern Dots */
.pattern-overlay {
  position: absolute;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(color-mix(in srgb, #000, transparent 40%) 2px, transparent 2px);
  background-size: 15px 15px;
  bottom: 10%;
  left: 10%;
  z-index: 1;
  border-radius: 20px;
  opacity: 0.6;
}

/* Float animations */
@keyframes float1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  #promo-section {
    padding: 70px 0;
  }

  .row.no-gutters {
    flex-direction: column-reverse;
  }

  .image-wrapper {
    padding: 2rem;
    min-height: 350px;
  }

  .floating-info.info-1 {
    top: 15%;
    left: 10%;
  }

  .floating-info.info-2 {
    bottom: 15%;
    right: 10%;
  }

  .promo-content {
    padding: 2rem !important;
  }

  .promo-title {
    font-size: 2rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-group .btn {
    width: 100%;
  }

  .guarantee-badge {
    margin-left: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  #promo-section {
    padding: 50px 0;
  }

  .promo-content {
    padding: 1.5rem !important;
  }

  .promo-title {
    font-size: 1.75rem;
  }

  .features-row .col-md-6 {
    margin-bottom: 1rem;
  }

  .image-wrapper {
    min-height: 300px;
  }

  .floating-info {
    padding: 0.5rem 0.75rem;
  }

  .floating-info span {
    font-size: 0.8rem;
  }

  .promo-shape-alpha,
  .promo-shape-beta,
  .promo-shape-gamma {
    transform: scale(0.7);
  }
}



/************************************************************/
/*                    Sta radimo                            */
/************************************************************/
.container.feature-section {
  padding: 3rem 1rem;
}

.feature-boxes {
  margin-top: 2rem;
}

.feature-boxes .feature-box {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-boxes .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-boxes .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(243, 231, 40, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.feature-boxes .feature-icon i {
  font-size: 1.5rem;
  line-height: 1;
  color: #000;
}

.feature-boxes .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-boxes .feature-text {
  font-size: 0.95rem;
  color: #666;
}

/* Responsive za veće ekrane */
@media (min-width: 768px) {
  .feature-boxes .feature-box {
    text-align: left;
    align-items: flex-start;
    flex-direction: row;
  }

  .feature-boxes .feature-icon {
    margin-right: 1rem;
    margin-bottom: 0;
  }
}

/* Kontakt lista unutar sidebar-a */
.contact-list-one {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-list-one li {
  margin-bottom: 1.2rem;
}

.contact-info-box {
  display: flex;
  align-items: flex-start;
}

.contact-info-box i {
  font-size: 1.5rem;
  color: #F1E728;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-box .title {
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #F1E728;
  font-size: 1rem;
}

.contact-info-box a {
  color: white;
  text-decoration: underline;
  font-weight: 400;
  word-break: break-word;
}

.contact-info-box a:hover,
.contact-info-box a:focus {
  color: #F1E728;
  text-decoration: none;
  outline: none;
}

/************************************************************/
/*                       KONTAKT                            */
/************************************************************/
#posaljite-nam .nova-forma-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  #posaljite-nam .nova-forma-wrapper {
    grid-template-columns: 45% 55%;
    align-items: start;
  }
}

#posaljite-nam .slika-kontakt img {
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  object-position: center center;
  display: block; /* da ukloniš eventualni space ispod slike */
  margin: 0 auto; /* centriranje slike ako je u blok kontejneru */
}

#posaljite-nam .info-kartice {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

#posaljite-nam .kartica {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f9f9f9;
}

#posaljite-nam .ikona {
  width: 50px;
  height: 50px;
  background-color: #F1E728;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 22px;
}

#posaljite-nam .tekst h4 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #000;
}

#posaljite-nam .tekst p {
  margin: 0;
  color: #000;
  font-size: 16px;
}

#posaljite-nam .forma-kartica {
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f9f9f9;
}

#posaljite-nam .forma-kartica h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #000;
}

#posaljite-nam .forma-kartica p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #000;
}

.forma-poruka .form-control {
  border-radius: 10px;
  padding: 14px 20px;
  border: 1px solid #ccc;
}

.forma-poruka button {
  background-color: #F1E728;
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  width: 100%;
}


.loading,
.sent-message,
.error-message {
  display: none;
  font-size: 14px;
}

.sent-message {
  color: green;
}

.error-message {
  color: red;
}

/************************************************************/
/*                        FAQ                               */
/************************************************************/

.question-wrapper {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}

.question-item {
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease;
}

.question-item:last-child {
  border-bottom: none;
}

.question-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #fafafa;
  transition: background-color 0.3s ease;
}

.question-item.question-active .question-header {
  background-color: #fffde7;
}

.question-header h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  color: #333;
}

.question-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  background-color: #fff;
}

.question-item.question-active .question-content {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
}

.question-content .content-inner {
  padding: 15px 20px;
  font-size: 0.95rem;
  color: #555;
  border-top: 1px solid #eee;
}

.question-toggle {
  font-size: 1.5rem;
  color: #000;
}

.question-toggle i {
  display: none;
}

.question-toggle i.bi-plus {
  display: inline-block;
}

.question-item.question-active .question-toggle i.bi-plus {
  display: none;
}

.question-item.question-active .question-toggle i.bi-dash {
  display: inline-block;
}

.question-header i.bi-question-circle {
  background-color: #ffeb3b;
  color: #000;
  font-weight:600;
  font-size: 1.5rem;
  padding: 0px 8px;
  border-radius: 50%;
  margin-right: 10px;
}

/************************************************************/
/*                        TESTEMONIAL                       */
/************************************************************/

.utisci {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
    position: relative;
}

.utisci .swiper-wrapper {
  height: auto !important;
}

.utisci .swiper-slide {
  display: flex !important;            /* omogućava flex da bismo centrirali sadržaj */
  justify-content: center !important;  /* horizontalno centriranje */
  align-items: center !important;      /* vertikalno centriranje */
  width: 100% !important;               /* slajd zauzima celu širinu */
}

.utisci .utisci-card {
  max-width: 500px;
  width: 100%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  margin: 0 auto;
}

.utisci .utisci-card:hover {
  border-color: #007bff;
}

.utisci .utisci-content {
  padding: 40px 30px 30px;
  position: relative;
  flex-grow: 1;
}

.utisci .utisci-content p {
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(0,0,0,0.8);
}

.utisci .utisci-content .quote-icon {
  position: absolute;
  top: 0px;
  left: 20px;
  font-size: 32px;
  color: rgba(0,123,255,0.2);
  z-index: 0;
  opacity: 0.8;
}

.utisci .utisci-profile {
  padding: 20px 30px;
  background-color: rgba(0,0,0,0.05);
  border-top: 1px solid rgba(0,0,0,0.1);
}

.utisci .rating {
  margin-bottom: 15px;
}

.utisci .rating i {
  color: #ffc107;
  margin-right: 3px;
  font-size: 14px;
}

.utisci .profile-info {
  display: flex;
  align-items: center;
}

.utisci .profile-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-right: 15px;
}

.utisci .profile-info div {
  flex: 1;
}

.utisci .profile-info h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.utisci .profile-info h4 {
  margin: 0;
  font-size: 13px;
  color: #333;
  font-weight: 500;
}

.utisci .swiper-pagination {
  position: absolute;
  bottom: 10px; /* malo odmak od dna kartice */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
   z-index: 10;  
}

.utisci .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 193, 7, 0.4); /* žuta sa prozirnošću */
  opacity: 1;
  border-radius: 50%;
  margin: 0 4px !important;
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.utisci .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc107; /* jarka žuta */
  width: 25px;
  border-radius: 5px;
}


@media (max-width: 767px) {
  .utisci .utisci-content {
    padding: 40px 20px 10px;
  }

  .utisci .utisci-content p {
    font-size: 15px;
  }

  .utisci .utisci-content .quote-icon {
    font-size: 36px;
    left: 20px;
  }

  .utisci .utisci-profile {
    padding: 15px 20px;
  }

  .utisci .profile-info img {
    width: 45px;
    height: 45px;
  }
}


.utisci .swiper-slide {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

.utisci .swiper-slide.swiper-slide-active {
  /* aktivni slajd je vidljiv */
  opacity: 1;
  transition: opacity 0.1s ease;
}

.utisci .swiper-slide:not(.swiper-slide-active) {
  /* ostali slajdovi su nevidljivi za fade efekat */
  opacity: 0;
  pointer-events: none; /* da ne mogu da se kliknu */
  transition: opacity 0.1s ease;
}

#info-section .row > .col-md-6:last-child {
  margin-top: 20px;
}

/************************************************************/
/*                        NASI RADOVI                       */
/************************************************************/

.custom-services-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.custom-swiper {
  position: relative;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
}

.custom-service-card {
  width: 300px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin: 0 10px;
  display: flex;
  flex-direction: column;
}

.custom-service-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: left;
  position: relative;
}

.card-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #555;
}

.card-number {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 12px;
  color: #000;
}

.swiper-nav {
  margin-top: 20px;
  text-align: center;
}

.swiper-button-prev, .swiper-button-next {
  background: #F1E728;/* #ffc107 */
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  color: #000;
  font-size: 18px;
  margin: 0 5px;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
  background: #ffca2c;
}
