/* hero background image */
 .bgimage {
    height:100vh;
    width: 100%;
    /* background: url('images/1.PNG'); */
    background-size:cover;
    position:relative;
    overflow: hidden;
    z-index: -1;
} 

#myVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 


/* text css above hero image*/
.hero_title {
    font-size: 4.5rem;
}
.hero_desc {
    font-size: 2rem;
    color:darkseagreen;
}
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: blanchedalmond;
}

/* 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;
}

/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
    background-color:coral;

}


/* social media icons styling */
.social-icons {
    font-size: 36px;
    cursor: pointer;
}
.fa-facebook:hover,.fa-instagram:hover,.fa-twitter:hover,.fa-linkedin:hover, .fa-twitch:hover ,.fa-github:hover{
    color: #008000;
}
.fab {
    color: #000000;
}
/* footer styling */
#footer {
    background-color: #808080;
    text-align: center;
}


/* spacing on all sections */
#about, #services, #portfolio, #contact ,#awards{
    margin-top: 4rem;
    padding-top: 4rem;
}
#contact {
    padding-bottom: 4rem;
}


/* 
.anchor-button{
    text-decoration: none;
    background: linear-gradient(45deg, lightsalmon, tomato);
    padding: 10px 40px;
    border-radius: 5px;
    color: white;
    font-weight: 700;
    

} */

.anchor-button {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 40px;
    margin-top: 20px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.anchor-button:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

/* .anchor-button {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 40px;
    margin-top: 20px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.anchor-button:hover {
    background-color: #2980b9;
    transform: scale(1.05);
} */



.skill-mf span {
    color: #4e4e4e;
  }
  
  .skill-mf .progress {
    background-color: #cde1f8;
    margin: 0.5rem 0 1.2rem 0;
    border-radius: 0;
    height: 0.7rem;
  }
  
  .skill-mf .progress .progress-bar {
    height: 0.7rem;
    background-color: #0078ff;
  }

  .title-s{

    color: #008000;
    text-decoration: solid ;
    font-weight: bold;
    font-size: large;
  }

  

 /* Change color and size of navbar links */
.navbar-nav .nav-link {
    font-size: 20px; /* Change the font size */
    color: black; /* Change the color */
    
}

.navbar-nav .nav-link:hover {
    color: red; /* Change the hover color */
}
.navbar-brand {
    font-size: 20px;
    color:black /* Change the color to your desired color */
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero_desc {
    animation: fadeIn 1s ease-in-out;
}