@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.dropdown-toggle::after {
    display: none !important;
}
/* Custom CSS for Dropdown */



@media (max-width: 768px) {
    .sidebar {
        height: auto;
        padding: 10px;
    }

    .port-view {
        height: 100% !important;
    }

    .image-size {
        width: 100% !important;
        height: 150px !important;
        object-fit: cover;
    }

    .mobile-flex {
        flex-direction: column !important;
    }

    .sidebar h1 {
        font-size: 18px;
    }

    .content h1 {
        font-size: 28px;
    }

    .project-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-card img {
        margin-bottom: 10px;
    }

}

.project-card {
    background-color: white;
    color: black;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0px 1px 3px #000;
}

.project-card img {
    border-radius: 10px;
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.project-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.list-group::-webkit-scrollbar {
    display: block;
}

.list-group-item {
    display: flex;
    justify-content: space-between;
}

.slide-controls input[type="radio"] {
    display: none;
}

.scrollable-section::-webkit-scrollbar {
    width: 10px;
}

.scrollable-section::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f7f7f7, #dcdcdc);
    /* Light gradient */
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    /* Inner shadow for depth */
}

.scrollable-section::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00aaff, #005f8f);
    /* Vibrant blue gradient */
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.scrollable-section::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0077cc, #004466);
    /* Darker blue on hover */
    transform: scale(1.1);
    /* Slightly enlarges on hover */
}

/* Slide Controls - Enhanced */
.slide-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.truncated-text {
    display: inline-block;
    max-width: 150px; /* Adjust as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
  }
  
  .truncated-text:hover {
    overflow: visible;
    white-space: normal;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7); /* Optional for better readability */
    color: #fff;
    padding: 4px;
    border-radius: 4px;
  }

  /* Styling the scrollbar */
.signup::-webkit-scrollbar {
    width: 11px; /* Adjust width for the scrollbar */
}

.signup::-webkit-scrollbar-track {
    background: #f1f1f1; /* Light background color */
    border-radius: 10px;
}

.signup::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,  #0077cc, #004466); /* Gradient color */
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* Adds space around thumb */
}

.signup::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,  #0077cc, #004466); /* Darker gradient on hover */
}

.video-heading{
    display: flex;
    align-items: center;
}