
/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
    --GhostWhite: #F8F8FF;
    --main: #080F32;
}

@import url('https://fonts.googleapis.com/css2?family=FAMILY_NAME:wght@WEIGHT_OR_RANGE&display=swap');

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-light:hover{
    background-color: #f0fbfcb7;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #040f4665;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%; /* Default position for larger screens */
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}


@media (max-width: 680px) {
    .header-carousel .owl-nav {
        position: absolute;
        top: calc(100% - 145px); /* Place it 50px above the bottom */
        right: 8%;
        transform: none;
        display: flex;
        flex-direction: column;
    }
}


.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: 3s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--GhostWhite);
    color: var(--main);
    border-color: var(--GhostWhite);
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}


.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

.coloraaa{
    color: white;
}
/*** Service ***/
.service-item {
    background: #080F32;
    transition: .5s;
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.219); /* Uniform shadow */
    border-radius: 0.5px; /* Optional: Smooth rounded corners */
}

.service-item:hover {
    margin-top: -10px;
    background: var(--light);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: black !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: #ffffff36;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

        /* Style for WebKit-based browsers (Chrome, Edge, Safari) */
        ::-webkit-scrollbar {
            width: 12px; /* Width of the scrollbar */
            background-color: #080F32; /* Matches the page background */
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #00A3FF, #080F32); /* Stylish gradient */
            border-radius: 6px; /* Rounded edges for a sleek look */
            border: 3px solid #080F32; /* Space around the thumb */
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, #00C8FF, #080F32); /* Brighter gradient on hover */
        }

        ::-webkit-scrollbar-track {
            background: #1A2238; /* Slightly lighter background for the track */
            border-radius: 6px; /* Rounded edges for track as well */
        }

        /* For Firefox */
        * {
            scrollbar-width: thin; /* Thin scrollbar for Firefox */
            scrollbar-color: #00A3FF #1A2238; /* Thumb color and track color */
        }

/* Hover Underline Animation */
.underline-animation {
    position: relative;
    display: inline-block;
    color: #080F32;
    text-decoration: none;
    overflow: hidden;
    transition: color 1s ease;
}

.underline-animation:hover {
    color: var(--main); /* Change text color on hover */
}

/* Animated Underline */
.underline-animation::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #007bff, #0056b3); /* Gradient for underline */
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth animation */
}

.underline-animation:hover::after {
    width: 100%; /* Expand underline to full width on hover */
}

.dropdown-menu {
    background-color: #ffffff;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth dropdown appearance */
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: #080F32;
    transition: background-color 0.3s ease, color 0.3s ease;
}


#creators-btn {
    background: #080F32;
    color: #ffffff;
    border: 1px solid #080F32;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}
#creators-btn:hover {
    background: #ffffff17;
    color: #051047;
}
       /* Modern glassmorphism effect */
       .modal-content {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Title styling */
    .modal-title {
        font-weight: bold;
        color: #ffffff;
    }

    /* Header and Footer */
    .modal-header, .modal-footer {
        border: none;
        background: rgba(255, 255, 255, 0.1);
    }

    /* List styling */
    .list-group-item {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    /* Hover effect */
    .list-group-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.02);
    }

    /* Close button */
    .btn-close {
        filter: invert(1);
    }

    /* Button styling */
    .btn-secondary {
        background: linear-gradient(135deg, #6a11cb, #2575fc);
        border: none;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        background: linear-gradient(135deg, #2575fc, #6a11cb);
        transform: scale(1.05);
    }


   /* Professional button  Termat dhe kushtet*/

    /* Professional button  Termat dhe kushtet*/

    .btn-professional {
        background: linear-gradient(90deg, #0d6efd, #0056b3); /* Professional blue gradient */
        color: #ffffff;
        border: none;
        border-radius: 25px;
        padding: 10px 20px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: 0 4px 6px #0000001a; /* subtle shadow */
      }
      
      .btn-professional:hover {
        background: linear-gradient(90deg, #0056b3, #0d6efd);
        transform: translateY(-2px);
        box-shadow: 0 6px 8px #00000026;
      }
      
      .btn-professional:focus {
        outline: none;
        box-shadow: 0 0 0 0.25rem #0d6efd66;
      }

      

