.banner1.container {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
}


.banner1.container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.landingvideo, iframe{
    width:100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 5px;
    box-shadow: 0px 0px 8px gray;
}

.langingvideo, .col-lg-5 img {
    border-radius: 15px;
    margin-bottom: 10px;
}

.searchcourse {
    position: relative;

    .search-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 50px;
        padding: 0px 15px;
        background: white;
        transition: all 0.3s ease-in-out;

        input {
            border: none;
            outline: none;
            box-shadow: none; // Ensures no border highlight
            width: 100%;
            padding: 8px;
            font-size: 16px;
            background: transparent;
            color: #333; // Ensure text is visible

            &::placeholder {
                color: #888; // Lighter gray for placeholder text
            }

            &:focus {
                border: none;
                outline: none;
                box-shadow: none; // Remove any focus effect
            }
        }

        span {
            border: none;
            background: none;
            cursor: pointer;
            color: #007bff;
            font-size: 18px;
            display: flex;
            justify-content: center;
            transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;

            &:hover {
                color: #0056b3;
                transform: scale(1.2);
            }
        }
    }

    .suggestions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    max-height: 300px; /* Set max-height to control the visible area */
    overflow-y: auto;  /* This makes it scrollable */
}

.suggestions-list li {
    padding: 5px 10px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    color: #333;
}

.suggestions-list li:hover {
    background: #f2f2f2;
    color: blue;
}


}


@media (max-width: 768px) {
    .banner1.container {
        padding: 10px;
        
    }
    
    .banner1.container img {
        border-radius: 5px;
        
    }
    
    .landingvideo, iframe{
        margin-top: 15px;
        box-shadow: 0px 0px 5px gray;
    }
} 

/*================*/

.advisor-box {
  background: #111827;
  padding: 20px;
  border-radius: 14px;
  color: #fff;
  max-width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  border: 1px solid #1f2937;
  font-family: Arial, sans-serif;
}

.advisor-box h3 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 6px;
  color: #f3f4f6;
}

.availability {
  font-size: 12px;
  text-align: center;
  color: #9ca3af;
  margin-bottom: 14px;
  font-weight: 500;
}

/* Card */
.advisor-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #1f2937;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.25s ease;

  border-left: 4px solid #00e5ff; /* cyan only on left side */
}

/* Hover */
.advisor-item:hover {
  background: #374151;
  transform: translateY(-2px);
}

/* Course name */
.label {
  font-size: 14px;
  font-weight: 600;
  color: #f9fafb;
}

/* Number */
.number {
  font-size: 13px;
  color: #d1d5db;
  font-weight: bold;
}

/* Call button (cyan only here) */
.call-btn {
  background: #00e5ff;
  color: #001018;
  padding: 7px 10px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.25);
}

/* Hover */
.call-btn:hover {
  background: #00c6ff;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 198, 255, 0.35);
}

/* Click */
.call-btn:active {
  transform: scale(0.95);
}




