 body {
     font-family: 'Poppins', sans-serif;
     margin: 0;
     padding: 0;
     background: #f8f9fa;
     color: #333;
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     background-color: #f15a29;
     background-color: #2c3e50;
     padding: 10px 20px;
     flex-wrap: wrap;
 }

 .navbar .logo {
     display: flex;
     align-items: center;
 }

 .navbar .logo img {
     width: 80px;
     /* height: 50px; */
     border-radius: 100%;
     margin-right: 10px;
 }

 .navbar .logo span {
     font-size: 20px;
     color: white;
     font-weight: 600;
 }

 .navbar .menu {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }

 .navbar .menu a {
     color: white;
     text-decoration: none;
     font-size: 16px;
     padding: 8px 12px;
     transition: background 0.3s;
 }

 .navbar .menu a:hover {
     background-color: white;
     color: #2c3e50;
     border-radius: 5px;
 }

 @media (max-width: 768px) {
     .navbar {
         flex-direction: column;
         align-items: flex-start;
     }

     .navbar .menu {
         width: 100%;
         flex-direction: column;
         margin-top: 10px;
     }

     .navbar .menu a {
         width: 100%;
         padding: 10px 0;
     }
 }

 /* Slider Wrapper Css */
 .slider-wrapper {
     position: relative;
     max-width: auto;
     margin: auto;
     overflow: hidden;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .slider {
     display: flex;
     transition: transform 0.5s ease-in-out;
     height: 400px;
     /* Adjust height as needed */
 }

 .slide {
     min-width: 100%;
     position: relative;
 }

 .slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .slide-content {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     color: white;
     padding: 30px;
     text-align: center;
 }

 .slide-title {
     font-size: 2.5rem;
     margin-bottom: 15px;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
 }

 .slide-description {
     font-size: 1.2rem;
     max-width: 800px;
     margin: 0 auto;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
 }

 /* Navigation Controls */
 .slider-control {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 50px;
     height: 50px;
     background-color: rgba(255, 255, 255, 0.2);
     border: none;
     border-radius: 50%;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     transition: all 0.3s;
     z-index: 10;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .slider-control:hover {
     background-color: rgba(255, 255, 255, 0.5);
 }

 .prev-slide {
     left: 20px;
 }

 .next-slide {
     right: 20px;
 }

 /* Indicators */
 .slider-indicators {
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 10px;
     z-index: 10;
 }

 .indicator {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.5);
     cursor: pointer;
     transition: all 0.3s;
 }

 .indicator.active {
     background-color: white;
     transform: scale(1.2);
 }

 /* Responsive Adjustments */
 @media (max-width: 992px) {
     .slider {
         height: 400px;
     }

     .slide-title {
         font-size: 2rem;
     }

     .slide-description {
         font-size: 1rem;
     }
 }

 @media (max-width: 768px) {
     .slider {
         height: 350px;
     }

     .slide-content {
         padding: 20px;
     }

     .slide-title {
         font-size: 1.8rem;
         margin-bottom: 10px;
     }

     .slider-control {
         width: 40px;
         height: 40px;
         font-size: 1.2rem;
     }
 }

 @media (max-width: 576px) {
     .slider {
         height: 300px;
     }

     .slide-title {
         font-size: 1.5rem;
     }

     .slide-description {
         display: none;
         /* Hide description on very small screens */
     }

     .slider-indicators {
         bottom: 10px;
     }
 }

 /* Co-Founder Message */
 .founder-message {
     background: #fff7f0;
     padding: 40px 20px;
 }

 .founder-message .container {
     display: flex;
     align-items: center;
     justify-content: space-between;
     max-width: 1100px;
     margin: auto;
     flex-wrap: wrap;
     gap: 20px;
 }

 .founder-message .text {
     flex: 1 1 55%;
 }

 .founder-message .text h2 {
     color: #2c3e50;
     font-size: 28px;
     margin-bottom: 15px;
 }

 .founder-message .text p {
     font-size: 16px;
     line-height: 1.7;
     color: #444;
 }

 .founder-message .image {
     flex: 1 1 35%;
     text-align: center;
 }

 .founder-message .image img {
     max-width: 100%;
     border-radius: 10px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 @media (max-width: 768px) {
     .founder-message .container {
         flex-direction: column;
         text-align: center;
     }

     .founder-message .text {
         order: 2;
     }

     .founder-message .image {
         order: 1;
     }
 }

 .hero h1 {
     color: #f15a29;
     font-size: 48px;
 }

 .hero p {
     margin-top: 15px;
     font-size: 20px;
     color: #555;
 }

 .section {
     padding: 60px 20px;
     text-align: center;
 }

 .section h2 {
     margin-bottom: 20px;
     color: #f15a29;
 }

 .content {
     max-width: 1100px;
     margin: 40px auto;
     padding: 20px;
     background: linear-gradient(to bottom, #fff7f1, #ffe2cc);
     border-radius: 10px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     animation: fadeIn 1s ease-in;
 }

 .content h1 {
     color: #f15a29;
     margin-bottom: 20px;
 }

 .content p {
     line-height: 1.8;
     margin-bottom: 20px;
 }


 /* Our Services Css */
 .services {
     padding: 3rem 1rem;
     text-align: center;
     background: #fff7f0;
 }

 .service-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 2rem;
 }

 .service-card {
     background: white;
     padding: 1.5rem;
     border-radius: 5px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }


 /* Footer Section */

 
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: white;
    margin: 0 10px;
    font-size: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
