@charset "utf-8";
/* CSS Document */

            body {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            font-family: "Readex Pro", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;

            }
            /* Custom header styling */
            .navbar {
                padding: 20px;
                background-color: rgb(159 188 234)  !important;
            }
            .navbar-brand img {
                height: 40px;
            }
            .nav-link:hover {

            }
            .btn-custom {
                border-radius: 20px;
                padding: 5px 20px;
            }
/* start userinfo */

nav .userinfo {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 20px;
  position: relative;
  cursor: pointer;
}

nav .userinfo {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 20px;
  position: relative;
  cursor: pointer;
}

nav .userinfo .user-image {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #0288d1;
  text-align: center;
  line-height: 52px;
  text-transform: uppercase;
  font-size: 24px;
  color: #fff;
}

nav .userinfo .user-menu {
  position: absolute;
  top: 130%;
  left: -60px;
  width: 200px;
  background-color: #fff;
  box-shadow: 0px 0px 25px rgba(215, 216, 222, 0.41);
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}

nav .userinfo:hover .user-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
}


nav .userinfo .user-menu ul {
  padding: 0;
}

nav .userinfo .user-menu ul li.active {
  background-color: #f2f2ed;
}

nav .userinfo .user-menu ul li:hover {
  background-color: #f2f2ed;
}

nav .userinfo .user-menu ul li a {
  display: block;
  width: 100%;
  color: #253249;
  cursor: pointer;
  height: inherit;
  padding: 10px 10px;
}

nav .userinfo .user-menu ul hr {
  margin: 5px 0 !important;
}

nav .userinfo .user-menu ul li a span {
  padding-right: 5px;
  text-transform: capitalize;
}

/* end userinfo */


            /* Custom dropdown styling */
            .dropdown-custom {
                position: relative;
                display: inline-block;
            }

            /* Dropdown content container */
            .dropdown-content {
                display: none;
                position: absolute;
                background-color: #f9f9f9;
                box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
                padding: 15px;
                width: 500px;
                z-index: 1;
                right: 0;
                display: flex;
                transition: all 0.4s ease-in-out;
                opacity: 0;
            }

            /* University list styling */
            .dropdown-content .universities {
                width: 50%;
                border-right: 1px solid #ccc;
                padding-right: 10px;
            }

            /* College list styling */
            .dropdown-content .colleges {
                width: 50%;
                padding-left: 10px;
                opacity: 0;
                transition: opacity 0.3s ease-in-out;
            }

            /* Hover effect for universities */
            .dropdown-content .universities a:hover {
                background-color: #eee;
                cursor: pointer;
            }

            /* Visible dropdown animation */
            .dropdown-content.show {
                display: flex;
                opacity: 1;
            }

            /* Colleges show animation */
            .dropdown-content .colleges.show {
                opacity: 1;
            }

            /* Custom list item styles */
            .universities a, .colleges a {
                display: block;
                padding: 8px 0;
                color: #333;
                text-decoration: none;
                font-size: 14px;
            }

            .universities a:hover, .colleges a:hover {
                background-color: #d1f0ff;
                color: #007bff;
            }

            /* Custom dropdown toggle button */
            .dropdown-toggle-custom {
                padding: 10px 20px;
                background-color: #007bff;
                color: white;
                border-radius: 5px;
                border: none;
                cursor: pointer;
                font-size: 16px;
            }
            /* Hero Section */
            .hero {
                background: linear-gradient(180deg, #9abcef, #f8f9fa);
                position: relative;
                padding: 60px 20px;
            }

            .hero .hero-content {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .hero-text {
                max-width: 50%;
                color: #333;
            }

            .hero-text h1 {
                font-size: 2.5rem;
                font-weight: bold;
            }

            .hero-text p {
                font-size: 1.2rem;
                line-height: 1.6;
                margin-bottom: 20px;
                color: #555;
            }

            .hero .btn-hero {
                padding: 10px 30px;
                border-radius: 30px;
                background-color: #007bff;
                color: white;
                text-transform: uppercase;
                font-weight: bold;
                box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            }

            .hero-image {
                max-width: 45%;
                display: flex;
                justify-content: center;
            }

            .hero-image img {
                width: 100%;
            }
            /* Services Section Styles */
            .services-section {
                background-color: #f8f9fa;
                padding: 60px 0;
            }

            .section-title {
                font-size: 2.5rem;
                color: #000000; /* Website Blue Theme */
                font-weight: bold;
                margin-bottom: 1rem;

            }
            .service-card .tag {
                font-size: 0.9rem;
                color: #fff;
                background-color: #007bff; /* Website Blue Theme */
                padding: 5px 15px;
                display: inline-block;
                border-radius: 20px;
                margin-bottom: 15px;
                text-transform: uppercase;
            }

            .section-description {
                color: #555;
                font-size: 1.2rem;
                max-width: 700px;
                margin: 0 auto;
                margin-bottom: 40px;
            }

            /* Service Card Styling */
            .service-card {
                background-color: #fff;
                border-radius: 10px;
                padding: 30px;
                text-align: center;
                transition: transform 0.3s ease-in-out;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                margin-bottom: 20px;
                transform: translateY(50px);
                opacity: 0;
            }

            .service-card:hover {
                transform: translateY(-10px);
            }

            /* Icon Styling */
            .service-card .icon {
                font-size: 3rem;
                color: #007bff; /* Website Blue Theme */
                margin-bottom: 15px;
            }

            .service-card h3 {
                font-size: 1.5rem;
                margin-bottom: 15px;
                color: #333;
            }

            .service-card p {
                color: #666;
                font-size: 1rem;
                line-height: 1.6;
            }

            /* Course card styles */
            .course-card {
                background-color: #f8f9fa;
                border-radius: 10px;
                padding: 20px;
                text-align: center;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
                margin-bottom: 30px;
                transition: transform 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .course-card img {
                width: 100%;
                height: 200px;
                border-radius: 10px;
                object-fit: cover;
            }

            .course-card h3 {
                font-size: 1.3rem;
                color: #333;
                font-weight: bold;
                margin-top: 15px;
            }

            .course-card p {
                color: #555;
                font-size: 1rem;
            }

            .course-card .instructor {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 10px;
            }

            .course-card .instructor img {
                border-radius: 50%;
                width: 50px;
                height: 50px;
                object-fit: cover;
            }

            .course-card .instructor .name {
                flex: 1;
                margin-left: 10px;
                text-align: left;
                font-size: 1rem;
                color: #333;
            }

            .course-card .instructor .duration {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                color: #007bff;
            }

            .course-card .instructor .duration i {
                margin-left: 5px;
            }

            .course-card:hover {
                transform: translateY(-10px);
            }

            /* Filter buttons */
            .filter-buttons {
                text-align: center;
                margin-bottom: 30px;
            }

            .filter-buttons button {
                margin: 5px;
                padding: 10px 20px;
                border-radius: 20px;
                background-color: #007bff;
                color: #fff;
                border: none;
                cursor: pointer;
                transition: background-color 0.3s ease;
            }

            .filter-buttons button:hover {
                background-color: #0056b3;
            }

            /* See All button */
            .see-all-btn {
                display: block;
                margin: 20px auto;
                padding: 10px 30px;
                border-radius: 20px;
                background-color: #28a745;
                color: white;
                border: none;
                font-size: 1.1rem;
                cursor: pointer;
                transition: background-color 0.3s ease;
            }

            .see-all-btn:hover {
                background-color: #218838;
            }




            .title-decration {
                position: relative;
            }
            .title-decration::before {
                content: "";
                position: absolute;
                background: url(2.svg);
                left: -20px;
                top: -12px;
                width: 30px;
                height: 55px;
                background-repeat: no-repeat;
                background-size: contain;
            }
            .title-decration::after {
                content: "";
                position: absolute;
                background: url(1.svg);
                left: 50%;
                bottom: -15px;
                width: 100%;
                height: 20px;
                background-repeat: no-repeat;
                background-size: 100% 100%;
                transform: translateX(-50%);
            }
            .mlqn-title {
                background: url(blue_highlight_bold_05.svg);
                background-size: contain;
                background-repeat: no-repeat;
                background-position: 0 71%;
                position: relative;
            }
            .mlqn-title::before {
                content: "";
                position: absolute;
                background: url(Misc_03.svg);
                left: -2px;
                top: -15px;
                width: 20px;
                height: 20px;
                background-repeat: no-repeat;
                background-size: contain;
                transform: translateX(-50%);

            }

                    /* Footer Basic Styling */
            .footer {
                background-color: #f9fafc;
                padding: 40px 0;
                color: #333;
                font-family: 'Arial', sans-serif;
            }

            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 15px;
            }

            .footer-content {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                margin-bottom: 20px;
            }

            /* Footer Left Section (Logo, Buttons, Social Icons) */
            .footer-left {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-logo {
                height: 50px;
                margin-bottom: 20px;
            }

            .footer-buttons {
                display: flex;
                gap: 10px;
                margin-bottom: 20px;
            }

            .footer-buttons .btn {
                border-radius: 50px;
                padding: 10px 20px;
                font-weight: bold;
            }

            .footer-buttons .btn-outline-secondary {
                border: 2px solid #ccc;
            }

            .social-icons {
                display: flex;
                gap: 15px;
            }

            .social-icons a {
                font-size: 20px;
                color: #333;
                background-color: #eee;
                padding: 10px;
                border-radius: 50%;
                text-decoration: none;
                transition: background-color 0.3s ease;
            }

            .social-icons a:hover {
                background-color: #007bff;
                color: white;
            }

            /* Footer Right Section (Links) */
            .footer-right {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
            }

            .footer-links {
                list-style: none;
                padding: 0;
            }

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

            .footer-links li a {
                color: #333;
                text-decoration: none;
                transition: color 0.3s ease;
            }

            .footer-links li a:hover {
                color: #007bff;
            }

            /* Footer Bottom Section */
            .footer-bottom {
                text-align: center;
                border-top: 1px solid #eee;
                padding-top: 20px;
            }

            .footer-bottom p {
                margin: 0;
                color: #666;
                font-size: 14px;
            }

            .footer-bottom a {
                margin-left: 10px;
                color: #333;
                text-decoration: none;
            }

            .footer-bottom a:hover {
                color: #007bff;
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .footer-content {
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                }

                .footer-left {
                    align-items: center;
                }

                .footer-right {
                    align-items: center;
                    margin-top: 20px;
                }
            }

            /* Responsive Hero Section */
            @media (max-width: 768px) {
                .hero {
                    padding-top: 0;
                }
                .hero .hero-content {
                    flex-direction: column-reverse;
                    text-align: center;
                }

                .hero-text, .hero-image {
                    max-width: 100%;
                }

                .hero-text h1 {
                    font-size: 2rem;
                }

                .hero-text p {
                    font-size: 1rem;
                }

                .hero-image {
                    max-height: 500px;
                }
            }

            /* Responsive for mobile */
            @media (max-width: 768px) {
                .dropdown-content {
                    width: 100%;
                    flex-direction: column;
                }
                .universities, .colleges {
                    width: 100%;
                    padding: 10px;
                }

                /* Hide the login button in desktop */
                .login-btn {
                    display: none;
                }

                /* Show login button inside nav items on mobile */
                .navbar-nav .nav-item .login-nav {
                    display: inline-block;
                }
            }

            /* On desktop show login button */
            @media (min-width: 769px) {
                .navbar-nav .nav-item .login-nav {
                    display: none;
                }
                .login-btn {
                    display: inline-block;
                }
            }

            /* Dropdown hover effect */
            .dropdown-custom:hover .dropdown-content {
                display: flex;
                opacity: 1;
            }

            /* Custom Offcanvas styling */
            .offcanvas-header {
                border-bottom: none;
            }

            .offcanvas-body .nav-link {
                font-size: 18px;
                color: #333;
                border-bottom: 1px solid #eee;
                padding: 10px 0;
                text-align: right;
            }

            .offcanvas-body .btn-custom {
                background-color: #00c8c8;
                color: white;
                padding: 10px 30px;
                border-radius: 20px;
                margin-top: 20px;
                width: 100%;
                text-align: center;
            }

            .social-icons {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin-top: 30px;
            }

            .social-icons a {
                background-color: #001c3d;
                padding: 10px;
                border-radius: 50%;
                color: white;
                font-size: 18px;
                text-decoration: none;
                display: inline-flex;
                justify-content: center;
                align-items: center;
            }

            .social-icons a:hover {
                background-color: #007bff;
            }



            /*   Cart Styling */
            .offcanvas-header {
                border-bottom: 1px solid #eee;
            }

            .offcanvas-body .cart-item {
                border-bottom: 1px solid #eee;
                padding-bottom: 10px;
            }

            .offcanvas-body .cart-item img {
                width: 60px;
                height: 60px;
                object-fit: cover;
                border-radius: 5px;
            }

            .cart-item-quantity input {
                text-align: center;
                border-radius: 5px;
            }

            /* Cart Empty Message */
            .cart-empty i {
                color: #ccc;
            }

            /* Additional customizations for better visual experience */
            nav {
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            }
