/* Reset */
body, ul {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  /* Navbar Styles */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0c0c0c;
    padding: 1rem 2rem;
    color: white;
  }
  .logo img {
    height: 100px; /* Adjust based on your navbar size */
    width: 150px;  /* Maintain aspect ratio */
  }
  
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-item {
    list-style: none;
  }
  
  .nav-link {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #ffcc00;
  }
  
  /* Tabs Responsive */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-links {
      flex-direction: column;
      gap: 1rem;
    }
  }
  

  /*homepage*/

  .hero {
    text-align: center;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    padding: 5rem 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
  
  .hero .btn {
    background-color: #ffcc00;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  
  .about-us {
    padding: 3rem 2rem;
    background-color: #fff;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
    height: auto;
  }
  
  .about-content {
    max-width: 600px;
  }
  
  .about-content h1 {
    font-size: 2.5rem;
    color: #c89bc8;
    margin-bottom: 1rem;
  }
  
  .about-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
  }
  
  .about-content h2 {
    font-size: 1.5rem;
    color: #c89bc8;
    margin-bottom: 0.5rem;
  }
  
  .about-content ul {
    margin-bottom: 1.5rem;
    color: #555;
  }
  
  .about-content ul li {
    margin-bottom: 0.5rem;
    list-style: disc;
    margin-left: 20px;
  }
  
  .btn {
    background-color: #c89bc8;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }
  
  .btn:hover {
    background-color: #a26ba2;
  }
/* Services Section */
.services {
  padding: 2rem;
  text-align: center;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  color: #c89bc8;
}

.section-description {
  margin-top: 0.5rem;
  color: #555;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 1.5rem;
}

.service {
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image {
  width: 300px;              /* Fixed width */
  height: 250px;             /* Fixed height */
  object-fit: contain;       /* Ensures the entire image is visible (no cropping) */
}

.service h3 {
  font-size: 1.2rem;
  color: #c89bc8;
}

.service:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}  


.contact-section {
  background-color: #f8f9fa;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.social-links a {
  border-radius: 50px;
}
.img-thumbnail {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

ul.list-group {
  background-color: #ffffff; /* White background for contrast */
  border-radius: 10px; /* Rounded corners for the list */
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

.list-group-item {
  background-color: #ffffff; /* Ensure consistency */
  border: none; /* Remove default borders */
  padding: 15px 20px;
  font-size: 18px;
  color: #495057; /* Dark gray text */
  transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effects */
}

.list-group-item:hover {
  background-color: #f0f0f0; /* Light gray hover effect */
  transform: translateY(-2px); /* Subtle lift on hover */
}