/* Add your custom styles here */

.hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background: url('../images/bigimage.png') no-repeat center top;
    background-size: cover;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.courses-section {
    padding: 50px 0;
}

.card {
    border: none;
    text-align: center;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.navbar {
    background-color: white;
    padding: 60px 0;
}

.navbar-nav .btn {
    margin: 0 5px;
    color: white;
    background-color: #335eea;
    border-color: #335eea;
}

.navbar-nav .start-btn {
    color: #ff69b4;
}

.navbar-nav .nav-link.d-flex {
    align-items: center;
}

.user-icon {
    background-color: #335eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.user-icon i {
    color: white;
}

.login-text {
    color: #000;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: white !important;
    margin: 0 15px;
}

.navbar-logo {
    position: absolute;
    left: 15%;
    transform: translateX(-15%);
}

.navbar-login {
    position: absolute;
    right: 15%;
    transform: translateX(15%);
}

.course-card {
    transition: transform .2s;
}

.course-card:hover {
    transform: scale(1.05);
}

.footer-section {
    background-color: #335eea;
    color: white;
    padding: 50px 0;
}

.footer-logo {
    margin-bottom: 20px;
    width: 200px;
}

.footer-section h5 {
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section .media img {
    width: 60px;
    height: auto;
}

.footer-section .media-body a {
    color: white;
    font-weight: bold;
}

.footer-section .media-body a:hover {
    text-decoration: none;
}

.footer-section .social-icon {
    color: white;
    font-size: 20px;
    margin-left: 15px;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    display: none; /* Hidden by default */
    z-index: 1000;
}

.footer-section p i {
    color: #28a745;
    margin-right: 10px;
}
