body {
    font-family: "Poppins", sans-serif;
       background-color: #b8e0ff; 
       box-sizing: border-box;
   }
   * {
       box-sizing: border-box;
       margin: 0;
       padding: 0;
   
     
   }
   
   

.main-menu {
    background-color: #90d4f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
      white-space: nowrap; 
    max-width: 1500px;
    justify-content: center; 
  
}

.main-menu ul {
    list-style: none; 
    display: flex; 
    justify-content: center; 
    padding: 0 100px;
}


.main-menu li {
 
    margin: 0 3px; 
}

   
   .main-menu a {
       display: block;
       padding: 15px 25px;
       text-decoration: none;
       color: #ffffff; 
       font-size: 16px;
       transition: background-color 0.3s, color 0.3s; 
       border-radius: 5px; 
      
   
   }
   
   
   .main-menu a:hover {
     
           color: #faf4d3;
   
       transform: translateY(-2px); 
       box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
   }
   
   .main-menu a.active {
       background-color: #b9fff2;
           color: #faf4d3; 
   
   }

.logo-text-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 00;
    white-space: nowrap; 
    
  
}



.logo {
    width: 70px;
    height: auto;
    flex-shrink: 0;
}


@media (max-width: 900px) {
    .navbar-inner {
        flex-direction: column;
        padding-bottom: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }
    .nav-links li a {
        padding: 8px 10px;
    }
    .separator {
        display: none;
    }
    .hero-title {
        font-size: 2em;
    }
    .search-form {
        flex-direction: column;
        width: 95%;
    }
    .search-input {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    .search-btn {
        width: 100%;
        border-bottom: none;
    }
}
.search-container {
    position: relative;
    width: 400px;
        margin: 0 auto; 
  
 
  }

  input[type="text"] {
    width: 100%;
    padding: 10px 40px 10px 15px;
    font-size: 15px;
    border: 1px solid #ccc;
     border-radius: 20px;
   
    outline: none;
    transition: 0.2s;
  }

  input[type="text"]:focus {
    border-color: #007aff;
    box-shadow: 0 0 4px rgba(0, 122, 255, 0.4);
  }

  .search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #555;
  }

  .suggestions {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
  }

  .suggestions.active {
    display: block;
  }

  .suggestions .item {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-bottom: 1px solid #f2f2f2;
    cursor: pointer;
    transition: background 0.2s;
  }

  .suggestions .item:hover {
    background: #f0f8ff;
  }

  .suggestions .item:last-child {
    border-bottom: none;
  }

  .suggestions img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
  }

  .info p {
    margin: 0;
    font-size: 14px;
  }

  .price {
    font-size
    : 13px;
    color: #777;
  }


  
    .team-slider {
        max-width: 900px;
        margin: 30px auto;
        overflow: hidden;
        position: relative;
        border-radius: 14px;
      }
      .team-track {
        display: flex;
        animation: teamScroll 30s linear infinite;
      }
      .team {
        background: white;
        border-radius: 12px;
        flex: 0 0 250px;
        margin: 10px;
        text-align: center;
        padding: 16px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        transition: transform 0.3s;
      }
      .team:hover { transform: translateY(-6px); }
      .team img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 10px;
      }
      .team h3 { color: #0b6e4f; font-size: 1.1em; }
      .team p { color: #64748b; font-size: 0.9em; }
  
      @keyframes teamScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }
  
      footer {
        text-align: center;
        padding: 20px;
        color: #64748b;
        font-size: 0.9em;
      }
  
      @media (max-width: 768px) {
        .slider { height: 250px; }
        .team { flex: 0 0 180px; }
      }
:root {
    --sonadezi-blue: #0A3C6D; 
    --primary-color: #007bff; 
    --success-color: #48bb78; 
    --danger-color: #e53e3e;
    --warning-color: #ed8936;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --font-family: 'Poppins', sans-serif;
}


.content-area {
    max-width: 1700px;
    margin: 30px auto;
    padding: 0 20px;
}

.schedule-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
}

.schedule-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--sonadezi-blue);
    border-bottom: 3px solid var(--sonadezi-blue);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.schedule-description {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.schedule-controls {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.date-picker {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 5px;
    border: 1px solid #e2e8f0;
}


.date-info, .btn-view-map {
      padding: 10px 15px;
  border-radius: 6px;
    border: 1px solid #cbd5e0;
    background-color: white;
    font-size: 14px;
    color: var(--text-dark);
}

.current-day { font-weight: 700; color: var(--text-dark); font-size: 15px; }
.current-date { font-size: 13px; color: var(--text-muted); }

.field-filter, .btn-view-map {
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #cbd5e0;
    background-color: white;
    font-size: 14px;
    color: var(--text-dark);
}

.btn-view-map {
    background-color: #ebf8ff; 
    color: var(--primary-color);
    border-color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
}

/* Legend */
.schedule-legend {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px 0;
     
}

.legend-item {
    font-size: 14px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
}

.available-box { background-color: var(--success-color); color: white; }
.booked-box { background-color: var(--danger-color); color: white; }
.maintenance-box { background-color: var(--warning-color); color: white; }


.schedule-table-wrapper {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px; }

.schedule-table th {
    background-color: var(--sonadezi-blue);
    color: white;
    padding: 15px 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    position: sticky; 
    top: 0;
}

.schedule-table td {
    padding: 15px 10px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s;
}

.schedule-table tbody tr:hover {
    background-color: #f7fafc;
}

.schedule-table .time-slot {
    font-weight: 700;
    color: var(--sonadezi-blue);
    background-color: #ebf8ff;
    border-right: 2px solid var(--sonadezi-blue);
}

.slot {
    font-weight: 600;
    color: white;
    border-radius: 4px;
    margin: 5px;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.slot.available {
    background-color: var(--success-color);
    box-shadow: 0 4px 6px rgba(72, 187, 120, 0.3);
}

.slot.available:hover {
    background-color: #38a169;
    transform: scale(1.03);
    box-shadow: 0 6px 10px rgba(72, 187, 120, 0.5);
}

.slot.booked {
    background-color: var(--danger-color);
    opacity: 0.9;
    font-size: 13px;
    cursor: default;
}

.slot.maintenance {
    background-color: var(--warning-color);
    opacity: 0.8;
    font-size: 13px;
    cursor: default;
}

.btn-place-order {
    display: block;
    width: 300px;
    margin: 50px auto 10px;
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.btn-place-order:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}
   .main-container {
            display: flex;
            
            max-width: 1500px; 
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            overflow: hidden;
        }

        .form-section {
            flex: 0 0 350px; 
            padding: 30px;
            border-right: 1px solid #eee;
        }

        .form-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .form-header-line {
            width: 3px;
            height: 20px;
            background-color: #ff9800; 
            margin-right: 10px;
        }

        .form-header h2 {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin: 0;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .input-text, .input-textarea, .input-select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ced4da;
            border-radius: 5px;
            box-sizing: border-box; 
            font-size: 14px;
            color: #495057;
            background-color: #fff;
        }

        .input-text:focus, .input-textarea:focus, .input-select:focus {
            border-color: #80bdff;
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

        .input-textarea {
            height: 100px;
            resize: vertical;
        }

        .date-time-group {
            display: flex;
            gap: 15px; 
        }

        .date-time-group .input-text {
            flex: 1;
            text-align: center;
        }

        .btn-submit {
            width: 100%;
            padding: 12px;
            background-color: #a8c3fa; 
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 15px;
            transition: background-color 0.3s;
        }

        .btn-submit:hover {
            background-color: #8cafff;
        }

        .pricing-section {
            flex: 1; 
            padding: 30px;
           
        }

        .pricing-section h4 {
            font-size: 16px;
            color: #6c757d; 
            margin-top: 0;
            margin-bottom: 15px;
        }

        .price-table-placeholder {
            min-height: 450px; 
            border: 1px solid #e9ecef;
            border-radius: 5px;
            background-color: #fcfcfc;
        }




        
.contact-map-section {
    padding: 50px 20px;
    background-color: white;
}

.section-title-contact {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
}

.contact-container {
    max-width: 1500px;
    margin: 0 auto;
    background-color: #e7f3ff;

}




.location-tabs {
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
    display: flex;
    max-width: 300px;
}

.tab-button {
    background: none;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1em;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.tab-button.active {
    color: #1a4c9b;
    font-weight: bold;
    border-bottom-color: #1a4c9b;
}

.contact-details-map {
    display: flex;
    gap: 30px;
}



.contact-info {
    width: 40%;
    padding-right: 20px;
}

.contact-item {
    font-size: 1em;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.icon-contact {
    font-size: 1.2em;
    color: #1a4c9b;
    margin-right: 10px;
}

.contact-info a {
    color: #1a4c9b;
    text-decoration: none;
    transition: color 0.3s;
}

.google-map-link {
    color: #e60000;
    font-weight: bold;
    margin-left: 5px;
}



.map-embed {
    width: 60%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.map-embed iframe {
    display: block;
}



.footer-extension {
    background-color: #ffffff;
   
}

.footer-extension-container {
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
    background-color: #e2d9df36;
}

.ext-column {
    width: 23%;
    text-align: left;
}

.ext-column h4 {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.ext-column ul {
    list-style: none;
    padding: 0;
}

.ext-column ul li,
.ext-column p {
    margin-bottom: 10px;
    font-size: 0.9em;
}

.ext-column a {
    color: #666;
    text-decoration: none;
}

.ext-column a:hover {
    color: #1a4c9b;
}



.social-icons-ext {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icon-ext {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #666;
    display: block;
}

.social-section {
    text-align: center;
    padding-top: 20px;
}

.social-title {
    font-size: 1em;
    font-weight: normal;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.facebook {
    background-color: #3b5998;
}

.instagram {
    background-color: #55acee;

}
