/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
    background-color: black;
}

.navbar-nav .nav-link {
    color: rgb(255, 255, 255) !important;
}
.navbar {
    background-color: black;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: black;
    }
    .navbar-nav .nav-link {
        color: rgb(255, 255, 255) !important;
            text-align: center;
    }
}

.navbar-nav .nav-link:hover {
    background-color: #5a5a5a;
    color: #ffffff;
    border-radius: 3px;
}

/* hero background image */
.bgimage {
    height:100vh;
    background: url('images/banner_1.jpg');
    background-size:cover;
    position:relative;
}
/* overlay */
.bgimage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust the opacity as desired */
    z-index: 1;
}

/* text css above hero image*/
.hero_title {
    font-size: 4.5rem;
}
.hero_desc {
    font-size: 2rem;
}
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
}

/* spacing on all sections */
/* #about, #services, #portfolio, #contact {
    margin-top: 4rem;
    padding-top: 4rem;
} */
#contact {
    padding-bottom: 4rem;
}
/* about section image css */
.imageAboutPage {
    width: 100%;
}

/* services section css */
.servicesText.card {
    height: 280px;
    cursor: pointer;
  }
.servicesIcon {
    font-size: 36px;
    text-align: center;
    width: 100%;
}
.card-title {
    text-align: center;
}
.card:hover .servicesIcon {
    color: #008000;
}
.servicesText:hover {
    border: 1px solid #008000;
}

/* To adjust space betwwen logos on banner */
.logo-space {
    display: inline-block;
    width: 20px; /* Adjust the width as per your preference */
  }

.social-icons {
    font-size: 16px;
    cursor: pointer;
    display: block;
    text-align: left;
}
  
.social-icons a .fab.fa-linkedin,
.social-icons a .fab.fa-github {
    color: #0A66C2; /* Set the color of the logos */

}
  
.social-icons a:hover .fab.fa-linkedin,
.social-icons a:hover .fab.fa-github {
    color: #FFF;
}



/* footer styling */
#footer {
    background-color: BLACK;
    text-align: center;
    color: white;
}

/* Used in Projects sections and education section - Gives a shadow to cards */
.custom-card {
    max-width: 1000px; /* Adjust the width as per your preference */
    margin: 0 auto; /* Center the card horizontally */
    transition: box-shadow 0.3s; /* Add a transition effect to smooth the shadow change */
}

.custom-card:hover {
    box-shadow: 0 0 80px rgba(135, 206, 235, 0.5);  /* Add a box shadow effect when hovering */
}

.logo-container {
    margin-bottom: 10px;
}
.glow-link:hover .glow-icon,
.glow-text:hover {
    color: grey;
}
.glow-icon {
    font-size: 50px;
    color: #f2f2f2;
    transition: color 0.3s;
}
.glow-text {
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

