        /* Stilizimi per dropdown */
        .dropdown-mesimi {
            position: relative;
            display: inline-block;
        }
        .dropdown-mesimi .dropdown-content {
            display: none;
            position: absolute;
            background-color: #108BF9;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .dropdown-mesimi .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }
        .dropdown-mesimi .dropdown-content a:hover {
            background-color: #6cb2eb !important;
            color: #00004e;
        }
        .dropdown-mesimi.active .dropdown-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        .dropdown-mesimi .dropdown-icon {
            transition: transform 0.3s ease;
        }
        .dropdown-mesimi.active .dropdown-icon {
            transform: rotate(180deg);
        }

        /* Stilizimi per seksionin e ri */
        .course-section {
            display: flex;
            align-items: center;
            background-color: #00004e;
            padding: 20px;
            margin: 20px;
            border-radius: 8px;
            color: white;
        }
        .course-section img {
            max-width: 200px;
            margin-right: 20px;
            border-radius: 8px;
        }
        .course-info {
            flex: 1;
        }
        .course-info h1 {
            font-size: 2em;
            margin-bottom: 10px;
        }
        .course-info p {
            font-size: 1.1em;
            line-height: 1.6;
        }
        .course-info .phone {
            display: flex;
            align-items: center;
            margin-top: 10px;
        }
        .course-info .phone img {
            width: 20px;
            margin-right: 10px;
        }
        .course-info button {
            background-color: #108BF9;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 20px;
        }
        .course-info button:hover {
            background-color: #6cb2eb;
        }
        @media (max-width: 768px) {
            .course-section {
                flex-direction: column;
                text-align: center;
            }
            .course-section img {
                margin-right: 0;
                margin-bottom: 20px;
            }
            .course-info .phone {
                justify-content: center;
            }
        }

        /* Stilizimi per hover ne link (a) */
        #all_course:hover {
            background-color: #00004e !important;
            border-color: #108BF9 !important;
        }

        /* Stilizimi per kontakt form */
        .contact-section {
            padding: 80px 0;
        
        }
        .contact-section h4 {
            color: #108BF9;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .contact-section h1 {
            color: white;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .contact-section p {
            color: #108BF9;
            margin-bottom: 30px;
        }
        .contact-section .form-control {
            border-radius: 10px;
            border: 1px solid #ced4da;
            padding: 10px 15px;
        }
        .contact-section .form-control:focus {
            box-shadow: none;
            border-color: #108BF9;
        }
        .contact-section .form-floating label {
            color: #00004e;
            padding: 10px 15px;
        }
        .contact-section .btn-primary {
            background-color: #108BF9;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .contact-section .btn-primary:hover {
            background-color: #0d6efd;
        }
        .contact-info {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
        }
        .contact-info i {
            color: #108BF9;
            font-size: 24px;
            margin-right: 15px;
        }
        .contact-info h4 {
            color: #00004e;
            margin-bottom: 5px;
            font-size: 16px;
        }
        .contact-info p {
            color: #6c757d;
            margin-bottom: 0;
            font-size: 14px;
        }
        .map-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
        }

        /* Success notification */
        .success-notification {
            position: fixed;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    padding: 15px;
    background-color: green;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    display: flex;
    align-items: center;
    animation: slideIn 0.5s forwards;
        }

        .success-notification i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        @keyframes slideIn {
            from {
                transform: translate(-50%, -100%);
                opacity: 0;
            }
            to {
                transform: translate(-50%, 0);
                opacity: 1;
            }
        }

        .success-notification.hide {
            animation: slideOut 0.5s forwards;
        }

        @keyframes slideOut {
            from {
                transform: translate(-50%, 0);
                opacity: 1;
            }
            to {
                transform: translate(-50%, -100%);
                opacity: 0;
            }
        }