/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  /* Body Styling */
  body {
    background-color: yellow;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
  }
  
  /* Header Styling */
  header {
    background-color: #3a3a3a;
    padding: 20px 0;
    color: rgb(188, 207, 17);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  header .highlight {
    color: #ff7b00; /* Orange color for highlighting */
  }
  
  header nav ul {
    list-style: none;
  }
  
  header nav ul li {
    display: inline-block;
    margin-right: 20px;
  }
  
  header nav ul li a {
    color: rgb(24, 221, 239);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  header nav ul li a:hover {
    color: #ff7b00; /* Highlight color on hover */
  }
  
  /* Hero Section Styling */
  .hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 0;
  }
  
  .hero h2 {
    font-size: 3rem;
    font-weight: 700;
  }
  
  .hero .highlight {
    color: #ff7b00;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .hero .btn-primary {
    padding: 15px 25px;
    background-color: #ff7b00;
    color: rgb(243, 243, 240);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  
  .hero .btn-primary:hover {
    transform: translateY(-5px);
  }
  
  /* Card Grid Styling */
  .card-grid {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
  }
  
  .card {
    width: 22%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .card-content {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .card h3 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  }
  
  .card:hover .card-content {
    opacity: 1;
  }
  
  .card:hover img {
    transform: scale(1.05);
  }
  
  /* Service Section Styling */
  .services {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .service-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  
  .service-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    width: 22%;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .service-card i {
    font-size: 3rem;
    color: #ff7b00;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .service-card p {
    font-size: 1.1rem;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  /* Why Choose Section Styling */
  .why-choose {
    background-color: #ff7b00;
    color: white;
    padding: 60px 0;
    text-align: center;
  }
  
  .why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .why-choose p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .why-choose ul {
    list-style: none;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .why-choose ul li {
    margin-bottom: 10px;
  }
  
  .why-choose .btn-glow {
    padding: 15px 30px;
    background-color: #fff;
    color: #ff7b00;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .why-choose .btn-glow:hover {
    background-color: #ff7b00;
    color: white;
  }
  
  /* Call to Action Section Styling */
  .cta {
    background-color: #3a3a3a;
    color: white;
    text-align: center;
    padding: 60px 0;
  }
  
  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta .btn-primary {
    padding: 15px 30px;
    background-color: #ff7b00;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  
  .cta .btn-primary:hover {
    transform: translateY(-5px);
  }
  
  /* Footer Section Styling */
  footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
  }
  
  footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  footer p {
    margin-bottom: 20px;
  }
  
  footer form {
    display: flex;
    flex-direction: column;
    width: 300px;
  }
  
  footer input,
  footer textarea {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  footer button {
    background-color: #ff7b00;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  footer button:hover {
    background-color: #e76f00;
  }
  