/* Reset some default styles */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
  }
  
  /* Global Styles */
  body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* This ensures the page fills at least the height of the viewport */
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navigation Styles */
  .navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
  }
  
  .navbar-brand {
    font-weight: bold;
    color: #333;
  }
  
  .navbar-nav .nav-link {
    color: #333;
  }
  
  /* Header Styles */
  .jumbotron {
    background-color: #f8f9fa;
    padding: 100px 0;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .lead {
    font-size: 1.25rem;
  }
  
  /* Service Section Styles */
  #services {
    background-color: #f8f9fa;
    padding: 80px 0;
  }
  
  /* About Section Styles */
  #about {
    padding: 80px 0;
  }
  
  /* Contact Section Styles */
  #contact {
    background-color: #f8f9fa;
    padding: 80px 0;
  }
  
  /* Footer Styles */
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    margin-top: auto; /* Pushes the footer to the bottom of the page */
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .navbar-nav .nav-link {
      color: #333;
      padding: 10px 0;
    }
    
    .jumbotron {
      padding: 60px 0;
    }
    
    .display-4 {
      font-size: 2rem;
    }
    
    .lead {
      font-size: 1rem;
    }
    
    #services, #about, #contact {
      padding: 60px 0;
    }
  }


  .card {
    border-radius: 10px; /* Adjust the radius as needed */
    overflow: hidden;
  }
  
  /* Override Bootstrap's default card border */
  .card-body {
    border: none;
  }

  #services {
    background: linear-gradient(to bottom, #f0f8ff, #d1e8ff);
  }
  
/* Apply background image to jumbotron */
.jumbotron {
    background-image: url('backgroundImage/background.jpg'); /* Use the blurred image */
    background-size: cover;
    background-position: center;
    padding: 200px 0; /* Adjust padding as needed */
    position: relative; /* Position for containing the filter */
  }
  
  /* Apply background color to improve text readability */
  .jumbotron .container {
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    padding: 20px; /* Adjust padding as needed */
    border-radius: 10px; /* Rounded edges for the container */
  }
  
  /* Make header text white */
  .jumbotron h1.display-4 {
    color: white;
    font-weight: bold;
  }
  
  /* Make description text white */
  .jumbotron p.lead {
    color: white;
    font-weight: bold;
  }

  .rounded-card {
    border-radius: 20px; /* Adjust the radius as needed */
    overflow: hidden;
  }

  .jumbotron h1.display-4 {
    font-weight: bold;
    font-size: 3rem; /* Default font size for larger screens */
  }
  
  /* Apply responsive font size to the description text */
  .jumbotron p.lead {
    font-weight: bold;
    font-size: 1.5rem; /* Default font size for larger screens */
  }
  
  /* Apply responsive font size adjustments using media queries */
  @media (max-width: 768px) {
    .jumbotron h1.display-4 {
      font-size: 2rem; /* Adjust font size for medium screens */
    }
  
    .jumbotron p.lead {
      font-size: 1rem; /* Adjust font size for medium screens */
    }
  }
  
  @media (max-width: 576px) {
    .jumbotron h1.display-4 {
      font-size: 1.5rem; /* Adjust font size for small screens */
    }
  
    .jumbotron p.lead {
      font-size: 0.9rem; /* Adjust font size for small screens */
    }
  }
  