/* Custom CSS */
        /* Basic styling */

        * {
              margin: 0;
              padding: 0;
              box-sizing: border-box;
          }

          body {
              font-family: 'Arial', sans-serif;
              line-height: 1.6;
          }

          h1, h2, h3 {
              text-align: center;
              color: #2d3e50;
          }
         

        /* Navbar Brand Image */
        .navbar-brand img {
            width: 150px;
        }

        
        /* Carousel with Parallax Effect */
        .carousel-item {
            height: 50vh;
            min-height: 300px;
            background-position: center;
            background-size: cover;
            position: relative;
        }
        .carousel-caption {
            position: absolute;
            bottom: 20px;
        }

        .services-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .services-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
        }

        .services-section h2::after {
            content: '';
            width: 50px;
            height: 4px;
            background-color: #007bff;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .service-card {
            border: none;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            background-color: #fff;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .service-card img {
            width: 80px;
            margin-bottom: 20px;
        }

        .service-card h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #007bff;
        }

        .service-card p {
            color: #6c757d;
            margin-bottom: 20px;
        }

        .service-card a {
            text-decoration: none;
            color: #007bff;
            font-weight: bold;
        }

        .service-card a:hover {
            text-decoration: underline;
        }
        
        /* Product Cards */
        .product-card {
            transition: transform 0.3s;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        .product-card:hover {
            transform: scale(1.05);
        }
        /* Timeline Section */
        .timeline {
            padding: 50px;
            background: #fff;
            text-align: center;
        }

        .timeline-container {
            display: flex;
            justify-content: space-around;
            margin-top: 30px;
        }

        .timeline-item {
            background: #00a859;
            color: white;
            padding: 20px;
            border-radius: 15px;
            width: 30%;
            transition: transform 0.3s ease;
        }

        .timeline-item:hover {
            transform: scale(1.05);
        }

        .timeline-item h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        /* Team Section */
        .team {
            padding: 50px;
            background: #f9f9f9;
        }

        .team-grid {
            display: flex;
            justify-content: space-around;
            margin-top: 30px;
        }

        .team-member {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: scale(1.05);
        }

        .team-member img {
            border-radius: 50%;
            width: 150px;
            height: 150px;
            margin-bottom: 15px;
        }
         /* About Us and Contact Us */
         .about-us, .contact-us {
            padding: 60px 0;
        }
        .about-us h2, .contact-us h2 {
            margin-bottom: 30px;
            font-weight: bold;
        }
        .about-us img, .contact-us img {
            max-width: 100%;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .about-us p, .contact-us p {
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .contact-section {
            padding: 60px 0;
            background-color: #f4f6f9;
        }

        .contact-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
        }

        .contact-section h2::after {
            content: '';
            width: 50px;
            height: 4px;
            background-color: #007bff;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .contact-info:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .contact-info i {
            font-size: 2rem;
            color: #007bff;
            margin-bottom: 20px;
        }

        .contact-info h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .contact-info p {
            color: #6c757d;
            margin-bottom: 20px;
            text-align: center;
        }

        .contact-info a {
            text-decoration: none;
            color: #007bff;
            font-weight: bold;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* Map styling */
        .contact-map {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .contact-map iframe {
            width: 100%;
            height: 300px;
            border: none;
        }
        /* Footer */
        footer {
            background-color: #f8f9fa;
            padding: 20px 0;
            text-align: center;
        }
        footer .social-icons a {
            margin: 0 10px;
            color: #6c757d;
            font-size: 24px;
        }