* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-y: auto;
    margin: 0;
}

.jumbotron {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('path-to-your-image.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg_image_2.jfif') no-repeat center center/cover;
    filter: blur(4px);
    z-index: -1;
}

.content{
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fff;
    margin: 20px auto;
    display: block;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 123, 255, 0.8);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #0056b3;
}

.welcome-intro {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
  
.welcome-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
 }
  
.welcome-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 800px;
    font-family: 'Roboto', sans-serif;
}

/* General Section Styling */
.portfolio-section {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 60px 20px; /* Spacing around the section */
    text-align: center; /* Center text alignment for the title and description */
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
  }
  
  .section-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Portfolio Grid Styling */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between items */
  }
  
  /* Individual Portfolio Item */
  .portfolio-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .portfolio-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow */
  }
  
  /* Portfolio Image */
  .portfolio-image {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Ensures image scales properly */
    border-bottom: 1px solid #eee;
  }
  
  /* Portfolio Content */
  .portfolio-content {
    padding: 20px;
  }
  
  .portfolio-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .portfolio-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
  }
  
  .portfolio-link {
    display: inline-block;
    text-decoration: none;
    color: #007bff; /* Bootstrap-like blue */
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .portfolio-link:hover {
    color: #0056b3; /* Darker blue on hover */
  }

  /* General Section Styling */
.services-section {
    background-color: #ffffff; /* Clean white background */
    padding: 60px 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
  }
  
  .section-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Services Grid Styling */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
    margin-top: 20px;
  }
  
  /* Individual Service Item */
  .service-item {
    background: #f9f9f9; /* Light gray background for cards */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
  }
  
  /* Service Icon Styling */
  .service-icon {
    margin-bottom: 15px;
  }
  
  .service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
  
  /* Service Title */
  .service-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  /* Service Description */
  .service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }

/* General Section Styling */
.testimonials-section {
    background-color: #f9f9f9; /* Light gray background */
    padding: 60px 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
  }
  
  .section-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Testimonials Carousel */
  .testimonials-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Space between testimonials */
  }
  
  /* Testimonial Item */
  .testimonial-item {
    background: #ffffff; /* White card background */
    border-radius: 8px;
    padding: 20px;
    max-width: 400px; /* Limit card width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
  }
  
  /* Testimonial Text */
  .testimonial-text {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* Testimonial Author */
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between image and text */
  }
  
  .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Circular image */
    object-fit: cover;
  }
  
  .author-name {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
  }
  
  .author-role {
    font-size: 1rem;
    color: #777;
    margin: 0;
  }

/* General Section Styling */
.contact-section {
    background-color: #f9f9f9; /* Light background */
    padding: 60px 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .section-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  /* Contact Content Layout */
  .contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  /* Contact Info Styling */
  .contact-info {
    flex: 1 1 300px;
    text-align: left;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
  }
  
  .contact-info p {
    font-size: 1rem;
    color: #555;
    margin: 10px 0;
  }
  
  .social-links a {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
  }
  
  .social-links a:hover {
    color: #0056b3;
  }
  
  /* Contact Form Styling */
  .contact-form {
    flex: 1 1 300px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  .contact-form h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
  }
  
  input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
  }
  
  input:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
  }
  
  .btn-submit {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn-submit:hover {
    background-color: #0056b3;
  }
  
  /* Footer Styling */
.footer {
    background-color: #333; /* Dark background for contrast */
    color: #fff; /* White text */
    padding: 20px 0;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-left {
    font-size: 1rem;
  }
  
  .footer-right a {
    margin-right: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
  }
  
  .footer-right a:hover {
    color: #007bff; /* Highlight on hover */
  }
  
  /* Responsive Styling for Footer */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-left {
      margin-bottom: 10px;
    }
  
    .footer-right a {
      margin: 5px 0;
    }
  }