html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;

}
/********************************************************************************************************************************************/

.responsive-text {
    font-size: 14px; /* default for mobile */
}

@media (min-width: 576px) { /* Small devices (tablets) */

}

@media (min-width: 768px) { /* Medium devices (laptops) */


}

@media (min-width: 992px) { /* Large devices (desktops) */

}

@media (min-width: 1200px) { /* Extra large devices */

}

/********************************************************************************************************************************************/


.border-label-box {
    position: relative;
    border: 1px solid #6c757d; /* Bootstrap secondary color */
    border-radius: 0.5rem;
    padding: 1rem 1rem 1rem;
    margin-top: 2rem;
}

.border-label-text {
    position: absolute;
    top: -0.9rem;
    left: 1rem;
    background-color: #fff;
    padding: 0 0.5rem;
    font-weight: 600;
    color: #6c757d;
}


/* *******************************************NAV BARRRRRR */
/* Fixed top navbar */
/*.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background-color: var(--bs-dark);  optional override 
}*/

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

body {
    padding-top: 60px; /* Matches fixed navbar height */
}

/* Custom burger animation */

.menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 26px;
    width: 38px;
    position: relative;
    cursor: pointer;
}

    .menu span {
        display: inline-block;
        width: 100%;
        height: 4px;
        background-color: red;
        transition: all 0.5s ease;
    }

.hamburger1 span:nth-of-type(1),
.hamburger1 span:nth-of-type(3) {
    transform-origin: left;
}

.hamburger1.active span:nth-of-type(1) {
    transform: rotate(34deg);
}

.hamburger1.active span:nth-of-type(2) {
    opacity: 0;
}

.hamburger1.active span:nth-of-type(3) {
    transform: rotate(-35deg);
}

.custom-gradient {
    background: linear-gradient(346deg, var(--bs-primary), var(--bs-light));

    /* or use custom colors */
    /* background: linear-gradient(45deg, #612910, #e08d57); */

}

.custom-underline.active {
    border-bottom: 2px solid var(--bs-secondary); /* or your desired color */

}

.glow-text {
    text-shadow: -1px -1px 0 var(--bs-secondary), 1px -1px 0 var(--bs-secondary), -1px 1px 0 var(--bs-secondary), 1px 1px 0 var(--bs-secondary);
    /*text-shadow: 0 0 10px var(--bs-secondary), 0 0 10px var(--bs-secondary), 0 0 20px var(--bs-secondary), 0 0 40px var(--bs-secondary);*/
}
/* *******************************************NAV BARRRRRR endddddd*/


/*messenger btn*/
.messenger-btn {
    width: 56px;
    height: 56px;
    background-color:none ;
    border-radius: 50%;
    position: fixed;
    bottom: 65px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .messenger-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
        text-decoration: none;
    }

    .messenger-btn.pulse {
        animation: pulse 2s infinite;
    }