.mega-dropdown {
    background-color: white; /* Set the background color as needed */
    padding: 20px;
    display: none; /* Hide by default */
}

.mega-dropdown-container {
    display: flex;
    justify-content: space-between; /* Adjust alignment */
}

.mega-dropdown .column {
    flex: 1; /* Each column takes equal space */
    margin: 0 10px; /* Space between columns */
}

.mega-dropdown h3 {
    font-size: 18px; /* Adjust heading font size */
    margin-bottom: 10px;
    position: relative; /* Position for underline */
}

.mega-dropdown .underline {
    height: 2px; /* Thickness of the underline */
    background-color: orange; /* Color of the underline */
    width: 100%; /* Full width */
    margin-bottom: 10px; /* Space below the underline */
}

.mega-dropdown ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

.mega-dropdown li {
    display: flex; /* Align items */
    align-items: center; /* Center items vertically */
    padding: 8px 0; /* Space between items */
    transition: background-color 0.3s; /* Smooth background change */
}

.mega-dropdown li:hover {
    background-color: rgba(255, 165, 0, 0.3); /* Light orange on hover */
}

.mega-dropdown li i {
    color: orange; /* Icon color */
    margin-right: 8px; /* Space between icon and text */
}

.mega-dropdown h4 {
    font-size: 14px; /* Smaller font size for h4 */
    margin: 0; /* Remove margin */
}

.mega-dropdown p {
    font-size: 12px; /* Font size for paragraph */
    margin: 0; /* Remove margin */
}

/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
}

.hero {
    display: flex;
    align-items: center;
    padding: 2rem;
    background-color: #FF6600; /* Background color for the left section */
}

.hero-content {
    flex: 1;
    color: #ffffff;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #ffffff;
    color: #FF6600;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        padding: 0;
    }
    .hero-image {
        margin-top: 5rem;
    }
}


.hero {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.icon {
    position: relative;
    width: 24px; /* Adjust size of the icon */
    height: 24px;
    margin-bottom: 1rem;
}

.icon img {
    width: 100%;
    height: 100%;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #FF6600; /* Button background color */
    color: #ffffff; /* Button text color */
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
}

/* Image styling */
.hero-image,
.demo-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.thumbnail-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        padding: 0;
    }
    .hero-image, .demo-image {
        margin-top: 1.5rem;
    }
}
 /* Container styling */
        .containerf {
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #db5537;
            border-radius: 16px;
            padding: 20px;
            max-width: 800px;
            color: white;
            text-align: center;
        }

        /* Image styling */
        .image-section {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            width: 100%;
            overflow: hidden;
            border-radius: 16px;
            background-color: white;
        }

        .image-section img {
            width: 100%;
            max-width: 100%;
            height: auto;
        }

        /* Text section */
        .text-section {
            max-width: 500px;
        }

        h1 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        p {
            margin: 20px 0;
            line-height: 1.5;
        }

        /* Button styling */
        .button {
            display: inline-block;
            padding: 10px 20px;
            color: #db5537;
            background-color: white;
            border-radius: 8px;
            font-weight: bold;
            text-decoration: none;
            margin-top: 20px;
            transition: background-color 0.3s;
        }

        .button:hover {
            background-color: #f2ebe7;
        }

        /* Responsive styling */
        @media (min-width: 768px) {
            .container {
                flex-direction: row;
                text-align: left;
            }

            .text-section {
                max-width: 400px;
                padding-right: 20px;
            }

            .image-section {
                width: 50%;
            }
        }
        /* Container styling */
        .containerf {
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #db5537;
            border-radius: 16px;
            padding: 20px;
            max-width: 800px;
            color: white;
            text-align: center;
        }

        /* Image styling */
        .image-section {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            width: 100%;
            overflow: hidden;
            border-radius: 16px;
            background-color: white;
        }

        .image-section img {
            width: 100%;
            max-width: 100%;
            height: auto;
        }

        /* Text section */
        .text-section {
            max-width: 500px;
        }

        h1 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        p {
            margin: 20px 0;
            line-height: 1.5;
        }

        /* Button styling */
        .button {
            display: inline-block;
            padding: 10px 20px;
            color: #db5537;
            background-color: white;
            border-radius: 8px;
            font-weight: bold;
            text-decoration: none;
            margin-top: 20px;
            transition: background-color 0.3s;
        }

        .button:hover {
            background-color: #f2ebe7;
        }

        /* Responsive styling */
        @media (min-width: 768px) {
            .container {
                flex-direction: row;
                text-align: left;
            }

            .text-section {
                max-width: 400px;
                padding-right: 20px;
            }

            .image-section {
                width: 50%;
            }
        }
          /* Container */
  .geofencing-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #FF6600;
    border-radius: 20px;
    padding: 20px;
    max-width: 1700px;
    margin: auto;
    align-items: center;
    justify-content: center;
  }

  /* Text Content */
  .text-content {
    flex: 1;
    min-width: 300px;
    color: white;
    padding: 20px;
  }

  .text-content h2 {
    font-size: 2em;
    margin-bottom: 10px;
  }

  .text-content p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .text-content .demo-button {
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
  }

  .text-content .demo-button:hover {
    background-color: #FF6600;
    color: #FF6600;
  }

  /* Image Content */
  .image-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-content img {
    max-width: 100%;
    border-radius: 20px;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .geofencing-section {
      flex-direction: column;
    }

    .text-content {
      text-align: center;
    }
  }
   /* Container */
   .safety-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #FF6600;
    border-radius: 20px;
    padding: 20px;
    max-width: 1700px;
    margin: 20px auto;
    align-items: center;
    justify-content: center;
  }

  /* Text Content */
  .text-content {
    flex: 1;
    min-width: 300px;
    color: white;
    padding: 20px;
  }

  .text-content h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
  }

  .text-content p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .text-content .demo-button {
    background-color: white;
    color: #FF6600;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
  }

  .text-content .demo-button:hover {
    background-color: #F3A68C;
    color: #FF6600;
    border-color: white;
  }

  /* Image Content */
  .image-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .safety-section {
      flex-direction: column;
    }

    .text-content {
      text-align: center;
    }
  }
  .hero-section {
    position: relative;
    width: 100%;
    height: 50vh;
    background-image: url('images/bus.jpeg');
    background-size: cover;
    
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 80%;
    padding: 20px;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
       background-color: #ddd;
    color: #FF6600;
}


