/* Reset some default styles */
html, body, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.text-center {
  text-align: center;
}

.section {
  padding: 40px 0;
}

/* Custom styles for the light-themed navbar */
.navbar {
  background-color: #f8f9fa; /* Light gray background */
  border-bottom: 1px solid #e5e5e5; /* Light gray border at the bottom */
}

.navbar a {
  color: #333; /* Dark text color */
}

.navbar-toggler {
  background-color: #fff; /* White background for the toggler button */
}

.navbar-toggler-icon {
  background-color: #ffffff; /* Dark icon color for the toggler button */
}

.navbar-toggler:focus {
  outline: none; /* Remove the focus border on the toggler button */
}







/* Hero Section */
.hero {
  background-color: #f0f0f0;
  padding: 100px 0;
}

.hero img {
  width: 150px;
  height: 150px;
  border: 4px solid #333;
  border-radius: 50%;
}

.hero h1 {
  font-size: 2.5em;
  margin-top: 20px;
}

.hero p {
  font-size: 1.5em;
}

/* Custom styles for the CTA button */
.cta-button {
  background-color: #FF5733; /* Change the button's background color */
  border-color: #FF5733; /* Change the button's border color */
  color: #fff; /* Change the text color */

  /* Add hover effect */
  transition: background-color 0.3s, border-color 0.3s;
}

.cta-button:hover {
  background-color: #645854; /* New background color on hover */
  border-color: #5f5753; /* New border color on hover */
}








/* Custom styles for the About Section */
.about-image {
  max-width: 80%; /* Make the image smaller */
  border: 5px solid #000000; /* Add a beige border around the image */
  border-radius: 50%; /* Make the image round */
  margin: 0 auto; /* Center the image horizontally */
}

.about-text {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

/* Add spacing to the top and bottom of the About Section */
#about {
  padding: 40px 0;
}







/* Custom styles for the Services Section */
.service {
  background-color: #fff;
  border: none; /* Remove borders */
  padding: 20px;
  border-radius: 10px; /* Add rounded corners for a subtle depth effect */
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
}

.service:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service h3 {
  color: #333;
  font-size: 1.6rem; /* Increase title font size */
  font-weight: bold; /* Make the title more captivating */
}

.service p {
  color: #666;
  font-size: 1.1rem;
}

.service-icon {
  color: #FF5733;
}







/* Custom styles for the Portfolio Section */
.portfolio-item {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.portfolio-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
  max-width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
}

.portfolio-item h3 {
  color: #333;
  font-size: 1.5rem;
  margin-top: 10px;
}

.portfolio-item p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.4;
}

.view-project {
  margin-top: 15px;
}











/* Custom styles for the Contact Section */
.section#contact {
  padding: 60px 0;
}

.section#contact h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 20px;
}

.section#contact p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 40px;
}

.social-icons {
  margin: 0 auto;
}

.social-icons a {
  color: #555;
  font-size: 1.2rem;
  margin: 10px;
  padding: 10px 20px;
  text-decoration: none;
  border: 2px solid #555;
  border-radius: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.social-icons a:hover {
  background-color: #555;
  color: #fff;
}



/* Custom styles for the Testimonial Card */
.testimonial-card {
  background: #fff;
  border: 1px solid #000; /* Black border */
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 1.2rem;
  color: #333;
}

.testimonial-content cite {
  font-size: 1rem;
  color: #777;
}

.star-ratings {
  color: #f3d33e; /* Yellow color for stars */
  font-size: 1.2rem;
}

html {
  scroll-behavior: smooth;
}







/* Custom styles for the Footer */
.footer {
  background-color: #333; /* Dark background color */
  color: #fff; /* Text color */
  padding: 20px 0;
}

.footer p {
  font-size: 1rem;
  margin: 0;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2em;
  }
  .hero p {
      font-size: 1.2em;
  }
  .service h3 {
      font-size: 1.3em;
  }
  .service p {
      font-size: 1.1em;
  }
  .footer p {
      font-size: 0.9em;
  }
}
