
        .tooltip-container {
            position: relative;
        }

        .tooltip-text {
            position: absolute;
            bottom: 55px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .btn:hover .tooltip-text {
            opacity: 1;
        }


        /* Change the hover color of dropdown items */
    .dropdown-item:hover {
        background-color: #06A3DA !important;
        color: white; /* Optional: Change text color to white for better contrast */
    }


    .link-animated a {
        text-decoration: none !important;
    }

    .icon-green {
        color: #00ff00; /* Dark green color */
    }
    
    .container {
        max-width: 1200px;
        margin: auto;
        padding: 20px;
    }

    .header {
        text-align: center;
        padding: 30px 0;
        color: #fff;
        font-size: 2em; /* Adjust as needed */
        font-weight: bold;
        margin-bottom: 10px; /* Space between text and bar */
    }

    .header h1 {
        margin: 0;
        font-size: 1.5em;
    }

    .content {
        text-align: center;
        margin: 20px 0;
    }

    .content p {
        font-size: 1.2em;
        line-height: 1.6;
        color: #333;
    }

    .logo-slider {
        overflow: hidden;
        position: relative;
        background: #fff;
        padding: 20px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .logo-track {
        display: flex;
        gap: 40px;
        animation: slide 10s linear infinite;
    }

    .logo-track img {
        width: 150px;
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease-in-out;
    }

    .logo-track img:hover {
        transform: scale(1.1);
    }
    
.visitor-count-box-footer{
    padding: 7px 13px;
    font-weight: 500;
    background: #007bff;
    box-shadow: 0px 0px 3px #007bff;
    border-radius: 5px;
}    

    @keyframes slide {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    }

    .address-box {
        border: 2px solid #007bff; /* Blue border */
        border-radius: 8px;       /* Rounded corners */
        padding: 10px;           /* Space inside the box */
    }
    

    .team-section {
      text-align: center;
      padding: 50px 20px;
      background: #fff;
    }
    
    .team-section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #333;
    }
    
    .team-slider {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 20px;
      padding: 20px;
      scrollbar-width: none; /* For Firefox */
    }
    
    .team-slider::-webkit-scrollbar {
      display: none; /* For Chrome, Safari, and Edge */
    }
    
    .slide1 {
      flex: 0 0 auto;
      scroll-snap-align: center;
      background: #fff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      padding: 20px;
      width: 200px;
      text-align: center;
    }
    
    .slide1 img {
      width: 100%;
      margin-bottom: 15px;
    }
    
    .slide1 .name {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 5px;
    }
    
    .slide1 .role {
      font-size: 1rem;
      color: #777;
    }


 /* styles.css */
 .sec{
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*height: 100vh;*/
  background-color: #001F5A; /* Blue background */
}

.statistics-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 100%;
  padding: 20px;
}

.stat-item {
  background-color: #F6F5F2; /* Light beige color */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin: 0;
}

.stat-description {
  font-size: 1rem;
  color: #444;
  margin: 5px 0 0;
}

