/********** Template CSS **********/
:root {
--primary: #06BBCC;
--light: #F0FBFC;
--dark: #181d38;
}

.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-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: var(--primary);
}

@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 .owl-carousel-item {
position: relative;
max-height: 100vh !important;
overflow: hidden;
}

.header-carousel .owl-carousel-item img{

width: 100%;
height: 100%;
object-fit: cover ;
object-position: center !important;
}



/*** 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%;
right: 8%;
transform: translateY(-50%);
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: .5s;
}

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

.page-header {
background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
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::before {
position: absolute;
content: "";
width: calc(100% + 80px);
height: 2px;
top: 4px;
left: -40px;
background: var(--primary);
z-index: -1;
}

.section-title::after {
position: absolute;
content: "";
width: calc(100% + 120px);
height: 2px;
bottom: 5px;
left: -60px;
background: var(--primary);
z-index: -1;
}

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

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


/*** Service ***/
/*** Service ***/

.service-item{
position: relative;
overflow: hidden;
border-radius: 16px;
background: #000;
transition: 0.5s;
height: 120px;

}

/* Image as full background */
.service-item img{
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: 0.5s;
}

/* Dark overlay */
.service-item::before{
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
to top,
rgba(0,0,0,0.75),
rgba(0,0,0,0.25),
rgba(0,0,0,0.1)
);
z-index: 1;
transition: 0.5s;
}

/* Content over image */
.service-item .service-content{
position: absolute;
bottom: 25px;
left: 25px;
right: 25px;
z-index: 2;
color: #fff;
}

.service-item .service-content h5{
color: #fff;
font-size: 24px;
font-weight: 700;
margin-bottom: 10px;
}

.service-item .service-content p{
color: rgba(255,255,255,0.85);
margin: 0;
line-height: 1.6;
}

/* Hover effects */
.service-item:hover{
transform: translateY(-10px);
}

.service-item:hover img{
transform: scale(1.08);
}

.service-item:hover::before{
background: linear-gradient(
to top,
rgba(95, 139, 153, 0.88),
rgba(3, 3, 3, 0.35)
);
}


/*** 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);
}


/*** Testimonial ***/
.testimonial-carousel::before {
position: absolute;
content: "";
top: 0;
left: 0;
height: 100%;
width: 0;
background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
z-index: 1;
}

.testimonial-carousel::after {
position: absolute;
content: "";
top: 0;
right: 0;
height: 100%;
width: 0;
background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
z-index: 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: var(--primary);
}

.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;
}
/*** PREMIUM ABOUT SECTION ***/

.about-section{
background: #fff;
position: relative;
overflow: hidden;
}

/* IMAGE SIDE */

.about-image-wrapper{
position: relative;
padding: 20px;
}

.about-main-img{
width: 100%;
border-radius: 25px;
object-fit: cover;
position: relative;
z-index: 2;
box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-shape{
position: absolute;
width: 250px;
height: 250px;
background: linear-gradient(135deg,#06BBCC,#0d6efd);
border-radius: 30px;
top: -20px;
left: -20px;
opacity: 0.12;
z-index: 1;
}

.experience-box{
position: absolute;
bottom: 40px;
right: -10px;
background: #06BBCC;
color: #fff;
padding: 25px 30px;
border-radius: 20px;
z-index: 3;
box-shadow: 0 15px 35px rgba(6,187,204,0.3);
text-align: center;
}

.experience-box h2{
font-size: 40px;
font-weight: 800;
margin: 0;
line-height: 1;
}

.experience-box span{
font-size: 14px;
font-weight: 500;
}

/* CONTENT */

.about-tag{
display: inline-block;
background: rgba(6,187,204,0.1);
color: #06BBCC;
padding: 10px 20px;
border-radius: 50px;
font-size: 25px;
font-weight: 700;
margin-bottom: 20px;
}

.about-title{
font-size: 52px;
font-weight: 800;
line-height: 1.2;
color: #181d38;
margin-bottom: 25px;
}

.about-title span{
color: #06BBCC;
}

.about-text{
font-size: 16px;
line-height: 1.9;
color: #666;
margin-bottom: 20px;
}

/* FEATURE BOX */

.about-feature{
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
background: #fff;
padding: 22px;
border-radius: 18px;
transition: 0.4s;
border: 1px solid #f1f1f1;
box-shadow: 0 10px 25px rgba(0,0,0,0.04);
height: 100%;
}

.about-feature:hover{
transform: translateY(-8px);
box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.about-feature i{
width: 55px;
height: 55px;
min-width: 55px;
border-radius: 15px;
background: rgba(6,187,204,0.1);
color: #06BBCC;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
}

.about-feature h6{
font-size: 18px;
font-weight: 700;
margin-bottom: 6px;
color: #181d38;
}

.about-feature p{
margin: 0;
color: #777;
font-size: 14px;
}

/* BUTTONS */

.btn-about-primary{
background: #06BBCC;
color: #fff;
padding: 14px 34px;
border-radius: 50px;
font-weight: 600;
transition: 0.4s;
text-decoration: none;
}

.btn-about-primary:hover{
background: #181d38;
color: #fff;
transform: translateY(-3px);
}

.btn-about-outline{
border: 2px solid #06BBCC;
color: #06BBCC;
padding: 13px 32px;
border-radius: 50px;
font-weight: 600;
transition: 0.4s;
text-decoration: none;
}

.btn-about-outline:hover{
background: #06BBCC;
color: #fff;
}

/* RESPONSIVE */

@media(max-width:991px){

.about-title{
font-size: 38px;
}

.experience-box{
right: 10px;
bottom: 20px;
}
}

@media(max-width:576px){

.about-title{
font-size: 30px;
}

.experience-box{
padding: 18px 20px;
}

.experience-box h2{
font-size: 28px;
}
}

/* offer section */

/*** WHAT WE OFFER SECTION ***/

.offer-section{
background: #f8fbff;
position: relative;
overflow: hidden;
}

/* Heading */

.offer-tag{
display: inline-block;
background: rgba(6,187,204,0.1);
color: #06BBCC;
padding: 10px 22px;
border-radius: 50px;
font-size: 35px;
font-weight: 700;
margin-bottom: 20px;
}

.offer-title{
font-size: 35px;
font-weight: 800;
color: #181d38;
margin-bottom: 18px;
}

.offer-title span{
color: #06BBCC;
}

.offer-subtitle{
color: #666;
font-size: 17px;
line-height: 1.8;
}

.offer-subtitle span{
color: #06BBCC;
}

/* Cards */

.offer-card{
background: #fff;
border-radius: 24px;
padding: 40px 30px;
height: 100%;
position: relative;
overflow: hidden;
transition: 0.4s ease;
border: 1px solid #eef3f7;
box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.offer-card::before{
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 5px;
background: linear-gradient(90deg,#06BBCC,#0d6efd);
transition: 0.5s;
}

.offer-card:hover::before{
left: 0;
}

.offer-card:hover{
transform: translateY(-10px);
box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* Icon */

.offer-icon{
width: 80px;
height: 80px;
border-radius: 22px;
background: rgba(6,187,204,0.1);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 30px;
transition: 0.4s;
}

.offer-card:hover .offer-icon{
background: #06BBCC;
transform: rotate(-6deg);
}

.offer-icon i{
font-size: 32px;
color: #06BBCC;
transition: 0.4s;
}

.offer-card:hover .offer-icon i{
color: #fff;
}

/* Text */

.offer-card h4{
font-size: 24px;
font-weight: 700;
color: #181d38;
margin-bottom: 18px;
}

.offer-card p{
color: #666;
line-height: 1.9;
margin-bottom: 25px;
}

/* Link */

.offer-link{
color: #06BBCC;
font-weight: 700;
text-decoration: none;
transition: 0.3s;
}

.offer-link i{
margin-left: 5px;
transition: 0.3s;
}

.offer-link:hover{
color: #181d38;
}

.offer-link:hover i{
margin-left: 10px;
}

.offer-points{
padding: 0;
margin: 0 0 25px;
list-style: none;
}

.offer-points li{
position: relative;
padding-left: 28px;
margin-bottom: 14px;
color: #666;
line-height: 1.8;
font-size: 15px;
}

/* Custom Icon */
.offer-points li::before{
content: "\f00c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
position: absolute;
left: 0;
top: 3px;
color: #06BBCC;
font-size: 14px;
}

/* WHO WE ARE POINTS */

/* ROW STYLE POINTS */

.who-we-points{
margin-top: 30px;
display: flex;
flex-wrap: wrap;
gap: 20px 35px;
justify-content: center;
}

.who-point{
display: flex;
align-items: center;
gap: 10px;
}

.who-point i{
font-size: 10px;
color: #06BBCC;
}

.who-point span{
font-size: 16px;
color: #464646;
font-weight: 500;
}

/* Responsive */

@media(max-width:991px){

.offer-title{
font-size: 40px;
}
}

@media(max-width:576px){

.offer-title{
font-size: 30px;
}

.offer-card{
padding: 30px 24px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;

}
}



/*** UNIVERSITIES SECTION ***/

/* Carousel spacing */

.university-carousel .item{
padding: 10px 5px 20px;
height: 650px;
}

/* Dots */

.university-carousel .owl-dots{
margin-top: 25px;
text-align: center;
}

.university-carousel .owl-dot span{
width: 12px;
height: 12px;
margin: 5px;
background: #cfd8dc !important;
transition: 0.3s;
}

.university-carousel .owl-dot.active span{
width: 30px;
border-radius: 20px;
background: #06BBCC !important;
}



.university-section{
background: #f8fbff;
position: relative;
overflow: hidden;
}

/* Heading */

.university-tag{
display: inline-block;
padding: 10px 24px;
border-radius: 50px;
background: rgba(6,187,204,0.1);
color: #06BBCC;
font-size: 14px;
font-weight: 700;
margin-bottom: 20px;
}

.university-title{
font-size: 52px;
font-weight: 800;
color: #181d38;
margin-bottom: 18px;
}

.university-title span{
color: #06BBCC;
}

.university-subtitle{
color: #666;
font-size: 17px;
line-height: 1.8;
}

/* Category */

.category-header{
margin-bottom: 35px;
}

.category-header h2{
font-size: 32px;
font-weight: 800;
color: #181d38;
display: flex;
align-items: center;
gap: 14px;
}

.category-header h2 i{
color: #06BBCC;
}

/* Card */

.university-card{
background: #fff;
border-radius: 25px;
overflow: hidden;
transition: 0.4s;
height: 100%;
border: 1px solid #eef3f7;
box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.university-card:hover{
transform: translateY(-10px);
box-shadow: 0 20px 45px rgba(6,187,204,0.12);
}

/* Image */

.university-img{
position: relative;
overflow: hidden;
height: 250px;
}

.university-img img{
width: 100%;
height: 100%;
object-fit: cover;
transition: 0.5s;
}

.university-card:hover .university-img img{
transform: scale(1.08);
}

/* Content */

.university-content{
padding: 30px;
}

.university-content h4{
font-size: 24px;
font-weight: 700;
color: #181d38;
margin-bottom: 15px;
}

.university-content p{
color: #666;
line-height: 1.8;
margin-bottom: 25px;
}

/* Button */

.university-btn{
display: inline-block;
padding: 12px 28px;
border-radius: 50px;
background: #06BBCC;
color: #fff;
text-decoration: none;
font-weight: 600;
transition: 0.4s;
}

.university-btn:hover{
background: #181d38;
color: #fff;
}

/* Responsive */

@media(max-width:991px){

.university-title{
font-size: 40px;
}
}

@media(max-width:576px){

.university-title{
font-size: 30px;
}

.category-header h2{
font-size: 26px;
}
}
