.bg--prim {
  background: #011327 !important;
}

.custom-twoside-border {
  border-top-left-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
}
.custom-twoside-border-alternative {
  border-top-right-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
}
.custom-bottom-border {
  border-bottom-right-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
}
.custom-top-border {
  border-top-right-radius: 50px !important;
  border-top-left-radius: 50px !important;
}
.custom-left-border {
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
}
.custom-right-border {
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
}

.bottom-glass-bar {
  position: absolute; /* position-absolute */
  display: flex; /* d-flex */
  justify-content: space-between; /* justify-content-between */
  align-items: center; /* align-items-center */
  font-size: 1rem; /* fs-6 -> 1rem in Bootstrap 5 */
  bottom: 0; /* bottom-0 */
  left: 0; /* start-0 (LTR) */
  color: #fff; /* text-white */
  padding: 0.5rem; /* p-2 */
  line-height: 1.5; /* lh-base */
  width: 100%; /* w-100 */

  /* from previous message if you still want glass effect */
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.texty-fy {
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 22px;
}
.texty-fy:hover {
  text-decoration: underline !important;
}

/* Broucher Page Css Start */
.hover-card {
  transition: all 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
}

.card-title {
  color: #333;
  font-size: 1.25rem;
}

.card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
/* Broucher Page Css End */

/* Web Design Start here */
.portfolio-link {
  text-decoration: none;
}

.portfolio-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}

.portfolio-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #011327d8 0%,
    rgba(33, 150, 243, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  gap: 10px;
}

.portfolio-overlay i {
  font-size: 32px;
  color: white;
}

.portfolio-overlay span {
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.portfolio-wrapper:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-wrapper:hover img {
  transform: scale(1.05);
}


            @keyframes slideIn {
              from {
                width: 0;
              }
              to {
                width: 100%;
              }
            }

            .website-type-card {
              border: 1px solid rgba(0, 0, 0, 0.08);
              transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
              box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            }

            .website-type-card:hover {
              transform: translateY(-8px);
              box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
              border-color: rgba(0, 0, 0, 0.12);
            }

            .website-type-card:hover .card-bg-icon {
              animation: float 3s ease-in-out infinite;
            }

            .website-type-card i {
              transition: all 0.3s ease;
            }

            .website-type-card:hover i {
              transform: scale(1.1);
            }

            @keyframes float {
              0%, 100% {
                transform: translateY(0px);
              }
              50% {
                transform: translateY(-10px);
              }
            }

            .badge {
              font-size: 0.75rem;
              font-weight: 600;
              letter-spacing: 0.5px;
            }

/* Web design end here */



.breadcrumb-custom-color{
  background-color: #011327 !important;
}


/* Toolbar Start */
/* ========================
   Floating Contact Toolbar with Labels
   ======================== */

.ar-contact-toolbar {
    position: fixed;
    left: 0px;
    bottom: 0%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

/* Toolbar Item */
.ar-toolbar-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 12px;
    color: #ffffff;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: visible;
}

.ar-toolbar-item:hover {
    width: 160px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Toolbar Label */
.ar-toolbar-label {
    position: absolute;
    left: 50px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    padding-left: 10px;
}

.ar-toolbar-item:hover .ar-toolbar-label {
    opacity: 1;
}

/* WhatsApp */
.ar-whatsapp {
    background: #25D366;
}

.ar-whatsapp:hover {
    background: #1ebe57;
    color: #ffffff;
}

/* Call */
.ar-call {
    background: #4285F4;
}

.ar-call:hover {
    background: #3367d6;
    color: #ffffff;
}

/* Email */
.ar-email {
    background: #EA4335;
}

.ar-email:hover {
    background: #d33426;
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .ar-contact-toolbar {
        left: 0px;
        gap: 0px;
    }
    
    .ar-toolbar-item {
        width: 45px;
        height: 45px;
        font-size: 20px;
        padding-left: 10px;
    }
    
    .ar-toolbar-item:hover {
        width: 45px;
    }
    
    .ar-toolbar-label {
        display: none;
    }
}

@media (max-width: 575px) {
    .ar-contact-toolbar {
        left: 0px;
        gap: 0px;
    }
    
    .ar-toolbar-item {
        width: 40px;
        height: 40px;
        font-size: 18px;
        padding-left: 8px;
    }
}


/* Toolbar End */

    .slider-heading {
      text-align: center;
      margin-bottom: 32px;
    }

    .slider-heading h2 {
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .slider-heading p {
      color: #adb5bd;
      max-width: 520px;
      margin: 0 auto;
    }

    .swiper {
      padding: 10px 10px 40px;
    }

    .swiper-slide {
      height: auto;
    }

    .slider-card {
      background: #151823;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
      padding: 20px 20px 24px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .slider-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6);
      border-color: rgba(59, 130, 246, 0.5);
    }

    .badge-pill {
      border-radius: 999px;
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .slider-title {
      font-size: 18px;
      font-weight: 600;
      margin-top: 14px;
      margin-bottom: 6px;
    }

    .slider-text {
      font-size: 14px;
      color: #ced4da;
      margin-bottom: 14px;
    }

    .slider-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #adb5bd;
    }

    .slider-meta span strong {
      color: #f8f9fa;
    }

    /* Swiper navigation */
    .swiper-button-next,
    .swiper-button-prev {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.5);
      color: #e5e7eb;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 18px;
      font-weight: 600;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background: linear-gradient(135deg, #2563eb, #4f46e5);
      border-color: transparent;
      color: #fff;
    }

    .swiper-pagination-bullet {
      background: #6b7280;
      opacity: 1;
    }

    .swiper-pagination-bullet-active {
      background: #2563eb;
      width: 18px;
      border-radius: 999px;
    }

    @media (max-width: 768px) {
      .swiper {
        padding-inline: 6px;
      }
    }