/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
/*    background-color: black;*/
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

.nav-text {
    font-size: 16px; /* Adjust font size as needed */
    padding: 8px 12px; /* Add padding to create space around the text */
    color: #ffffff; /* Set text color */
    text-decoration: none; /* Remove default underline */
    transition: color 0.3s ease; /* Add smooth color transition */
}

.nav-text:hover {
    color: #555; /* Change text color on hover */
}


/* hero background image for APE */
.bgimageape {
    height:100vh;
    background: url('images/Denver.jpeg');
    background-size:cover;
    position:relative;
}

/* hero background image for AP */
.bgimageap {
    height:100vh;
    background: url('images/heroImage.jpeg');
    background-size:cover;
    position:relative;
}

/* hero background image for VP*/
.bgimagevp {
    height:100vh;
    background: url('images/biwi1.JPG');
    background-size:cover;
    position:relative;
}
/* 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%;
/*    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);*/
    transform: translate(-50%, -50%);
    color: white;
    display: block;
    font-family: sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Reduced shadow intensity */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 20px; /* Add padding for better readability */
    border-radius: 10px; /* Add border radius for a rounded look */
}

/* Style for About Us heading */
.text-center {
    font-size: 2.5rem; /* Adjust font size */
    color: #333; /* Set text color */
    margin-bottom: 30px; /* Add space below the heading */
}

/* Adjust the font size and line height for better readability */
#about p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Style the image in the About section fro APE image */
.imageAbout {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center the image */
    border-radius: 10px; /* Add border radius for a rounded look */
/*    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}
/* Style the image in the About section fro VP and AP image pages*/
.imageAboutPage {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center the image */
    border-radius: 10px; /* Add border radius for a rounded look */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}
/* Style the members section 
#about .members {
    margin-top: 20px;
    text-align: center;
}

/* Style the member names 
#about .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333; /* Set member name color 
}

/* Style the member links 
#about .member-link {
    color: #007bff; /* Set link color 
    text-decoration: none; /* Remove default underline 
} 

/*#about .member-link:hover {
    text-decoration: underline; /* Add underline on hover
} */

/* Style for member cards */
.member-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0; /* Change background color on hover */
}

.member-card img {
    width: 200px; /* Set the width to your desired size */
    height: 200px; /* Set the height to your desired size */
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover; /* Ensure the image fills the space without stretching */

}

.member-name {
    font-size: 18px;
}

.member-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.member-link:hover {
    color: #007bff;
}

/* spacing on all sections */
#about, #services, #portfolio, #contact {
    margin-top: 2rem;
    padding-top: 2rem;
}
#contact {
    padding-bottom: 2rem;
}

/* about section image css */
.imageAboutPage {
    width: 100%;
}

/* services section css */
.servicesText.card {
    height: 400px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #ddd; /* Add border for a clean look */
    border-radius: 10px; /* Add border radius for a rounded look */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  }

.servicesIcon {
    font-size: 3rem;
    color: #007bff; /* Set icon color */
    text-align: center;
    width: 100%;
}
/*.card-title {
    text-align: center;
    color: #333; /* Set title color */
*/
}
.card:hover .servicesIcon {
    color: #008000;
}
.servicesText:hover {
    border: 1px solid #008000;
}

/*.card-text {
    color: #666; /* Set description color */
}
*/
/* Style for portfolio cards */
.portfolioContent {
    border: 1px solid #ddd; /* Add border for a clean look */
    border-radius: 10px; /* Add border radius for a rounded look */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.portfolioContent:hover {
    transform: translateY(-5px);
}

.portfolioContent .card-img-top {
    height: 200px; /* Adjust as needed */
    object-fit: cover;
}

.portfolioContent .card-title {
    font-size: 20px;
    margin-top: 15px;
}
.portfolioContent .card-text {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
}

.portfolioContent .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.portfolioContent .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Style for portfolio card titles */
.card-title {
    text-align: center;
    font-size: 1.2rem; /* Adjust font size */
    color: #333; /* Set title color */
}

/* Style for portfolio card text */
.card-text {
    color: #666; /* Set text color */
}

/* Style for portfolio card links */
.btn-success {
    background-color: #28a745; /* Set button background color */
    color: #fff; /* Set button text color */
    border: none; /* Remove button border */
    border-radius: 5px; /* Add button border radius */
    padding: 8px 16px; /* Add button padding */
    text-transform: uppercase; /* Convert button text to uppercase */
    font-weight: bold; /* Set button text to bold */
}

.btn-success:hover {
    background-color: #218838; /* Darken button background color on hover */
    color: #fff; /* Maintain button text color on hover */
}

/* 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 {
    color: #008000;
}
.fab {
    color: #000000;
}
/* footer styling */
#footer {
    background-color: #808080;
    text-align: center;
}