.navbar {
  /* background: #fff; */
  background: #174D82;
}
 .navbar{
    border-bottom: 1px solid rgb(117, 117, 117);
    /* color: black; */
    color: #ffffff;
 }
 .navbar-nav .nav-link,.navbar-nav .dropdown-menu .dropdown-item{
    font-weight: 500;
    color: #ffffff;
 }
 .navbar-nav .nav-link.active{
    color: #fa90ca;
 }
 .navbar-nav .nav-link:hover, .navbar-nav .dropdown-menu .dropdown-item:hover{
     /* color:#f10989; */
     background: #f10989;
     color: #ebf5ff;
 }
.navbar h2{
  margin-left: 5px;
  margin-top: 10px;
  font-size: 25px;
  color: #ffffff;
}
.hero-section{
    padding-top: 200px;
}
.hero-section .hero-text p{
    color:#444444;
}
.hero-section .hero-image img{
   max-width: 90%;
   animation: floating 3s ease-in-out infinite;
}
@keyframes floating{
    0%,100%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-20px);
    }
}
.hero-section .hero-buttons .btn-primary{
    background-color: #174D82;
    border: none;
    padding: 10px 20px;
}
.hero-section .hero-buttons .btn-primary:hover{
    background-color: aliceblue;
    color: #174D82;
    border: 2px solid #174D82;
}

.services .portfolio, .contact{
    margin-top: 70px;
    margin-bottom: 70px;
}
.section-title h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-weight: 700 !important;
}

.section-title h3::after {
  content: "";
  width: 60%;
  height: 3px;
  background:#174D82;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 5px;
}
.services .card{
    padding: 20px;
}
.services .card:hover{
    border:1px solid #174D82;
    transition: all 0.3s ease;
    box-shadow:0 10px 25px  #3575b4;
    transform: translateY(-4px);
}
.services .iconn{
    margin: 20px 10px;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}
/* .services .card .iconn i{   
background-color:#99999962;
color: #174D82;
padding: 15px;
font-size: 24px;
border: 1px solid #174D82;
border-radius: 50px;
} */
 .services .card .iconn i{   
    visibility: hidden;
background-color: #174D82;
color: aliceblue;
padding: 15px;
font-size: 24px;
border-radius: 50px;
}
.services .card:hover .iconn i{   
background-color: #174D82;
color: aliceblue;
padding: 15px;
font-size: 24px;
border-radius: 50px;
}
.services .card .service-link, .services .card .service-link i{
    font-weight: 500;
    color: #444444;
    text-decoration: none;
    
}
.services .card:hover .service-link, .services .card:hover .service-link i{
    color: #174D82;
    transform: translateX(4px);
}



.portfolio .card-overlay-bottom {
  overflow: hidden;
  height: 400px;
}

.portfolio .card-overlay-bottom::before {
  content: "";
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  width: 100%;
  z-index: 1;
}

.portfolio .card-overlay-bottom:hover .card-img-bg {
  transform: scale(1.1);
}

.portfolio .card-img-bg {
  /* background-image: url(/img/woman-1245817_1280.jpg); */
  background-position: center left;
  background-size: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.5s;
}

.portfolio .card-img-overlay {
  z-index: 2;
}

.portfolio .nav-item .nav-link{
    /* color: #174D82; */
    color: #ffffff;
    font-weight: 500;
}

.portfolio .nav-item .nav-link.active {
    background-color: #174D82;
    color: #fff;
    font-weight: 500;
}
.portfolio .nav-tabs{
    border: none;
}
.portfolio .accordion-collapse{
    border: none;
}

.portfolio .card-meta{
    display: none;
}

.portfolio .card-overlay-bottom:hover .card-meta{
    display: block;
     transition: transform .2s; 
}


.contact .address-card{
    padding: 20px 40px;
    background-color: #ebf5ff;
    border: none;
}

.contact p{
    font-weight: 400;
    color: #474747;
}

.contact .card-text{
    color: #686868;
}
.contact .contact-items{
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 30px;
}
.contact .contact-icon , .contact .contact-head{
    color: #3575b4;
    font-weight: 500;
}
.contact .contact-text{
    color: #525252;
}


 .contact-form .btn-dark{
    background-color: #174D82;
    border: none;
 }
 .contact-form .btn-dark:hover{
    opacity: 0.9;
        transform: translateY(-2px);
 }

 .footer .social-media i:hover{
    color: #3575b4;
 }
 .footer .menus a{
    text-decoration: none;
    color: white;
 }

 .hero-banner{
    background-image: url('../img/banner.jpg'); /* your banner image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    position: relative;
}

.banner-overlay{
    background: rgba(0,0,0,0.55);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}


.horizontal-list {
    display: flex; /* Makes list items align horizontally */
    list-style-type: none; /* Removes default bullets */
    padding: 0; /* Removes default left padding/indentation */
    margin: 0; /* Removes default margins */
    justify-content: space-around; /* Distributes items evenly (optional) */
}

.horizontal-list li a {
    padding: 16px; /* Adds space around links to make them clickable areas */
    text-decoration: none; /* Removes underlines from links */
}   


.services {
    background: transparent;
    padding: 20px;
    border-radius: 10px;
}
        /* PAGE SPACING */

        .page-wrapper {
            margin-top: 90px;
        }

        /* SIDEBAR */

        .sidebar {
            position: sticky;
            top: 100px;
            margin-bottom: 90px;
        }

        .sidebar .list-group-item {
            border: none;
            padding: 12px 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .sidebar .list-group-item.active {
            background-color: #a5c9ff;
            border-left: 5px solid #13017a;
        }

        .sidebar .list-group-item i {
            color: #2187f3;
        }

        .sidebar .list-group-item a {
            text-decoration: none;
            color: black;
        }

        .sidebar .list-group-item:hover {
            background: #f5f5f5;
            cursor: pointer;
        }

        /* SERVICE CARDS */
        /* .services{
            margin-top: 70px;
            margin-bottom: 90px;
        } */
        .service-card {
            border: none;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            font-size: 35px;
            color: #0d6efd;
            margin-bottom: 10px;
        }

        /* MOBILE */

        @media(max-width:991px) {

            .sidebar {
                position: relative;
                top: 0;
                margin-bottom: 30px;
            }

        }
        .list-group-item {
    border: none;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.list-group-item a {
    text-decoration: none;
    color: #333;
    display: block;
    font-weight: 500;
}

.list-group-item:hover {
    background: #e9f2ff;
    border-radius: 8px;
    transform: translateX(5px);
}

.list-group-item.active {
    background: #0d6efd;
    border-radius: 8px;
}

.list-group-item.active a {
    color: #fff;
}

.list-group-item i {
    color: #0d6efd;
}

.list-group-item.active i {
    color: #fff;
}

#dropdownIcon {
    transition: transform 0.3s ease;
}

.glow {
  text-shadow: 0 0 5px rgb(71, 164, 250), 0 0 10px rgb(71, 164, 250), 0 0 20px rgb(71, 164, 250); /* Multiple shadows separated by commas */
}
.services, .services p{
    text-shadow: -2px 1px 4px rgba(15, 15, 15, 0.52);
}
     /* HEADER */

        /* .navbar {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        } */

        /* PAGE SPACING */

        .page-wrapper {
            margin-top: 90px;
        }

        /* SIDEBAR */

        .sidebar {
            position: sticky;
            top: 100px;
            margin-bottom: 90px;
        }

        .sidebar .list-group-item {
            border: none;
            padding: 12px 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .sidebar .list-group-item.active {
            background-color: #a5c9ff;
            border-left: 5px solid #13017a;
        }

        .sidebar .list-group-item i {
            color: #2187f3;
        }

        .sidebar .list-group-item a {
            text-decoration: none;
            color: black;
            text-shadow: none;
        }

        .sidebar .list-group-item:hover {
            background: #f5f5f5;
            cursor: pointer;
        }

        /* SERVICE CARDS */
        /* .services{
            margin-top: 70px;
            margin-bottom: 90px;
        } */
        .service-card {
            border: none;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            font-size: 35px;
            color: #0d6efd;
            margin-bottom: 10px;
        }

        /* MOBILE */

        @media(max-width:991px) {

            .sidebar {
                position: relative;
                top: 0;
                margin-bottom: 30px;
            }

        }

/* back to top button */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color:#174D82;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.4s;
}

#myBtn:hover {
  background-color: #555;
}