/*
Theme Name: Devute WP Pro Theme
Theme URI: https://www.devute.com
Description: Custom WordPress theme for Admissiony
Author: DEVUTE UK LTD
Author URI: https://devute.com
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: devute-elm
Tags: law, elementor, responsive, mega-menu
*/
/* Please remove any theme information. If anyone other than a Devute developer changes it, the section may break. */
/* Import parent theme styles */
@import url("../hello-elementor/style.css");
 
header#site-header {
  display: none !important;
}

/* Course Group Carousel Styles */
.course-group-list {
    position: relative;
    margin: 30px 0;
}

/* Card Styling */
.course-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    position: relative;
    margin: 10px 5px;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Badge Styling */
.course-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.scholarship {
    background-color: #f06292;
}

.fast-track, .instructor {
    background-color: #26a69a;
}

.badge-icon {
    margin-right: 5px;
}

/* Course Image */
.course-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Course Info Section */
.course-info {
    padding: 15px;
}

.university-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
}

.location {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.location-icon {
    margin-right: 5px;
    color: #4caf50;
}

/* Course Details */
.course-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: #555;
}

.detail-icon {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Ranking and Intake */
.ranking-intake {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.ranking, .intake {
    display: flex;
    align-items: center;
}

.trophy-icon, .calendar-icon {
    margin-right: 10px;
    font-size: 24px;
    color: #ffa000;
}

.calendar-icon {
    color: #5c6bc0;
}

.ranking strong, .intake strong {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    color: #333;
}

.sub-text {
    font-size: 12px;
    color: #888;
}

/* Tuition Fee */
.tuition-fee {
    margin-bottom: 15px;
    text-align: left;
}

.tuition-fee h4 {
    font-size: 20px;
    font-weight: bold;
    color: #2196f3;
    margin: 0;
}

.fee-period {
    font-size: 14px;
    font-weight: normal;
    color: #777;
}

.fee-label {
    font-size: 14px;
    color: #555;
}

/* Application Button */
.start-application {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #e91e63;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.start-application:hover {
    background-color: #d81b60;
    color: white;
}

/* Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.owl-prev, .owl-next {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
    background-color: white !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.nav-arrow {
    font-size: 18px;
    color: #333;
}

/* Carousel Dots */
.owl-dots {
    margin-top: 20px;
    text-align: center;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #D6D6D6;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-dot.active span {
    background: #e91e63;
    transform: scale(1.2);
}

/* Section Title */
.course-group-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.course-group-title h2 {
    font-size: 28px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
    margin: 0;
}

.course-group-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #e91e63;
}

.view-all {
    color: #2196f3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #0d8aee;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .course-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .ranking-intake {
        flex-direction: column;
        gap: 15px;
    }
}
.course-image-preview img {
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
  display: block;
}

/* ====================End Desktop Css=================== */

/* ====================End Desktop Css=================== */
/* ====================End Desktop Css=================== */
/* ====================End Desktop Css=================== */
/* ====================End Desktop Css=================== */
/* ====================End Desktop Css=================== */








/* Desktop (1351px and up) */
@media (min-width: 1351px) and (max-width: 1399px) {
  
  


  
}



/*	Leptop Layout: 768px.
		Gutters: 24px.
		Outer margins: 28px.
		Inherits styles from: Default Layout.
-----------------------------------------------------------------
cols    1     2      3      4      5      6      7      8
px      68    160    252    344    436    528    620    712    */

/* Laptop (1025px - 1350px) */
@media (min-width: 1025px) and (max-width: 1350px) {







}







/*		Tablet Layout: 768px.
		Gutters: 24px.
		Outer margins: 28px.
		Inherits styles from: Default Layout.
-----------------------------------------------------------------
cols    1     2      3      4      5      6      7      8
px      68    160    252    344    436    528    620    712    */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	 
  





}



/*		Mobile Layout: 320px.
		Gutters: 24px.
		Outer margins: 34px.
		Inherits styles from: Default Layout.
---------------------------------------------
cols    1     2      3
px      68    160    252    */

@media only screen and (max-width: 767px) {
	







	
}
 

/*		Wide Mobile Layout: 480px.
		Gutters: 24px.
		Outer margins: 22px.
		Inherits styles from: Default Layout, Mobile Layout.
------------------------------------------------------------
cols    1     2      3      4      5
px      68    160    252    344    436    */

@media only screen and (min-width: 480px) and (max-width: 767px) {



  


}
