.Predish { background-color: #bf202f;} .Pblackish { background-color: #231f20; } .Pwhitesmoke { background-color: whitesmoke; } .Pwhiteish { background-color: rgb(255, 255, 255); }
.Pblueish { background-color: #0056b3;}


        .custom-hover {
            position: relative;
            transition: color 0.3s ease;
        }
        .custom-hover::after {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            left: 0;
            bottom: 0;
            background-color: #007bff;
            transition: width 0.3s ease;
        }
        .custom-hover:hover {
            color: #007bff;
        }
        .custom-hover:hover::after {
            width: 100%;
        }



.dropdown-menu {
    transition: all 0.3s ease;
}

        




/* -------------------------------------------------------------- Button -------------------------------------------------------------- */

.button-86 {
    all: unset;
    width: 100px;
    height: 30px;
    font-size: 16px;
    background: transparent;
    border: none;
    position: relative;
    color: #f0f0f0;
    cursor: pointer;
    z-index: 1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-86::after,
  .button-86::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
  }
  
  .button-86::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #bf202f;
    border-radius: 10px;
  }
  
  .button-86::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
  }
  
  .button-86:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
  }
  
  .button-86:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
  }
  
  .button-86:active::after {
    transition: 0s;
    transform: translate(0, 5%);
  }


  
.service-block4 {
    position: relative;
    border: 1px solid #f7f7f7;
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16);
    border-radius: 5px;
    overflow: hidden;
    padding: 30px
}

.service-block4:before {
    position: absolute;
    top: -42px;
    right: -100px;
    z-index: 0;
    content: " ";
    width: 250px;
    height: 120px;
    background: #f7f7f7;
    border-bottom-left-radius: 0;
    transition: all 0.4s ease-in-out;
    transform: rotate(45deg);
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out
}

.service-block4:hover:before {
    background: #0056b3;
}

.service-block4 .service-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1;
    text-align: center
}





.service-block4 {
    position: relative;
    border: 2px solid #0056b3;           /* Thin blue border */
    background: #fff;
    box-shadow: 0 10px 30px rgba(50, 50, 50, 0.16);
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-block4:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-block4:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -110px;
    width: 250px;
    height: 140px;
    background: #f0f5ff;
    transform: rotate(45deg);
    transition: all 0.4s ease;
    z-index: 0;
}

.service-block4:hover:before {
    background: #0056b3;
}

.service-block4 .service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    font-size: 42px;
    color: #0056b3;
    transition: all 0.4s ease;
}

.service-block4:hover .service-icon i {
    color: #fff;
    transform: scale(1.15);
}

.service-block4 .service-desc h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-block4 .service-desc h5 {
    font-size: 13px;
    color: #0056b3;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-block4 .service-desc h5:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0056b3;
    margin-top: 10px;
}

/* -------------------------------------------------------------- Big Tabs -------------------------------------------------------------- */

/* Bigger, button-style tabs */
.big-tabs .nav-link {
    padding: 1.1rem 2.75rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bs-gray-700);
    border-width: 2px;
    border-radius: 0.75rem 0.75rem 0 0;
    transition: all 0.25s ease;
}

/* Hover state */
.big-tabs .nav-link:hover {
    background-color: var(--bs-gray-100);
    color: #0056b3;
}

/* Active tab = very noticeable */
.big-tabs .nav-link.active {
    background-color: #0056b3;
    color: #fff;
    border-color: #0056b3 #0056b3 transparent;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Spacing between tabs */
.big-tabs .nav-item {
    margin: 0 0.5rem;
}

/* Mobile tweak */
@media (max-width: 576px) {
    .big-tabs .nav-link {
        padding: 0.85rem 1.5rem;
        font-size: 1.05rem;
    }
}



/* -------------------------------------------------------------- Contact Box -------------------------------------------------------------- */



.contact-box {
  background-color: #ffffff;
  border: 1px solid #e7eaec;
  padding: 20px;
  margin-bottom: 20px;
}
.contact-box > a {
  color: inherit;
}
.contact-box.center-version {
  border: 1px solid #e7eaec;
  padding: 0;
}
.contact-box.center-version > a {
  display: block;
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
}
.contact-box.center-version > a img {
  margin-top: 10px;
  margin-bottom: 20px;
}
.contact-box.center-version address {
  margin-bottom: 0;
}
.contact-box .contact-box-footer {
  text-align: center;
  background-color: #ffffff;
  border-top: 1px solid #e7eaec;
  padding: 15px 20px;
}
a{
    text-decoration:none !important;    
}