.loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #ffffff 0%, #e0f0ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
}

.tp-bg-custom-blue-1{
  background-color:#0064A5 !important;
}

.tp-bg-custom-blue-2{
  background-color:#DFF1FF !important;
}

.tp-bg-custom-blue-3{
  background-color:#30396a !important;
}

.expand-btn {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  width: 60px;              /* collapsed width */
  transition: all 0.3s ease;
  color: transparent;             /* hide text initially */
}


.expand-btn i {
  font-size: 16px;
  min-width: 20px;
  text-align: center;
}

.expand-btn.inquiry i {
  color:#000000;
}

.expand-btn.contact i {
  color:#FFFFFF;
}

.expand-text {
  opacity: 0;
  margin-left: 8px;
  transition: opacity 0.3s ease;
}

/* Hover state */
.expand-btn.login:hover {
  width: 480px;             /* expanded width */
}

/* Hover state */
.expand-btn.inquiry:hover {
  width: 120px;             /* expanded width */
}

/* Hover state */
.expand-btn.contact:hover {
  width: 150px;             /* expanded width */
}

.expand-btn:hover .expand-text {
  opacity: 1;
}

.loader-wrap-heading {
  position: relative;
  display: inline-block;
  text-align: center;
  z-index: 10;
}

/* Logo */
.load-text img {
  width: 130px;
  height: auto;
  animation: float 2.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Circular glowing snake ring */
.circle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border: 3px solid transparent;
  border-top: 3px solid #007bff;
  border-right: 3px solid #00aaff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spinRing 1.5s linear infinite, glowPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px #0095ff);
  z-index: 1;
  transition: filter 0.3s ease;
}


/* Spin effect */
@keyframes spinRing {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Glow pulse effect */
@keyframes glowPulse {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 8px #0095ff);
    border-top-color: #007bff;
    border-right-color: #00aaff;
  }
  50% {
    opacity: 0.5;
    filter: drop-shadow(0 0 20px #33ccff);
    border-top-color: #33ccff;
    border-right-color: #66ffff;
  }
}

.tp-hero-cst-spacing-1{
    padding-top: 176px;
    padding-bottom: 25px;
}

.tp-hero-cst-spacing-2{
    padding-top: 100px;
    padding-bottom: 25px;
}

.breadcrumb-img-wrapper img {
    width: 100%;      /* Full width */
    height: 350px;     /* Fixed height */
    object-fit: cover; /* Crop/scale image to fill width without stretching */
    display: block;    /* Remove bottom spacing */
}

/* design Card */
/* design Card */
.design-card {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    height: 220px;
}

.design-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    display: block;
}

/* Overlay starts as bottom caption */
.design-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-end; /* text stays bottom initially */
    justify-content: center;
    text-align: center;
    padding-bottom: 10px;
    transition: all 0.4s ease;
}

/* Title text */
.design-card-title {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    transition: all 0.4s ease;
}

/* Hover effect: expand overlay to full height */
.design-card:hover .design-card-overlay {
    height: 100%; /* expand full */
    align-items: center; /* center the text vertically */
    padding-bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

/* Optional image zoom on hover */
.design-card:hover .design-card-image {
    transform: scale(1.05);
    filter: brightness(0.9);
}


.tp-footer-cst-widget-form .tp-footer-wd-social a{
  border-color:#ffffff;
}

.h-620px{height:620px !important;}

.breadcrumb-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.breadcrumb-img-wrapper .service-bg {
    width: 100%;
    display: block;
}

/* Full overlay */
.breadcrumb-img-wrapper .breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7); /* full black with opacity */
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
}

.breadcrumb-img-wrapper .breadcrumb-title {
    color: #fff;
    font-size: 32px; /* adjust as needed */
    text-align: center;
    padding: 0 20px; /* optional: spacing */
}

select{
            outline: none;
    background-color: var(--tp-common-white);
    height: 52px;
    width: 100%;
    line-height: 52px;
    font-size: 16px;
    color: var(--tp-theme-primary);
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 4px;
    border: 1px solid var(--tp-common-white);
    }
/* Base */
.select2-container .select2-selection--single {
    height: 52px !important;
    background-color: var(--tp-common-white);
    border: 1px solid #d1d5db; /* 👈 FORCE BORDER */
    
    border-radius: 4px;
}

.form-control.select2{
  border: 1px solid var(--tp-common-white) !important;
}

/* Rendered text */
.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 52px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
    color: #000000;
}

/* Arrow */
.select2-container .select2-selection--single .select2-selection__arrow {
    height: 52px;
}

/* Hover */
.select2-container--default
.select2-selection--single:hover {
    border-color: #9ca3af !important;
}

/* Focus / Open */
.select2-container--default.select2-container--open
.select2-selection--single,
.select2-container--default
.select2-selection--single:focus {
    border-color: var(--tp-theme-primary) !important;
    box-shadow: none;
    outline: none;
}


    .tp-login-area {
    min-height: 100vh;          /* full screen height */
    display: flex;
    align-items: center;        /* vertical center */
    justify-content: center;    /* horizontal center */
    padding: 0 !important;      /* remove pt-100 pb-140 */
}

.step-slider {
    display: flex;
    width: 200%;
    transition: transform 0.45s ease;
}

.step {
    width: 50%;
}

.step-2 {
    pointer-events: none;
}

.step-slider.active-step-2 {
    transform: translateX(-50%);
}

.step-slider.active-step-2 .step-2 {
    pointer-events: auto;
}