  .navbar {
            background-color: #ffd700;
            overflow: hidden;
            padding: 15px;
            text-align: center;
        }

        .navbar a {
            display: inline-block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }

        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }

        .navbar-logo {
            display: inline-block;
            margin-right: 20px;
        }

        .navbar-logo img {
            max-width: 100%;
            height: auto;
        }

        .navbar-toggle {
            display: none;
        }    

        .hero-section {
        background-image: url(../uploads/pexels-pixabay-273250.jpg);
            height: 400px;

            background-repeat: no-repeat;
            color: white;
            text-align: center;
            padding: 100px 20px;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        h1 {
            font-size: 3em;
            margin-bottom: 20px;
        }

        p {
            font-size: 1.2em;
            margin-bottom: 30px;
        }

        .explore-button {
            display: inline-block;
            padding: 15px 30px;
            font-size: 1.2em;
            background-color: #4CAF50;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .explore-button:hover {
            background-color: #45a049;
        }




header {
            background-color:;
            color: white;
            text-align: center;
            padding: 1em;
        }

        section {
            padding: 20px;
            max-width: 800px;
            margin: auto;
        }

        h2 {
            color: #333;
        }

        p {
            line-height: 1.6;
            color: #555;
        }

        .service-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }





        .slider-container {
            max-width: 800px;
            margin: auto;
            overflow: hidden;
            position: relative;
            border: 2px solid #ddd; /* Border color */
            border-radius: 8px; /* Rounded borders */
        }

        .slider-content {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            box-sizing: border-box;
        }

        img {
            width: 100%;
            border-radius: 8px; /* Rounded image corners */
        }

        .arrow {
            position: absolute;
            top: 50%;
            width: 40px;
            height: 40px;
            font-size: 24px;
            cursor: pointer;
            background-color: #333;
            color: white;
            border: none;
            border-radius: 50%;
            outline: none;
            transition: background-color 0.3s;
        }

        .arrow:hover {
            background-color: #555;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }









.responsive-footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-section {
  flex: 1;
  margin: 10px;
}

.footer-section h3 {
  color: #ffd700; /* Golden color for headings */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  text-decoration: none;
  color: #fff;
}

.footer-section p {
  font-size: 14px;
}

.social-icons {
  font-size: 24px;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  background-color: #222;
}
        @media only screen and (max-width: 600px) {
            section {
                padding: 10px;
            }
            .navbar a {
                display: block;
                width: 100%;
                text-align: left;
            }

            .navbar-toggle {
                display: block;
                position: absolute;
                top: 15px;
                right: 15px;
            }

            .navbar-links {
                display: none;
                width: 100%;
                text-align: center;
            }

            .navbar-links.show {
                display: block;
            }
       }