

  .logo-part-1 {
    font-size: 26px;
    font-weight: bold;
    color: #ff6600;
  }

  .logo-part-2 {
    font-size: 22px;
    color: #333;
  }

  @media (max-width: 576px) {
    .logo-part-1 {
      font-size: 20px;
    }

    .logo-part-2 {
      font-size: 18px;
    }
  }

  /* ------------------------
     GENERAL SERVICE SECTION
  ------------------------ */
  .ftco-service-image-1 .service {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .ftco-service-image-1 .service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .ftco-service-image-1 img {
    border-radius: 8px;
    height: 180px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 15px;
  }

  .ftco-service-image-1 h3,
  .ftco-service-image-1 h3 a {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #ff6600;
    text-decoration: none;
  }

  .ftco-service-image-1 p {
    font-size: 0.95rem;
    color: #444;
  }

  .owl-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 40%;
    width: 100%;
  }

  .owl-carousel .owl-nav button {
    background: #ff6600;
    border: none;
    padding: 10px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
  }

  /* ------------------------
     BLOCKQUOTE / ABOUT / TEXT
  ------------------------ */
  .blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
  }

  h4 {
    color: #222;
    font-weight: 600;
  }

  .bg-light {
    background-color: #fefefe !important;
  }

  .border-left {
    border-left: 4px solid #ff6600 !important;
  }

  .text-muted {
    color: #6c757d !important;
  }

  /* ------------------------
     TOP BAR
  ------------------------ */
  .top-bar {
    background-color: #ff6600;
    color: #ffffff;
    padding: 8px 0;
  }

  .top-bar a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .top-bar a:hover {
    color: #ffd699;
  }

  .top-bar .icon-envelope-open-o,
  .top-bar .icon-phone,
  .top-bar i {
    color: #ffffff;
  }

  /* ------------------------
     ABOUT SECTION GRADIENT
  ------------------------ */
  #about-section {
    background: linear-gradient(135deg, #fff5eb, #ffe0cc, #ffd1b3);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 40px 0;
  }

  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* ------------------------
     SERVICES SECTION
  ------------------------ */
  .services-section {
    background: linear-gradient(135deg, #fff5eb, #ffe0cc);
    padding: 60px 0;
  }