title{
    text-transform:uppercase;
}
.logo-mobile{
    max-width: 200px;
}
.service-item {
 min-height: 300px;
}
.bg-theme {
 background-color:var(--primary-color) !important;
}

.fade-in-animation {
    animation: fadeInScale 0.6s ease-in-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.form-control{
    padding: 5px 10px!important;
}
.highlight-section {
  animation: highlightFlash 1s ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-animation: highlightFlash 1s ease-in-out;
    border-bottom: 5px solid var(--primary-color);

}

@keyframes highlightFlash {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
            box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}
@keyframes shadow-drop-center {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
            box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}
.uppercase{
    text-transform:uppercase;
}
/* 404 */
    .error-page {
        text-align: center;
        padding: 100px 20px;
        background-color: #f9f9f9;
    }
    .error-page h1 {
        font-size: 120px;
        margin-bottom: 20px;
        color: var(--primary-color);
        font-weight: bold;
    }
    .error-page h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .error-page p {
        font-size: 18px;
        color: #666;
    }
    .error-page a {
        display: inline-block;
        margin-top: 30px;
        padding: 12px 30px;
        font-size: 16px;
        background: var(--primary-color);
        color: white;
        border-radius: 5px;
        text-decoration: none;
    }
    .error-page a:hover {
        background: #0056b3;
    }
    .feedback-item-two img{
        height: 60px;
    }

.bx-shadow{
    box-shadow: 10px 10px 5px -5px rgba(0,0,0,0.2);
}
.team-img{
      height: 335px;
        width: 330px
}
.badge{
    background: var(--primary-color)!important;
}
.custom-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1051;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    
}

.custom-close-btn i {
    font-size: 1.25rem; /* Adjust icon size */
    color: #fff; /* Change to match theme: white, dark, etc. */
    transition: color 0.2s ease;
}

.custom-close-btn:hover i {
    color: #dc3545; /* Red on hover, or use your theme color */
}
.bg-dark{
background:#2e2e2e;
}
