/* style.css */

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
  }
  
  .logo {
    height: 60px;
    margin-right: auto;
  }
  
  .navbar {
    flex: 1;
    text-align: center;
  }
  
  .navbar ul {
    list-style: none;
    display: inline-flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin: 0;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .navbar ul li a:hover {
    color: #00bcd4;
  }
  
  .slideshow-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .centered-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px 40px;
    border-radius: 10px;
    z-index: 2;
  }
  
  .centered-text h1 {
    margin: 0;
    font-size: 48px;
  }
  
  .centered-text p {
    font-size: 18px;
    margin-top: 10px;
  }
  
  .offer-section,
  .why-section,
  .services-section {
    padding: 60px 40px;
    text-align: center;
    background-color: white;
  }
  
  .offer-section h2,
  .services-section h2,
  .why-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .about-section {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 40px;
    align-items: center;
    background-color: white;
  }
  
  .about-img {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: 10px;
    flex: 1;
    object-fit: cover;
  }
  
  .about-text {
    flex: 1;
    padding: 20px 40px;
  }
  
  .about-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .about-text ol {
    text-align: left;
    margin: 20px auto;
    padding-left: 20px;
  }
  
  .footer {
    background-color: #1d1d1d;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-column h3,
  .footer-section h1,
  .footer-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column a {
    color: #00bcd4;
    text-decoration: none;
  }
  
  .footer-column a:hover {
    text-decoration: underline;
  }
  
  .footer-heading-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 10px;
  }
  
  .footer-heading-row h3 {
    flex: 1;
    text-align: center;
    font-size: 20px;
    margin: 0;
  }
  
  .footer-section h1 {
    font-size: 28px;
  }
  
  .footer-section h2 {
    font-size: 24px;
    margin-top: 20px;
  }
  
  @media (max-width: 768px) {
    .about-section {
      flex-direction: column;
    }
  
    .centered-text h1 {
      font-size: 32px;
    }
  
    .centered-text p {
      font-size: 14px;
    }
  
    .footer-section {
      flex-direction: column;
      gap: 20px;
    }
  
    .footer-heading-row h3 {
      text-align: left;
    }
  }
  