* {
    margin: 0;
    padding: 0;
}

/*----------- Navigation Bar------------*/
#nav-bar {
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar-brand img {
    height: 40px;
    padding-left: 30px;
}

.navbar-nav li {
    padding: 0 10px;
}

.navbar-nav li a {
    float: right;
    text-align: left;
}

#nav-bar ul li a.nav-link:hover {
    color: #007bff !important;
}

.navbar {
    background: #fff;
}

.navbar-toggler {
    border: none !important;
}

.nav-link {
    color: #555 !important;
    font-weight: 600;
    font-size: 16px;
}


/*----------- Slider------------*/

#slider .carousel-inner img {
    width: 100%; /* Ensure the image takes up the full width of the container */
    height: auto; /* Maintain aspect ratio */
  

}

#slider
{
    width: 100%;

}

.carousel-caption
{
    top: 50%;
    transform: translateY(-50%);
    bottom: initial!important;
}

.carousel-caption
{
    color: #fff;
    font-size: 42px;
}

/*----------- About Section------------*/

#about
{
   padding-top: 50px ; 
   padding-bottom: 50px;
   color: #555;
}

#about .btn
{
    margin-top: 20px;
    margin-bottom: 30px;


}

.about-content 
{
    padding-top: 20px;
}

.skills-bar p
{
    margin-bottom: 6px;
    font-weight: 600;
}

.progress-bar
{
    border-radius: 16px;
}


.progress{
    border-radius: 16px !important;
    margin-bottom: 20px;
}

/*----------- Services Section------------*/

#services{
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(images/banner.jpg);
    background-size: cover;
    background-position: center;
    color: #efefef;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 50px;
}

#services h1

{
    text-align: center;
    color: #efefef!important;
    padding-bottom: 10px;

}

#services h1::after
{
    content: '';
    display: block;
     height: 3px;
     width: 170px;
     margin: 20px auto 5px;
    }

    
   /* Services Section */
#services {
    background-color: #f9f9f9; /* Light background color */
    padding: 80px 0; /* Add padding to the top and bottom */
  }
  
  #services h1 {
    text-align: center; /* Center the heading */
    font-size: 36px; /* Larger font size */
    font-weight: 700; /* Bold font */
    margin-bottom: 50px; /* Space below the heading */
    color: #333; /* Dark text color */
  }
  
  #services .services {
    display: flex;
    justify-content: center; /* Center the service blocks horizontally */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
  }
  
  #services .col-md-3 {
    background: #fff; /* White background for each service block */
    padding: 20px; /* Add padding inside each block */
    margin: 15px; /* Add margin between blocks */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
  }
  
  #services .col-md-3:hover {
    transform: translateY(-10px); /* Lift the block on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
  }
  
  #services .icon {
    margin-bottom: 20px; /* Space below the icon */
  }
  
  #services .icon i {
    font-size: 48px; /* Large icon size */
    color: #007bff; /* Blue icon color */
    margin-bottom: 15px; /* Space below the icon */
  }
  
  #services h3 {
    font-size: 24px; /* Medium font size for service titles */
    font-weight: 600; /* Semi-bold font */
    color: #333; /* Dark text color */
    margin-bottom: 15px; /* Space below the title */
  }
  
  #services p {
    font-size: 16px; /* Normal font size for descriptions */
    color: #666; /* Gray text color */
    line-height: 1.6; /* Improve readability */
  }
