
/*
Template Name: Kindle	
Author: MarkUps
Author URI: http://www.markups.io/
Version: 1.0
*/


/* Table of Content
==================================================
#BASIC TYPOGRAPHY
#HEADER	
#MENU 
#HERO SECTION
#COUNTER
#BOOK OVERVIEW
#VIDEO REVIEW
#AUTHOR
#PRICING
#READERS TESTIMONIALS
#CONTACT US
#FOOTER
#RESPONSIVE STYLE
*/


/*--------------------*/
/* BASIC TYPOGRAPHY */
/*--------------------*/

body,
html {
	overflow-x:hidden;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	letter-spacing: 0.5px;
	line-height: 1.5;
	color: #1c1b1b;
}

ul {
	padding: 0;
	margin: 0;
}

ul li {
	list-style: disc;
	font-size: 17px;
	line-height: 1.59;
}

a { 
	text-decoration: none;
	color: #2f2f2f;  
}

a:hover,
a:focus {
	outline: none;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	margin-top: 0;
}


h1 {
	font-size: 38px;
}

h2 {  
	font-size: 32px; 
	line-height: 1.13; 
}

h3 {  
	font-size: 26px;  
}

h4 {  
	font-size: 22px;  
}

h5 {  
	font-size: 20px;  
}

h6 {  
	font-size: 18px;  
}

img {
	border: none;
	max-width: 100%;
}

strong {
	font-weight: 500;
}

code {
	background-color: #ee6e73;
	border-radius: 2px;
	color: #fff;
	padding: 2px 4px;
}

pre {
	background-color: #f8f8f8;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 10px;
}

pre code {
	background-color: transparent;
	color: #333;
}

del{
	text-decoration-color: #ee6e73;
}

kbd {
	background-color: #ddd;
	padding: 4px 6px;
	border-radius: 2px;
	color: ;
}

address {
	line-height: 1.5;
	padding-left: 10px;
}

dl dt {
	font-weight: 700;
}

dl dd {
	margin-left: 0;
}

blockquote {
	background-color: #f8f8f8;
	border-radius: 0 4px 4px 0;
	padding: 5px 15px;
	
}

blockquote p {
	margin-top: 10px;
}

button {
	padding: 5px 15px;
	border: none;
}

button:focus {
	outline: none;
	border: none;
}

/*Wordpress default class*/

.alignleft {
	float:left;
	margin-right:8px;
}

.aligncenter {
	display:block;
	margin:10px auto;
}

.alignright {
	float:right;
	margin-left:8px;
}		

.alignnone {
	max-width: 100%;
}

.wp-caption-text {
	font-size: 12px;
	font-style: italic;
	text-align: center;
}

/* ========= BUTTON =========*/

.mu-primary-btn {
	background-color: transparent;
	border-radius: 100px;
	border: solid 1px #ffffff;
	color: #fff;
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 1px;
	padding: 12px 25px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.mu-primary-btn:hover,
.mu-primary-btn:focus {
	background-color: #fff;
	color: #000;
}

.mu-send-msg-btn {
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-align: center;
	padding: 14px 24px;
	margin-top: 10px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	width: 150px;
	color: #fff;
}

.mu-send-msg-btn:hover,
.mu-send-msg-btn:focus {
	background-color: #fff;
}



/*--------------------*/
/* HEADER */
/*--------------------*/

#mu-header {
	display: inline;
	float: left;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	padding: 25px 0;
	z-index: 999;
	transition: all 0.5s;
}

.navbar-default .navbar-brand {
	color: #fff;
	font-size: 35px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	margin-top: -11px;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
	color: #fff;
}

.navbar-brand img{
	margin-top: -12px;
}

#mu-header.mu-fixed-nav{
	background-color: rgba(0,0,0,0.8);
	width: 100%;
	position: fixed;
	padding: 15px 0;
}

/*--------------------*/
/* MENU */
/*--------------------*/

.navbar-default {
	min-height: auto;
}

.mu-navbar {
	background-color: transparent;
	border: none;
	border-radius: 0;
	margin-bottom: 0;
}

.navbar-default .mu-menu li a {
	border-bottom: 2px solid transparent;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	padding: 0 0 5px;
	margin: 10px 15px 5px;
	transition: all 0.5s;
	position: relative;
}

.navbar-default .mu-menu li a:hover,
.navbar-default .mu-menu li a:focus {
	color: #fff;
}

.navbar-default .navbar-nav > .active > a, 
.navbar-default .navbar-nav > .active > a:focus, 
.navbar-default .navbar-nav > .active > a:hover{
	background-color: transparent;
	color: #fff;
}

.navbar-default .mu-menu li a:after {
    display: block;
    position: absolute;
    bottom: -5px;
    content: '';
    width: 0;
    height: 2px;
    background: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.navbar-default .mu-menu li.active a:after,
.navbar-default .mu-menu li a:hover:after, 
.navbar-default .mu-menu li a:focus:after {
    width: 100%;
}


/*--------------------*/
/* HERO SECTION */
/*--------------------*/

#mu-hero {
	display: inline;
	float: left;
	padding: 160px 0 90px;
	width: 100%;
}

.mu-hero-left{
	display: inline;
	float: left;
	width: 100%;
}

.mu-hero-right {
	display: inline;
	float: left;
	width: 100%;
}

.mu-hero-left h1 {
	color: #fff;
	font-size: 50px;
	margin-bottom: 20px;
}

.mu-hero-left p {
	color: #fff;
	margin-bottom: 20px;
}

.mu-hero-left .mu-primary-btn {
	margin-top: 20px;
	background-color: #fff;
	font-weight: 600;
}

.mu-hero-left span {
	display: block;
	margin-top: 10px;
	color: #f8f8f8;
}


/*--------------------*/
/* COUNTER */
/*--------------------*/

#mu-counter {
	background-color: #fff;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	display: inline;
	float: left;
	position: relative;
	width: 100%;
}

.mu-counter-area {
	display: inline;
	float: left;
	padding: 70px 0 50px;
	width: 100%;
}

.mu-counter-area h2 {
	color: #fff;
	text-align: center;
}

.mu-counter-block {
	display: inline;
	float: left;
	width: 100%;
}

.mu-single-counter {
	display: inline;
	float: left;
	text-align: center;
	width: 80%;
	border: 1px solid #ddd;
	padding-bottom: 20px;
	margin: 0 10%;
}

.mu-single-counter i {
	font-size: 40px;
	padding: 15px 40px;
	margin-bottom: 0px;
	display: inline-block;
	padding-bottom: 0;
	margin-top: -60px;
	background: #fff;
}

.counter-value {
	font-size: 35px;
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 10px;
}

.mu-counter-name {
	color: #333;
}


/*--------------------*/
/* BOOK OVERVIEW */
/*--------------------*/


#mu-book-overview {
	background-color: #f8f8f8;
	display: inline;
	float: left;
	width: 100%;
}

.mu-book-overview-area {
	display: inline;
	float: left;
	padding: 100px 0;
	width: 100%;
}

.mu-heading-area {
	display: inline;
	float: left;
	text-align: center;
	padding: 0 10%;
	width: 100%;
}

.mu-heading-title {
	color: #1c1b1b;
	margin-bottom: 15px;
	position: relative;
}

.mu-header-dot {
	border-radius: 0;
	height: 3px;
	width: 100px;
	display: inline-block;
	margin-bottom: 20px;
}

.mu-book-overview-content{
	display: inline;
	float: left;
	margin-top: 70px;
	width: 100%;
}

.mu-book-overview-single {
	display: inline;
	float: left;
	text-align: center;
	width: 100%;
	background: #fff;
	padding: 20px 10px;
	margin: 10px 0 15px;
}

.mu-book-overview-icon-box {
	font-size: 25px;
	padding: 5px 12px;
	margin-bottom: 30px;
	display: inline-block;
}

.mu-book-overview-single h4{
	margin-bottom: 20px;
}


/*--------------------*/
/* VIDEO REVIEW */
/*--------------------*/


#mu-video-review {
	background-image: url(assets/images/video-review-bg.jpeg);
	background-attachment: fixed;
	background-size: cover;
	display: inline;
	position: relative;
	float: left;
	width: 100%;
}

#mu-video-review:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 0.84;
}

.mu-video-review-area {
	display: inline;
	float: left;
	padding: 150px 0;
	width: 100%;
}

.mu-video-review-area .mu-heading-title, 
.mu-video-review-area .mu-heading-area p{
	color: #fff;
}

.mu-video-review-area .mu-header-dot {
	background-color: #f8f8f8;
}

.mu-video-review-content {
	display: inline;
	float: left;
	margin-top: 70px;
	width: 100%;
	padding: 0 10%;
}

.mu-video-iframe {
	height: 550px;
}

/*--------------------*/
/* AUTHOR */
/*--------------------*/


#mu-author {
	background-color: #fff;
	display: inline;
	float: left;
	width: 100%;
}

.mu-author-area {
	display: inline;
	float: left;
	padding: 100px 0;
	width: 100%;
}

.mu-author-content{
	display: inline;
	float: left;
	margin-top: 50px;
	width: 100%;
}

.mu-author-image {
	display: inline;
	float: left;
	width: 100%;
}

.mu-author-info {
	display: inline;
	float: left;
	margin-top: 20px;
	width: 100%;
}

.mu-author-info h3 {
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.mu-author-info p {
	margin-bottom: 20px;
}

.mu-author-social {
	display: inline;
	float: left;
	margin-top: 25px;
	width: 100%;
}

.mu-author-social a {
	display: inline-block;
	font-size: 16px;
	padding: 5px;
	margin-right: 10px;
	color: #fff;
	width: 35px;
	text-align: center;
}




/*--------------------*/
/* PRICING */
/*--------------------*/


#mu-pricing {
	background-color: #f8f8f8;
	display: inline;
	float: left;
	width: 100%;
}

.mu-pricing-area {
	display: inline;
	float: left;
	padding: 100px 0;
	width: 100%;
}

.mu-pricing-content{
	display: inline;
	float: left;
	margin-top: 70px;
	width: 100%;
}

.mu-pricing-single {
	background-color: #fff;
	color: #555;
	display: inline;
	float: left;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
	width: 100%;
	padding: 30px 0;
}

.mu-pricing-single-head {
	border-bottom: 1px solid #eee;
	display: inline-block;
	float: left;
	margin-bottom: 10px;
	width: 100%;
}

.mu-pricing-single-head h4 {
	font-size: 18px;
	margin-bottom: 0;
}

.mu-pricing-single-head .mu-price-tag {
	font-size: 55px;
	font-weight: 700;
	margin-bottom: 0;
	padding: 15px 0 20px;
}

.mu-pricing-single-head .mu-price-tag span {
	font-size: 22px;
	margin-right: -10px;
}

.mu-price-feature {
	padding: 20px 0;
	display: inline-block;
	margin-bottom: 20px;
}

.mu-price-feature li {
	list-style: none;
	line-height: 2;
	margin-bottom: 10px;
}

.mu-pricing-single-footer {
	display: inline-block;
	float: left;
	width: 100%;
}

.mu-order-btn {
	background-color: transparent;
	border-radius: 100px;
	border: 1px solid #555;
	color: #555;
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 1.5px;
	padding: 12px 25px;
	font-weight: 500;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	text-transform: uppercase;
}

.mu-popular-price-tag {
	color: #fff;
}

.mu-popular-price-tag .mu-order-btn {
	background-color: #fff;
	border: 1px solid #fff;
}


/*--------------------*/
/* READERS TESTIMONIALS */
/*--------------------*/

#mu-testimonials {
	background-image: url("assets/images/testimonials-bg.jpeg");
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	display: inline;
	float: left;
	position: relative;
	width: 100%;
}

#mu-testimonials::before {
	background: rgba(0,0,0,0.9);
	bottom: 0;
	content: '';
	left: 0;
	top: 0;
	right: 0;
	position: absolute;
	opacity: 0.84;
}

.mu-testimonials-area {
	display: inline;
	float: left;
	padding: 150px 0 175px;
	width: 100%;
}

.mu-testimonials-area h2 {
	color: #fff;
	text-align: center;
}

.mu-testimonials-block {
	display: inline;
	float: left;
	margin-top: 60px;
	width: 100%;
}

.mu-testimonial-slide li{
	list-style: none;
	text-align: center;
}

.mu-testimonial-slide li p {
	color: #fff;
	padding: 0 10%;
}

.mu-testimonial-slide .mu-rt-img {
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin-top: 25px;
	display: inline-block;
}

.mu-rt-name {
	margin-bottom: 5px;
	color: #fff;
	line-height: 1;
	margin-top: 25px;
	letter-spacing: 1px;
}

.mu-rt-title {
	color: #fff;
	font-size: 14px;
}

.mu-testimonial-slide .slick-dots {
    bottom: -50px;
}

.mu-testimonial-slide .slick-dots li button {
	height: 15px;
	padding: 0;
	width: 15px;
	border-radius: 50%;
	border: 1px solid #f8f8f8;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.mu-testimonial-slide .slick-dots li button:hover,
.mu-testimonial-slide .slick-dots li button:focus,
.mu-testimonial-slide .slick-dots li.slick-active button {
	opacity: 1;
}

.mu-testimonial-slide .slick-dots li button:before {
	display: none;
}

/*--------------------*/
/* CONTACT US */
/*--------------------*/

#mu-contact {
	background-color: #fff;
	display: inline;
	float: left;
	width: 100%;
}

.mu-contact-area {
	display: inline;
	float: left;
	padding: 100px 0;
	width: 100%;
}

.mu-contact-header {
	display: inline;
	float: left;
	text-align: center;
	width: 100%;
}

.mu-contact-content {
	display: inline;
	float: left;
	margin-top: 50px;
	width: 100%;
	padding: 0 20%;
}

.mu-contact-form {
	text-align: center;
}

.mu-contact-form .form-group input {
	background: transparent;
	color: #333;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 20px;
	padding: 6px 15px;
	height: 45px;
	margin-bottom: 24px;
}

.mu-contact-form .form-group textarea{
	color: #333;
	background: transparent;
	border: 1px solid #ccc;
	border-radius: 20px;
	font-size: 18px;
	padding: 15px;
	height: 190px;
}

.mu-contact-form .form-control:focus {
	background-color: #fff;
    outline: 0;
    box-shadow: none;    
} 

.mu-contact-form .form-control::-webkit-input-placeholder {
	color: #888;
	font-size: 15px;
}

.mu-contact-form .form-control:-moz-placeholder { /* Firefox 18- */
	color: #888;
	font-size: 15px; 
}

.mu-contact-form .form-control::-moz-placeholder {  /* Firefox 19+ */
	color: #888;
	font-size: 15px;
}

.mu-contact-form .form-control:-ms-input-placeholder {  
	color: #888;
	font-size: 15px;
}

.mu-contact-form .button-default::after,
.mu-contact-form .button-default > span {
	padding: 12px 40px;  
}

#form-messages {
	margin-bottom: 10px;
    background-color: #fff;
}

.success {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.error {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}


/* GOOGLE MAP */

#mu-google-map {
	display: inline;
	float: left;
	width: 100%;
}

#mu-google-map iframe{
    pointer-events: none;
}


/*--------------------*/
/* FOOTER */
/*--------------------*/


#mu-footer{
	display: inline;
	float: left;
	width: 100%;
}

.mu-footer-area{
	display: inline;
	float: left;
	padding: 30px 0;
	text-align: center;
	width: 100%;
}

.mu-footer-area a{
	font-weight: 600;
}

.mu-social-media {
	display: inline;
	float: left;
	width: 100%;
}

.mu-social-media a {
	display: inline-block;
	font-size: 15px;
	width: 35px;
	height: 35px;
	line-height: 33px;
	text-align: center;
	margin: 0 5px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	border-radius: 50%;
}

.mu-social-media a:hover,
.mu-social-media a:focus {
	background-color: #fff;
}

.mu-copyright {
	margin-top: 10px;
	display: inline-block;
}


/*--------------------*/
/* RESPONSIVE STYLE */
/*--------------------*/

@media (max-width: 1199px) {
	
	.mu-hero-left h1 {
		font-size: 36px;
	}

	.navbar-brand img {
		width: 180px;
		margin-top: -10px;
	}

	.navbar-default .mu-menu li a {
		margin: 10px 12px 5px;
	}

	.mu-author-info {
		margin-top: 0px;
	}

	.mu-video-iframe {
		height: 450px;
	}

	
}

@media (max-width: 991px) {


	.mu-fixed-nav .navbar-brand img {
		margin-top: -7px;
	}
	
	.navbar-default .mu-menu li a {
		font-size: 14px;
		margin: 10px 5px;
	}	

	#mu-hero {
		padding: 130px 0 30px;
	}

	.mu-hero-right {
		margin-top: 40px;
	}

	.mu-primary-btn {
		font-size: 14px;
		padding: 12px 22px;
	}

	.mu-single-counter {
		margin-top: 15px;
		margin-bottom: 40px;
	}

	.mu-simplefilter li{
		margin-bottom: 10px;
	}

	.mu-clients-content-single img{
		width: 100%;
	}

	.mu-contact-right {
		margin-top: 50px;
	}
	
	.mu-video-review-content {
		padding: 0 5%;
	}

	.mu-video-iframe {
		height: 400px;
	}
		
}

@media (max-width: 767px) {

	.navbar-default .navbar-brand {
		margin-top: -7px;
	}

	.mu-fixed-nav .navbar-brand img {
		margin-top: -8px;
	}

	.navbar-default .navbar-toggle {
		border-color: #fff;
	}

	.navbar-default .navbar-toggle:hover,
	.navbar-default .navbar-toggle:focus{
		background-color: transparent;
	}

	.navbar-default .navbar-toggle .icon-bar {
		background-color: #fff;
	}

	.navbar-default .navbar-collapse, .navbar-default .navbar-form {
		background-color: rgba(0,0,0,0.8);
		text-align: center;
	}

	.navbar-default .mu-menu li a {
		display: inline-block;
	}

	.mu-hero-right {
		margin-top: 0;
	}

	#mu-hero {
		padding: 100px 0 60px;
	}

	.mu-author-info {
		margin-top: 30px;
	}

	.mu-contact-content {
		padding: 0 10%;
	}
	
		
}


@media (max-width: 640px){

	#mu-header.mu-fixed-nav {
		padding: 10px 0;
	}
	
	.mu-heading-area {
		padding: 0;
	}

	.mu-video-iframe {
		height: 300px;
	}

	.mu-primary-btn {
		font-size: 12px;
		padding: 10px 12px;
		margin-top: 15px;
	}

	.slick-dots {
		bottom: 15px;
	}
			

}


@media (max-width: 480px) {

	.navbar-brand img {
		width: 150px;
	}

	#mu-header {
		padding: 10px 0;
	}

	.navbar-default .navbar-brand {
		font-size: 25px;
		margin-top: -3px;
	}

	.navbar-toggle {
		padding: 7px 8px;
		margin-top: 10px;
	}


	.navbar-toggle .icon-bar {
		width: 18px;
	}

	h2{
		font-size: 25px;
	}

	.mu-heading-title {
		margin-bottom: 10px;
	}

	.mu-video-iframe {
		height: 250px;
	}

	.mu-contact-content {
		padding: 0 5%;
	}

	.mu-about-content-single h4 {
		margin-bottom: 18px;
	}

	.mu-team-social-info a {
		width: 35px;
		height: 35px;
		font-size: 16px;
		line-height: 35px;
	}

	.mu-contact-form button {
		width: 100%;
	}
	
}


@media (max-width: 360px){

	.mu-featured-slider-content {
		top: 49%;
	}

	.mu-featured-slider-content p,
	.mu-featured-slider-content .mu-primary-btn {
		display: none;
	}

	.mu-featured-slider-content h1 {
		font-size: 18px;
		margin-bottom: 0;
	}

	.mu-filter-item-content {
		padding-top: 25%;
		padding-left: 5px;
		padding-right: 5px;
	}

	.filtr-item h4 {
		font-size: 12px;
	}

	.mu-team-content .row > div {
		width: 100%;
	}

	.mu-simplefilter li {
		padding: 1rem 1rem;
		font-size: 12px;
	}
	
}



@media (max-width: 320px){
	/* Small screens custom overrides */
}

/* ==========================================================================
   EXCELLENT PROGRAM BRAND CUSTOM STYLES
   ========================================================================== */

/* Section Layout Reset: Disable floats to prevent layout collapse and overlap */
#mu-hero,
#mu-image-slider,
#mu-counter,
#mu-book-overview,
#mu-activities,
#mu-gallery,
#mu-videos,
#mu-author,
#mu-testimonials,
#mu-feedback-section,
#mu-footer {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
}

/* Brand Color Variables */
:root {
  --primary-blue: #0d6efd;
  --primary-blue-dark: #0a58ca;
  --accent-orange: #ff871c;
  --accent-orange-dark: #e06d0b;
  --neutral-dark: #1c1b1b;
  --neutral-light: #f8f9fa;
  --neutral-gray: #6c757d;
  --border-color: #dee2e6;
  --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Base Styles & Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  color: var(--neutral-dark);
}

.brand-logo {
  max-height: 45px;
  width: auto;
  margin-top: -5px;
}

.logo-container {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Navbar Fixes */
.navbar-default .navbar-nav > li > a {
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: 14px;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
  background-color: transparent;
  color: var(--accent-orange) !important;
}

/* Hero Section Overrides */
#mu-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
  padding: 120px 0 70px 0;
  color: #ffffff;
}

.hero-content-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.mu-hero-left {
  padding-right: 20px;
}

.mu-hero-left h1 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-tagline {
  color: var(--accent-orange);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
}

.mu-hero-left h2 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-block;
  background-color: var(--accent-orange);
  color: #ffffff;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  font-size: 11px;
  margin-bottom: 15px;
}

.hero-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-highlights-bullets {
  margin-bottom: 15px;
}

.bullet-item {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.bullet-item i {
  color: var(--accent-orange);
  margin-right: 10px;
  font-size: 16px;
}

/* Feedback Form (Moved to Top) styling */
.hero-feedback-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  color: var(--neutral-dark);
  border-top: 4px solid var(--accent-orange);
}

.hero-feedback-card h3 {
  font-weight: 800;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 5px;
  color: var(--primary-blue);
}

.hero-feedback-card p {
  font-size: 12px;
  color: var(--neutral-gray);
  margin-bottom: 20px;
}

.hero-feedback-card .form-control {
  background-color: var(--neutral-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--neutral-dark);
  transition: all 0.2s ease;
}

.hero-feedback-card .form-control:focus {
  background-color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.hero-feedback-card .star-rating-container {
  height: 34px; /* match input-sm */
  padding-left: 0;
}

.hero-feedback-card .star-rating {
  font-size: 18px;
}

.hero-feedback-card .mu-send-msg-btn {
  width: 100%;
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.2s;
}

.hero-feedback-card .mu-send-msg-btn:hover {
  background-color: var(--accent-orange-dark);
  border-color: var(--accent-orange-dark);
}

/* Buttons */
.mu-primary-btn, .mu-secondary-btn {
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.mu-primary-btn {
  background-color: var(--accent-orange) !important;
  color: #ffffff !important;
  border: 2px solid var(--accent-orange) !important;
  margin-right: 15px;
}

.mu-primary-btn:hover {
  background-color: var(--accent-orange-dark) !important;
  border-color: var(--accent-orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 135, 28, 0.4);
}

.mu-secondary-btn {
  background-color: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

.mu-secondary-btn:hover {
  background-color: #ffffff !important;
  color: var(--primary-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Section Subtitle styling */
.section-subtitle {
  font-size: 17px;
  color: var(--neutral-gray);
  max-width: 800px;
  margin: 10px auto 0 auto;
}

/* Counter & Stats overrides */
#mu-counter {
  background-color: var(--neutral-light);
  border-bottom: 1px solid var(--border-color);
}
.mu-single-counter i {
  color: var(--primary-blue) !important;
}
.counter-value {
  color: var(--neutral-dark) !important;
  font-weight: 800;
}

/* Overview / Book Overview Styling */
.overview-details-container {
  margin-top: 50px;
  margin-bottom: 50px;
}

.overview-box {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  height: 100%;
}

.overview-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
  border-left: 4px solid var(--primary-blue);
  padding-left: 12px;
}

.target-groups-box {
  border-top: 4px solid var(--accent-orange);
}

.target-card {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f3f5;
}

.target-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.target-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  color: #ffffff;
  margin-bottom: 8px;
}

.target-badge.primary { background-color: #20c997; }
.target-badge.middle { background-color: var(--primary-blue); }
.target-badge.secondary { background-color: var(--accent-orange); }
.target-badge.higher { background-color: #6f42c1; }

/* Methodology Styling */
.methodology-container {
  margin-top: 60px;
  background: var(--neutral-light);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.methodology-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 35px;
}

.methodology-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  text-align: center;
  height: 100%;
  transition: transform 0.3s;
}

.methodology-card:hover {
  transform: translateY(-5px);
}

.methodology-card .m-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--primary-blue);
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.methodology-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Skills Bubbles */
.skills-bubble-section {
  margin-top: 60px;
}
.skills-intro {
  margin-bottom: 25px;
}
.bubbles-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}
.skill-bubble {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  color: var(--neutral-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  cursor: default;
}
.skill-bubble:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

/* Show Highlights & Activities */
#mu-activities {
  background-color: #ffffff;
  padding: 80px 0;
}

.activity-card {
  padding: 25px;
  background-color: var(--neutral-light);
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: calc(100% - 30px);
}

.activity-card:hover {
  background-color: #ffffff;
  box-shadow: var(--card-shadow);
  border-color: var(--primary-blue);
}

.activity-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.activity-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  background-color: var(--primary-blue);
  border-radius: 8px;
  margin-right: 15px;
  flex-shrink: 0;
}

.activity-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

/* Shows Gallery Tree Explorer */
#mu-gallery {
  background-color: var(--neutral-light);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.tree-explorer-container {
  margin-top: 40px;
}

.tree-explorer-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--card-shadow);
  min-height: 450px;
  border: 1px solid var(--border-color);
}

.tree-explorer-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-blue);
}

.tree-list, .tree-sublist {
  list-style: none !important;
  padding-left: 20px !important;
}

.tree-list {
  padding-left: 0 !important;
}

.tree-folder-root {
  font-weight: 800;
  color: var(--neutral-dark);
  font-size: 16px;
  cursor: default;
}

.tree-sublist {
  margin-top: 8px;
}

.tree-node {
  margin-bottom: 10px;
}

.tree-folder {
  display: block;
  padding: 8px 12px;
  background-color: var(--neutral-light);
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
}

.tree-folder:hover {
  background-color: rgba(13, 110, 253, 0.05);
  border-color: rgba(13, 110, 253, 0.2);
  color: var(--primary-blue);
}

.tree-node.active .tree-folder {
  background-color: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
}

.tree-folder i {
  margin-right: 8px;
}

.gallery-display-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--card-shadow);
  min-height: 450px;
  border: 1px solid var(--border-color);
}

#gallery-display-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--primary-blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-item-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  position: relative;
}

.gallery-item {
  width: 100%;
  height: 100%;
  position: relative;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-btn {
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 12px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.gallery-zoom-btn:hover {
  background-color: #ffffff;
  color: var(--neutral-dark);
}

.empty-gallery-state {
  grid-column: 1 / -1;
  padding: 80px 20px;
  color: var(--neutral-gray);
}

.empty-gallery-state i {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.5;
}

/* Video Sharing Styles */
#mu-videos {
  background-color: #ffffff;
  padding: 80px 0;
}

.video-grid-container {
  margin-top: 40px;
}

.video-card-col {
  margin-bottom: 30px;
}

.video-card {
  background-color: var(--neutral-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.video-card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-3px);
  border-color: var(--primary-blue);
}

.video-card-info {
  padding: 20px;
}

.video-card-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--neutral-dark);
}

.platform-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  color: #ffffff;
}

.platform-badge.youtube {
  background-color: #ff0000;
}

.platform-badge.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Mock Instagram Player */
.instagram-mock-player {
  background-color: #000000;
  color: #ffffff;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.ig-header {
  padding: 10px 15px;
  background-color: rgba(0,0,0,0.6);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.ig-header i {
  margin-right: 8px;
  font-size: 16px;
  color: #e1306c;
}

.ig-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.ig-body i {
  font-size: 54px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

.ig-body:hover i {
  transform: scale(1.1);
  color: #ffffff;
}

.ig-title {
  font-size: 13px;
  text-align: center;
  padding: 0 20px;
  font-weight: 600;
}

.ig-footer {
  padding: 10px;
  text-align: center;
  background-color: rgba(0,0,0,0.6);
  z-index: 2;
}

.ig-link-btn {
  display: inline-block;
  color: #ffffff;
  background-color: #e1306c;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 15px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.ig-link-btn:hover {
  background-color: #b11b51;
  color: #ffffff;
}

/* Team Section overrides */
.team-member-row {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.team-member-img-wrapper {
  padding: 15px;
}

.team-member-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member-row:hover .team-member-img {
  transform: scale(1.05);
  border-color: var(--accent-orange);
}

.team-avatar-icon {
  font-size: 90px;
  color: var(--primary-blue);
  opacity: 0.85;
  margin-bottom: 12px;
}

.team-member-img-wrapper h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--neutral-dark);
}

.role-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--neutral-gray);
  border: 1px solid var(--border-color);
  padding: 2px 10px;
  border-radius: 20px;
  background-color: var(--neutral-light);
}

.team-info-box {
  background-color: var(--neutral-light);
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid var(--primary-blue);
}

.team-info-box p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

.team-divider {
  border-top-color: var(--border-color);
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Testimonials slide fixes */
#mu-testimonials {
  background-color: var(--accent-orange);
  color: #ffffff;
}
#mu-testimonials .mu-rt-name,
#mu-testimonials .mu-rt-title {
  color: #ffffff;
}

/* Feedback Form Styles */
#mu-feedback-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.star-rating-container {
  display: flex;
  align-items: center;
  height: 46px; /* Match standard bootstrap input height */
  padding-left: 10px;
}

.rating-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--neutral-dark);
  margin-right: 12px;
}

.star-rating {
  font-size: 22px;
  color: #ffc107;
  cursor: pointer;
}

.star-rating i {
  margin-right: 4px;
  transition: transform 0.1s;
}

.star-rating i:hover {
  transform: scale(1.15);
}

.alert-box {
  padding: 12px 20px;
  border-radius: 6px;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 14px;
}

.alert-success {
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}

.alert-danger {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}

/* Responsive Fixes */
@media (max-width: 767px) {
  .team-member-row {
    flex-direction: column;
    text-align: center;
  }
  .team-avatar-icon {
    font-size: 75px;
  }
  .team-info-box {
    border-left: none;
    border-top: 4px solid var(--primary-blue);
    margin-top: 15px;
  }
  .tree-explorer-card {
    min-height: auto;
    margin-bottom: 30px;
  }
  .star-rating-container {
    margin-top: 10px;
  }
  .hero-content-row {
    flex-direction: column;
  }
  .mu-hero-left {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .hero-highlights-bullets {
    display: inline-block;
    text-align: left;
  }
  #mu-image-slider {
    height: 250px;
  }
  .slide-caption h3 {
    font-size: 16px !important;
  }
  .slide-caption p {
    font-size: 12px !important;
  }
  /* Counter mobile overrides */
  .mu-counter-area {
    padding: 60px 0 20px !important;
  }
  .mu-single-counter {
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    width: 90% !important;
    margin-left: 5% !important;
    margin-right: 5% !important;
  }
}

/* ==========================================================================
   IMAGE SLIDER SECTION STYLING
   ========================================================================== */
#mu-image-slider {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  background-color: #000;
  border-bottom: 4px solid var(--accent-orange);
}

.mu-hero-slider-wrapper {
  height: 100%;
  width: 100%;
}

.hero-slide-item {
  position: relative;
  width: 100%;
  height: 450px !important;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8; /* Dim a bit to make captions legible */
  transition: transform 6s ease;
}

.hero-slide-item.slick-active .slide-img {
  transform: scale(1.05); /* Subtle Ken Burns effect */
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #ffffff;
  padding: 40px 0 60px 0;
  z-index: 10;
}

.slide-caption h3 {
  font-size: 26px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.slide-caption p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Slick Custom Navigation Controls */
.mu-hero-slider-wrapper .slick-prev,
.mu-hero-slider-wrapper .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mu-hero-slider-wrapper .slick-prev:hover,
.mu-hero-slider-wrapper .slick-next:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  outline: none;
}

.mu-hero-slider-wrapper .slick-prev {
  left: 30px;
}

.mu-hero-slider-wrapper .slick-next {
  right: 30px;
}

/* Slick Dots styling */
.mu-hero-slider-wrapper .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 100;
}

.mu-hero-slider-wrapper .slick-dots li {
  margin: 0 5px;
  list-style: none;
}

.mu-hero-slider-wrapper .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
  transition: all 0.3s;
}

.mu-hero-slider-wrapper .slick-dots li.slick-active button {
  background-color: var(--accent-orange);
  width: 25px;
  border-radius: 10px;
}

.mu-hero-slider-wrapper .slick-dots li button:focus {
  outline: none;
}

/* ==========================================================================
   SCHOOL LOGOS MARQUEE STYLING
   ========================================================================== */
#mu-schools-marquee-section {
  background-color: var(--neutral-light);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  overflow: hidden;
  clear: both;
  display: block;
  width: 100% !important;
}

.mu-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.mu-marquee-track {
  display: flex;
  width: max-content;
  gap: 50px;
  animation: scrollMarquee 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 60px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  transition: transform 0.2s;
}

.marquee-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.loading-marquee {
  font-size: 13px;
  color: var(--neutral-gray);
  font-weight: 600;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 25px)); /* adjust half of spacing */
  }
}



