body {
  overflow-x: hidden;
}

/* Styles for the profile photo */
.profile-photo {
    position: absolute;
    top: 3%;
    left: 2%;
    width: 100px; /* Adjust the width and height for the desired size */
    height: 120px;
    background-color: #756d55;
    border-radius: 50%;
    overflow: hidden; /* Hide overflow to maintain round shape */
    margin: 10px; /* Adjust margins as needed */
    z-index: 100; /* Ensure the photo is above other elements */
  }
  
  .profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    border-radius: 50%;
  }
/* Media query for screens up to 768px wide */
@media (max-width: 768px) {
  .profile-photo img {
    max-width: 70%; /* Adjust image size for smaller screens */
  }
}

/* Media query for screens up to 480px wide */
@media (max-width: 480px) {
  .profile-photo img {
    max-width: 50%; /* Further adjust image size for even smaller screens */
  }
}
      /* Styles for buttons */
      .button-container {
        display: flex;
        align-items: center;
        margin-top: 10px;
      }
    
      .button {
        text-decoration: solid;
        display: inline-block;
        padding: 10px 20px;
        background-color: #2b5d7eff;
        color: #ffffff;
        border: none;
        border-radius: 5px;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold; 
        cursor: pointer;
        margin-right: 10px; /* Add space between buttons */
      }


 /* Style for contact */
 

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
 
}

#contact-section {
  padding: 20px;
  text-align: center;
  color: #d3caad;
}

#contact-section h2 {
  margin-bottom: 20px;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
 
}

#contact-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#contact-form button {
  display: inline-block;
  background-color: #2b5d7eff;
  font-size: 16px;
  color: #ffffff;
  border: none;
  font-weight: bold; 
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: solid;
}

#contact-form button:hover {
  background-color: #ff5c17;
}

#message {
  margin-top: 15px;
  font-weight: bold;
}


#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: transparent;
color: #d5bdbd; /* Add this line to set text color */
}



/* Responsive Styles */
@media screen and (max-width: 768px) {
  #contact-form {
    padding: 10px;
  }

  #contact-form button {
    width: 100%;
  }
}

/* Work Experience Section */
  .provider{
    color:bisque;
  }

  .divider {
    height: 0.5px;         /* Set the height of the divider line */
    background-color: #ccc; /* Set the background color of the divider line */
    margin: 10px 0;      /* Add some margin to separate it from content */
  }
/* customCss.css */

.animated-divider {
    width: 150%; /* Set the width of the divider */
    height: 2px; /* Set the height of the divider */
    background-color: transparent; /* Set the color of the dashes */
    position: relative;
    overflow: hidden;
  }
  
  .animated-divider::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 10%, #a49c83ff 50%, transparent 90%); /* Define the dash pattern and color */
    animation: move 3s linear infinite; /* Animation properties */
  }
  
  @keyframes move {
    100% {
      left: 100%;
    }
  }

  /* Style for the services section */
  .roo {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .service {
    flex: 1;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
  }

  .price {
    font-weight: bold;
    margin-top: 10px;
    color: #e5cf88;
  }

  .buy-now-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2b5d7eff;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .buy-now-button:hover {
    background-color: #0056b3;
  }
  

  /* Add your other CSS styling here */

  @media (max-width: 768px) {
    .service {
      flex-basis: calc(50% - 10px);
    }
  }


  @media (max-width: 480px) {
    .service {
      flex-basis: 100%;
    }
  }
  
/* Customer Review Section */
.customer-reviews {
    margin-top: 50px;
    text-align: center;
    border: 1px solid #e7f2c7; /* Add border for the box shape */
    padding-top: 80px; /* Add padding for spacing inside the box */
    border-radius: 0px; /* Add rounded corners for a softer look */
  }
  
  .customer-review {
    display: none;
  }

  .customer-review img{
    max-width: 100px;
  }
  
  .review-slide {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: 0 10px;
    cursor: pointer;
    border: 2px solid transparent;
  }

  
  
  
  .review-country {
    font-size: 14px;
    margin-top: 5px;
  }
  
  @media (max-width: 768px) {
    .review-slide {
      width: 70px;
      height: 70px;
    }
  }
  

  .customer-review p {
    color: #efe0b1;
    font-size:medium;
  }

  /* Custom CSS for Percentage Bars */

@import url(https://fonts.googleapis.com/css?family=Expletus+Sans);

/* Basic resets */

* { 
	margin:0; padding:0; 
	box-sizing: border-box;
}



li {

	width: 50%;
	float: left;
	list-style-type: none;
	
	padding-right: 5.3333333%;
}

li:nth-child(even) { margin-bottom: 5em;}

h2 {
	margin: 0 0 1.5em;
	border-bottom: 1px solid #ccc;
	
	padding: 0 0 .25em;
}

/* Styling an indeterminate progress bar */

progress:not(value) {
	/* Add your styles here. As part of this walkthrough we will focus only on determinate progress bars. */
}

/* Styling the determinate progress element */

progress[value] {
	/* Get rid of the default appearance */
	appearance: none;
	
	/* This unfortunately leaves a trail of border behind in Firefox and Opera. We can remove that by setting the border to none. */
	border: none;
	
	/* Add dimensions */
	width: 100%; height: 20px;
	
	/* Although firefox doesn't provide any additional pseudo class to style the progress element container, any style applied here works on the container. */
	  background-color: whiteSmoke;
	  border-radius: 3px;
	  box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;
	
	/* Of all IE, only IE10 supports progress element that too partially. It only allows to change the background-color of the progress value using the 'color' attribute. */
	color: royalblue;
	
	position: relative;
	margin: 0 0 1.5em; 
}

/*
Webkit browsers provide two pseudo classes that can be use to style HTML5 progress element.
-webkit-progress-bar -> To style the progress element container
-webkit-progress-value -> To style the progress element value.
*/

progress[value]::-webkit-progress-bar {
	background-color: whiteSmoke;
	border-radius: 3px;
	box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;
}

progress[value]::-webkit-progress-value {
	position: relative;
	
	background-size: 35px 20px, 100% 100%, 100% 100%;
	border-radius:3px;
	
	/* Let's animate this */
	animation: animate-stripes 5s linear infinite;
}

@keyframes animate-stripes { 100% { background-position: -100px 0; } }

/* Let's spice up things little bit by using pseudo elements. */

progress[value]::-webkit-progress-value:after {
	/* Only webkit/blink browsers understand pseudo elements on pseudo classes. A rare phenomenon! */
	content: '';
	position: absolute;
	
	width:5px; height:5px;
	top:7px; right:7px;
	
	background-color: white;
	border-radius: 100%;
}

/* Firefox provides a single pseudo class to style the progress element value and not for container. -moz-progress-bar */

progress[value]::-moz-progress-bar {
	/* Gradient background with Stripes */
	background-image:
	-moz-linear-gradient( 135deg,
													 transparent,
													 transparent 33%,
													 rgba(0,0,0,.1) 33%,
													 rgba(0,0,0,.1) 66%,
													 transparent 66%),
    -moz-linear-gradient( top,
														rgba(255, 255, 255, .25),
														rgba(0,0,0,.2)),
     -moz-linear-gradient( left, #09c, #f44);
	
	background-size: 35px 20px, 100% 100%, 100% 100%;
	border-radius:3px;
	
	/* Firefox doesn't support CSS3 keyframe animations on progress element. Hence, we did not include animate-stripes in this code block */
}

/* Fallback technique styles */
.progress-bar {
	background-color: whiteSmoke;
	border-radius: 3px;
	box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;

	/* Dimensions should be similar to the parent progress element. */
	width: 100%; height:20px;
}

.progress-bar span {
	background-color: royalblue;
	border-radius: 3px;
	
	display: block;
	text-indent: -9999px;
}

p[data-value] { 
  
  position: relative; 
}

/* The percentage will automatically fall in place as soon as we make the width fluid. Now making widths fluid. */

p[data-value]:after {
	content: attr(data-value) '%';
	position: absolute; right:0;
}





.html5::-webkit-progress-value,
.python::-webkit-progress-value  {
	/* Gradient background with Stripes */
	background-image:
	-webkit-linear-gradient( 135deg,
													 transparent,
													 transparent 33%,
													 rgba(0,0,0,.1) 33%,
													 rgba(0,0,0,.1) 66%,
													 transparent 66%),
    -webkit-linear-gradient( top,
														rgba(255, 255, 255, .25),
														rgba(0,0,0,.2)),
     -webkit-linear-gradient( left, #09c, #f44);
}

.css3::-webkit-progress-value,
.php::-webkit-progress-value 
{
	/* Gradient background with Stripes */
	background-image:
	-webkit-linear-gradient( 135deg,
													 transparent,
													 transparent 33%,
													 rgba(0,0,0,.1) 33%,
													 rgba(0,0,0,.1) 66%,
													 transparent 66%),
    -webkit-linear-gradient( top,
														rgba(255, 255, 255, .25),
														rgba(0,0,0,.2)),
     -webkit-linear-gradient( left, #09c, #ff0);
}

.jquery::-webkit-progress-value,
.node-js::-webkit-progress-value 
{
	/* Gradient background with Stripes */
	background-image:
	-webkit-linear-gradient( 135deg,
													 transparent,
													 transparent 33%,
													 rgba(0,0,0,.1) 33%,
													 rgba(0,0,0,.1) 66%,
													 transparent 66%),
    -webkit-linear-gradient( top,
														rgba(255, 255, 255, .25),
														rgba(0,0,0,.2)),
     -webkit-linear-gradient( left, #09c, #690);
}

/* Similarly, for Mozillaa. Unfortunately combining the styles for different browsers will break every other browser. Hence, we need a separate block. */

.html5::-moz-progress-bar,
.php::-moz-progress-bar {
	/* Gradient background with Stripes */
	background-image:
	-moz-linear-gradient( 135deg,
													 transparent,
													 transparent 33%,
													 rgba(0,0,0,.1) 33%,
													 rgba(0,0,0,.1) 66%,
													 transparent 66%),
    -moz-linear-gradient( top,
														rgba(255, 255, 255, .25),
														rgba(0,0,0,.2)),
     -moz-linear-gradient( left, #09c, #f44);
}

.css3::-moz-progress-bar,
.php::-moz-progress-bar {

	/* Gradient background with Stripes */
	background-image:
	-moz-linear-gradient( 135deg,
													 transparent,
													 transparent 33%,
													 rgba(0,0,0,.1) 33%,
													 rgba(0,0,0,.1) 66%,
													 transparent 66%),
    -moz-linear-gradient( top,
														rgba(255, 255, 255, .25),
														rgba(0,0,0,.2)),
     -moz-linear-gradient( left, #09c, #ff0);
}

.jquery::-moz-progress-bar,
.node-js::-moz-progress-bar {
	/* Gradient background with Stripes */
	background-image:
	-moz-linear-gradient( 135deg,
													 transparent,
													 transparent 33%,
													 rgba(0,0,0,.1) 33%,
													 rgba(0,0,0,.1) 66%,
													 transparent 66%),
    -moz-linear-gradient( top,
														rgba(255, 255, 255, .25),
														rgba(0,0,0,.2)),
     -moz-linear-gradient( left, #09c, #690);
}



/* css for nav items */
#toc {
  text-align: center;
  font-weight: bold;
  display: block;
  background-color: #2c0101;
  height: 40px;
  width: 100%;
  padding: 10px;
  margin: 10px;
  text-shadow: none;
  border-radius: 30%;
}

#toc a{
  padding: 5px;
  text-shadow: none;
  color: #e5cf88ff;
  
}

#toc a:hover {
  background-color: #e5cf88ff;
  color: #2c0101;
}

@media (max-width: 768px) {
  #toc {
    display: block; /* Stack links vertically for smaller screens */
  }

  #toc a {
    margin: 5px 0; /* Adjust vertical spacing between links */
  }
}


/*Project */
#projects-section {
  padding: 50px 0;
  text-align: center;
}


.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.project-card {
  width: calc(33.33% - 20px);
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ccc;
  text-align: left;
}

.project-card h3 {
  margin-top: 0;
}

.details-link {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
}

/* Style for the category bar */
/* Style for the category bar */
.category-bar {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  margin-top: 8px;
  background-color: #288e06;
  color: #fff;
  animation: fadeInUp 0.5s ease-in-out; /* Add animation */
}

/* Category-specific styles */
.category-bar.cypress {
  background-color: #3498db; /* Blue color for Web Development */
}

/* Animation keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Media query for screens up to 768px wide */
@media (max-width: 768px) {
  .project-card {
    width: calc(50% - 20px);
  }
}

/* Media query for screens up to 480px wide */
@media (max-width: 480px) {
  .project-card {
    width: 100%;
  }
}


/* Style for the guides container */
.guides-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* Style for individual guide cards */
.guide-card {
  width: calc(33.33% - 20px); /* Distribute guides evenly in a row */
  padding: 20px;
  border: 1px solid #ccc;
  text-align: center;
}

/* Style for download links (button shapes) */
.download-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2b5d7eff;
  color: #fff;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.download-link:hover {
  background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .guide-card {
    width: 100%; /* Guides to stack on smaller screens */
  }
}
