/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h1, h2, h3 {
    color: #2c3e50;
  }
  
  a {
    text-decoration: none;
    color: #3498db;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #2980b9;
  }

  #home p{
    color:#000;
  }
  
  /* Header */
 /* Header */
header {
    background: #2c3e50;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header .logo h1 {
    margin: 0;
    font-size: 24px;
  }
  
  header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  header nav ul li {
    margin: 0 15px;
  }
  
  header nav ul li a {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  header nav ul li a:hover {
    color: #3498db;
  }
  
  /* Mobile Menu Toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
  }
  
  /* Responsive Navbar */
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
  
    header nav {
      position: absolute;
      top: 70px;
      right: 0;
      background: #2c3e50;
      width: 100%;
      display: none;
    }
  
    header nav.active {
      display: block;
    }
  
    header nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    header nav ul li {
      margin: 15px 0;
    }
  }
  /* Hero Section */
 /* Hero Section */
.hero {
    background-color: #f9f9f9;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .carousel {
    position: relative;
    max-width: 100%;
    height: 600px; /* Adjust height for mobile */
    margin-bottom: 30px;
    overflow: hidden;
  }
  
  .carousel-images {
    display: flex;
    transition: transform 1s ease-in-out;
  }
  
  .carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .prev, .next {
    background-color: rgba(255, 255, 255, 0.6);
    color: #333;
    font-size: 40px; /* Increase the font size for clarity */
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  
  .hero h2, .hero p {
    margin-bottom: 20px;
  }
  
  /* Mobile-specific adjustments */
  @media (max-width: 768px) {
    .hero {
      padding: 80px 0;
    }
  
    .carousel {
      height: 250px; /* Adjust carousel height for mobile */
    }
  
    .prev, .next {
      font-size: 30px; /* Smaller controls on mobile */
      padding: 8px;
    }
  }
  @media (max-width: 768px) {
    .hero {
      padding: 80px 0;
    }
  
    .carousel {
      height: 250px; /* Adjust carousel height for mobile */
    }
  
    .prev, .next {
      font-size: 30px; /* Smaller controls on mobile */
      padding: 8px;
    }
  }
  
  
  
  
  /* About Section */
  .about {
    padding: 60px 0;
    background: #fff;
  }
  
  .about h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .about p {
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Services Section */
  .services {
    padding: 60px 0;
    background: #f4f4f4;
  }

  .services h2 {
    text-align: center;
    margin-bottom: 40px;
  }

  .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .service-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 23%;
    text-align: center;
    margin-bottom: 20px;
  }

  .service-item i {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
  }

  .service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .service-item p {
    font-size: 16px;
    color: #666;
  }

  /* Mobile Adjustment for Service Cards */
  @media (max-width: 768px) {
    .service-item {
      width: 100%;
      margin-bottom: 30px;
    }

    .service-item i {
      font-size: 50px;
    }

    .service-item h3 {
      font-size: 20px;
    }

    .service-item p {
      font-size: 14px;
    }
  }

  /* Below 720px - Show one card per row */
  @media (max-width: 720px) {
    .service-item {
      width: 100%;
      margin-bottom: 30px;
    }

    .service-item i {
      font-size: 50px;
    }

    .service-item h3 {
      font-size: 20px;
    }

    .service-item p {
      font-size: 14px;
    }
  }
  
  /* Contact Section */
 /* Contact Section */
 .contact {
    padding: 60px 0;
    background: #fff;
  }

  .contact h2 {
    text-align: center;
    margin-bottom: 40px;
  }

  .contact-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
  }

  .contact-item {
    text-align: center;
  }

  .contact-item i {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
  }

  .contact-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .contact-item p {
    font-size: 16px;
    color: #666;
  }

  .contact p {
    font-size: 18px; /* Adjust font size */
    color: #555; /* Change text color */
    text-align: center; /* Center align the text */
    margin-bottom: 30px; /* Add space between the catchy line and other elements */
  }

  /* Mobile Adjustment for Contact Cards */
  @media (max-width: 700px) {
    .contact-info {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .contact-item {
      width: 100%;
      margin-bottom: 30px;
    }

    .contact-item i {
      font-size: 50px;
    }

    .contact-item h3 {
      font-size: 20px;
    }

    .contact-item p {
      font-size: 14px;
    }
  }

  /* Below 728px - Show single card per row */
  @media (max-width: 500px) {
    .contact-info {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .contact-item {
      width: 100%;
      margin-bottom: 30px;
    }

    .contact-item i {
      font-size: 50px;
    }

    .contact-item h3 {
      font-size: 20px;
    }

    .contact-item p {
      font-size: 14px;
    }
  }
  
  .map {
    text-align: center;
  }
  
  .map h3 {
    margin-bottom: 20px;
  }
  
  /* Footer */
  footer {
    background: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  footer .social-links {
    margin-top: 10px;
  }
  
  footer .social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
  }
  
  footer .social-links a:hover {
    color: #3498db;
  }