/*===============================
	Header CSS 
=================================*/
.header {
    background-color: #0591c4;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Sticky navbar with opacity change */
.header.scrolled {
    background-color: rgba(5, 145, 196, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Add body padding to compensate for fixed header */
body {
    padding-top: 100px;
}

/* Mobile responsive adjustments for sticky header */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .header {
        min-height: 70px;
    }
}
/* Header Inner */
.header .header-inner {
    background-image: url('images/bg-pattern1.png');
    background-repeat: repeat-y;
    background-position: center;
    position: relative;
}
.header .header-inner::before {
    opacity: 0.95;
    background: #fff;
}
/* Logo */
.header .logo {
    float: left;
    margin-top: 30px;
}
.header .logo a {
    font-size: 25px;
}
.header .menu-bar {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .navbar {
    background: none;
    box-shadow: none;
    border: none;
    position: relative;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
.header .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    list-style: none;
    gap: 30px;
}
.header .nav li {
    position: relative;
    margin: 0;
}
.header .nav li:last-child{
    margin-right:0px;
}
.header .nav li a {
    color: #516c9b;
    font-size: 14px;
    text-transform: uppercase;
    padding: 30px 0px;
    display: block;
    position: relative;
}
.header .nav li a::before {
    content: "";
    position: absolute;
    height: 2px;
    left: 50%;
    bottom: 17px;
    -webkit-transition:all 0.3s ease 0s;
    -moz-transition:all 0.3s ease 0s;
    transition:all 0.3s ease 0s;
    border-radius: 30px;
    right: 50%;
}

/* Hiring Form Styles */
.form-wrapper {
    position: relative;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    border: 1px solid #eaeaea;
}

.section-tittle h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.section-tittle h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
}

.form-box {
    margin-bottom: 25px;
    position: relative;
}

.form-box input,
.form-box textarea,
.select-itms select {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-size: 16px;
    color: #555;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-box input:focus,
.form-box textarea:focus,
.select-itms select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
    background: #fff;
}

.form-box textarea {
    height: 150px;
    resize: none;
}

.select-itms {
    position: relative;
}

.select-itms:after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    pointer-events: none;
}

.select-itms select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.btn2 {
    display: inline-block;
    padding: 12px 35px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn2:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form labels */
.form-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .form-wrapper {
        padding: 25px;
    }
    
    .section-tittle h2 {
        font-size: 24px;
    }
    
    .btn2 {
        padding: 10px 25px;
    }
    #scrollUp {
      display: none !important;
    }
}

/* Animation for form elements */
.form-box input,
.form-box textarea,
.select-itms select,
.btn2 {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Floating label effect (optional) */
.form-box.focused label {
    transform: translateY(-25px);
    font-size: 14px;
    color: #3498db;
}
.header .nav li:hover a::before,
.header .nav li.active a::before {
    opacity: 1;
    visibility: visible;
    left: 25%;
    right: 25%;
}
.header .nav li a::after {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -5px;
    bottom: 13px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.header .nav li:hover a::after,
.header .nav li.active a::after {
    opacity: 1;
    visibility: visible;
}
.header .nav li a i {
    margin-right: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition:all 0.3s ease 0s;
    transition:all 0.3s ease 0s;
}
.header .nav li.active a i,
.header .nav li:hover a i{
    opacity:1;
    visibility:visible;
}
/* Dropdown Menu */
.header .nav li .dropdown {
    background: #fff;
    width: 225px;
    position: absolute;
    left: 0;
    z-index: 99;
    opacity: 0;
    -webkit-box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin: 0;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 0 0 0;
    border-top: 2px solid;
    top: 100%;
    padding: 15px 0;
}
.header .nav li:hover .dropdown{
    transform: scaleY(1);
    opacity:1;
    visibility:visible;
}
.header .nav li .dropdown li{
    float:none;
    margin:0;
}
.header .nav li .dropdown li a {
    padding: 5px 20px;
    color: #555;
    display: block;
    font-weight: 400;
    text-transform: capitalize;
}
.header .nav li .dropdown li a:before,
.header .nav li .dropdown li a:after{
    display:none;
}
.header .nav li .dropdown li i {
    float: right;
    margin-top: 6px;
}
.header .nav li .dropdown.submenu{
    left:100%;
    top:0;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 0 0 0;
    border-top: 2px solid;
}
.header .nav li .dropdown li:hover .dropdown.submenu{
    opacity:1;
    visibility:visible;
    transform:scaleY(1);
}
.header .nav li .dropdown li .dropdown.submenu li a {
    color: #777;
    background: transparent;
}


/* Add this to your existing CSS */
.header .menu-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* Adjust the navbar positioning */
.header .navbar {
    float: none;
    padding-right: 0;
    flex-grow: 1;
}


/* Mobile adjustments */
@media (max-width: 991px) {
    .header .menu-bar {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

/*===============================
	End Header CSS 
=================================*/

.banner-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.slide-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 3;
}

.text-content {
  flex: 1;
  color: white;
  padding-left: 40px;
}

.slide-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.slide-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 1000px;
}

.slide-button {
  display: flex;
  align-items: center;
  background: transparent;
  color: white;
  padding: 12px 15px ;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.slide-button a {
  color: white;
  text-decoration: none;
  margin-right: 10px;
}

.slide-button svg {
  width: 18px;
  height: 18px;
}

.image-content {
  flex: 1;
  max-width: 500px;
}

.slide-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: background 0.3s;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 4;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.indicator.active {
  background: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .slide-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .text-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .slide-title {
    font-size: 2.5rem;
  }
  
  .slide-subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 2.5rem;
  }
  
  .image-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .banner-slider {
    height: auto;
    min-height: 500px;
  }
  
  .slide-title {
    font-size: 2rem;
  }
  
  .slide-subtitle {
    font-size: 1rem;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
  }
  
  .prev-btn {
    left: 15px;
  }
  
  .next-btn {
    right: 15px;
  }
}

/*===============================
	Slider CSS 
=================================*/
.home-slider{
	overflow:hidden;
}
.home-slider,
.home-slider .single-slider{
	height: 660px;
}
.home-slider .single-slider::before {
	opacity: 0.7;
	z-index: 1;
}
.home-slider .slider-image{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	-webkit-transition:all 0.3s ease 0s;
	-moz-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
}
/* Slider Zoom Effect */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@-moz-keyframes zoom {
  from {
    -moz-transform: scale(1, 1);
  }

  to {
    -moz-transform: scale(1.2, 1.2);
  }
}

@-o-keyframes zoom {
  from {
    -o-transform: scale(1, 1);
  }

  to {
    -o-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.2, 1.2);
  }
}
.home-slider .owl-item.active .slider-image {
  -webkit-animation: zoom 25s;
  animation: zoom 25s;
}
.home-slider .slider-content {
	display: inline-block;
	border-radius: 3px;
	position: relative;
	z-index: 2;
	margin: 158px 0 0;
}
.home-slider .slider-title {
	font-size: 50px;
	font-weight: 800;
	color: #fff;
	padding: 30px;
	display: inline-block;
}
.home-slider .slider-title span {
	display: block;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
}
.home-slider .slider-title b {
	font-weight: 400;
}
.home-slider .slider-text {
	font-size: 15px;
	background: #fff;
	color: #555;
	padding: 30px;
	display: inline-block;
}
.home-slider .button {
	margin-top: 20px;
}
.home-slider .button .btn {
	margin-right: 15px;
	position: relative;
	z-index: 2;
}
.home-slider .button .btn:last-child{
	margin:0;
}
/* Slider Animation */
.home-slider .owl-item.active .slider-title{
	animation: fadeInLeft 1s both 0.8s;
}
.home-slider .owl-item.active .slider-text{
	animation: fadeInLeft 1s  both 1.2s;
}
.home-slider .owl-item.active .button{
	animation: fadeInUp 1s  both 1.5s;
}
/*===============================
	End Slider CSS 
=================================*/

.header-progress {
    margin-top: 15px;
    background: transparent;
    color: #0591c4;
    padding: 10px 0;
    font-weight: 600;
	max-width: 800vh;
    font-size: 14px;
    text-align: center;
}

.header-progress h1{
  color:#0591c4;
  text-decoration: double;
  font-weight: bolder;
  font-style: italic;
}

#courses{
  background-color: #fff;
  color: #0591c4;
}

#courses:hover {
  color: #000;
}

.whyjoin-main-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.whyjoin-heading-container {
  text-align: center;
  margin-bottom: 40px;
  text-decoration-color: #9a0b85;

}

.whyjoin-heading:hover {
  font-size: 2.2rem;
  color: #1548b7;
  background-color: whitesmoke;
  margin-bottom: 20px;
}
.whyjoin-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

.whyjoin-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px;
}

.whyjoin-card {
  min-width: 280px;
  flex: 0 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.whyjoin-card-img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0591c4;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 1;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}


.whyjoin-card {
 background-color: rgba(101, 170, 170, 0.2);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.whyjoin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(3, 13, 194, 0.815);
}

.whyjoin-card-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 100%;
}

.whyjoin-card-title {
  font-size: 1.2rem;
  color: #1548b7;
  margin-bottom: 15px;
}

.whyjoin-card-desc {
  font-size: 0.95rem;
  color: #000b09;
  line-height: 1.5;
  margin: 0;
}

.empty-card {
  visibility: hidden;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .whyjoin-grid-container {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
  }
}

@media (max-width: 768px) {
  .whyjoin-grid-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller tablets */
  }
}

@media (max-width: 480px) {
  .whyjoin-grid-container {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
  
  .whyjoin-heading {
    font-size: 1.8rem;
  }
}

/* Community Section Styles */
.community-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.community-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.stats-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #4CAF50;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.feature-tag {
    color: #4CAF50;
    font-weight: bold;
    font-size: 14px;
}


.section-title.text-left {
    padding: 0;
}

.text-center {
    text-align: left;
	right: 0;
	bottom: 0px;
	border-radius: 4px;
	padding: 8px 16px;
    color: #fff;

}

.text-center:hover {
    background-color: #fff;
    color: #0591c4;
}

.vision-checklist {
    margin-top: 20px;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.check-item i {
    color: #0591c4; 
    margin-right: 10px;
    font-size: 18px;
}

.check-item h6.vision-content {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}   


.courses .course-body .c-title {
	font-size: 18px;
	text-align: left;
	margin: 5px 0 15px;
}
.courses .course-body .c-title a {
	color: #252525;
	font-weight: 700;
}
.courses .course-body p {
	color: #666;
}
.courses .course-meta {
	background: #fff;
	border-top: 1px solid rgba(204, 204, 204, 0.45);
	overflow: hidden;
	margin: 15px;
	text-align: left;
	padding-top: 15px;
}

/* Course Info */
.courses .course-info {
	margin-top: 4px;
}
.courses .course-info span {
	display: inline-block;
	color: #888;
	margin-right: 8px;
	font-weight: 500;
	-webkit-transition:all 0.3s ease 0s;
	-moz-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
}
.courses .course-info span:last-child{
	margin-right:0px;
}
.courses .course-info span i{
	margin-right:5px;
}
/* Slider Meta */
.courses .owl-controls {
	margin-top: 30px;
}
.courses .owl-controls .owl-nav div {
	width: 44px;
	height: 44px;
	line-height: 44px;
	font-size: 22px;
	padding: 0;
	border-radius: 100%;
	color: #555;
	background: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
	margin: 0 10px 0 0;
	border: 1px solid #ccc;
}
.courses .owl-controls .owl-nav div:last-child{
	margin:0;
}
.courses .course-slider:hover .owl-controls .owl-nav div {
	opacity: 1;
	visibility: visible;
}
.courses .owl-controls .owl-nav div:hover{
	border-color:transparent;
	color:#fff;
}
/* Courses Archive */
.courses.archive{
	padding:60px 0 90px;
}
.courses.archive .single-course {
	margin: 30px 0 0;
}
/*===============================
	End Courses CSS
=================================*/

.studentreviewsec-review-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.studentreviewsec-review-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #333;
}

.studentreviewsec-reviews-container {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 20px;
}

.studentreviewsec-reviews-row {
  display: inline-flex;
  gap: 25px;
  padding: 10px;
}

.studentreviewsec-review-card {
  min-width: 280px;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.studentreviewsec-review-card:hover {
  transform: translateY(-5px);
}

.studentreviewsec-review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #0591c4;
}

.studentreviewsec-review-card h3 {
  margin: 10px 0 5px;
  color: #333;
}

.studentreviewsec-role {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.studentreviewsec-review-text {
  font-style: italic;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}

.studentreviewsec-stars {
  color: #FFC107;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.studentreviewsec-ribbon-container {
  position: absolute;
  top: 10px;
  right: -10px;
}

.studentreviewsec-ribbon {
  background: #0591c4;
  color: white;
  padding: 5px 15px;
  font-size: 0.8rem;
  border-radius: 3px;
  position: relative;
}

.studentreviewsec-ribbon.special {
  background: #0591c4;
}

.studentreviewsec-ribbon.success {
  background: #0591c4;
}

.studentreviewsec-ribbon.danger {
  background: #0591c4;
}

.studentreviewsec-btn-container {
  margin: 30px;
  margin: top -5%; ;
 
}

.studentreviewsec-btn-gradient {
  background: #0591c4;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.studentreviewsec-btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .studentreviewsec-review-section {
    padding: 40px 15px;
  }
  
  .studentreviewsec-review-section h2 {
    font-size: 1.8rem;
  }
  
  .studentreviewsec-reviews-row {
    gap: 15px;
  }
  
  .studentreviewsec-review-card {
    min-width: 260px;
    padding: 20px;
  }
}

/*===============================
	Features CSS 
=================================*/
.features {
	background-image: url('images/fotter-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 60px 0 90px;
}
.features .single-feature {
	position: relative;
	text-align: center;
	margin-top: 30px;
}
.features .icon-img {
	width: 80px;
	height: 80px;
	line-height: 80px;
	border-radius: 100%;
	position: relative;
	text-align: center;
	left: 0;
	display: inline-block;
	overflow:hidden;
}
.features .icon-img:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	z-index: 3;
	opacity: 1;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.features .single-feature:hover .icon-img:before {
	opacity: 0.5;
}
.features .icon-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	opacity: 0;
	visibility: hidden;
}
.features .single-feature:hover .icon-img img{
	opacity:1;
	visibility:visible;
	transform:scale(1.2);
}
.features .icon-img i {
	text-align: center;
	font-size: 25px;
	color: #fff;
	z-index: 333;
	position: relative;
}
.features .feature-content .f-title {
	font-size: 18px;
	margin: 15px 0;
	color: #fff;
}
.features .feature-content p {
	line-height: 22px;
	color: #ccc;
}
/*===============================
	End Features CSS 
=================================*/

/*===============================
	Register Today CSS
=================================*/
.register-today {
	background-image: url('images/register-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.register-today.overlay::before {
	opacity: 0.6;
}
.register-today .course-countdown {
	margin: 130px 0;
}
.register-today .coming-course {
	margin-bottom: 25px;
}
.register-today .coming-course h2 {
	display: block;
	font-size: 50px;
	color: #fff;
	text-align: center;
}
.register-today .coming-course h2 span {
	display: block;
	font-weight: 300;
	font-size: 20px;
	color: #eee;
}
.register-today .coming-course h2 b {
	font-weight: 300;
}
.register-today .coming-time-inner{
	display:inline-block;
	text-align:center;
}
.register-today .coming-time {
	background: rgba(0, 0, 0, 0.6);
	padding: 30px;
}
.register-today .cdown {
	float: left;
	width: 25%;
}
.register-today .cdown {
	text-align: center;
	line-height: 40px;
}
.register-today .cdown span {
	font-size: 50px;
	display: block;
}
.register-today .cdown p{
	font-size:15px;
	line-height: initial;
	margin-top: 15px;
	color: #fff;
	font-weight: 500;
}
.register-today .coming-text{
	text-align:center;
}
.register-today .coming-text h2 {
	color: #fff;
	margin: 0 0 15px;
	text-transform: uppercase;
	font-size: 40px;
}
.register-today .coming-text p {
	color: #fff;
	padding: 0px 45px;
}
.register-today .subscription-form {
	position: absolute;
	top: 0;
	width: 600px;
	height: 350px;
	background: #353535;
	left: 50%;
	margin-left: -300px;
	transform: scale(0);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	text-align: center;
	padding: 70px 90px;
}
.register-today .subscription-form.active{
	transform:scale(1.0);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.register-today .subscription-form .cross {
	position: absolute;
	right: 0;
	top: 0;
	color: #fff;
	font-size: 15px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
}
.register-today .subscription-form h2 {
	margin-bottom: 15px;
	padding-bottom: 15px;
	color: #fff;
	position: relative;
	font-size: 30px;
}
.register-today .subscription-form h2:before{
	position:absolute;
	left:0;
	bottom:-1px;
	content:"";
	background:#fff;
	width:50px;
	height:2px;
	left:50%;
	margin-left:-25px;
}
.register-today .subscription-form p {
	color: #bbb;
}
.register-today .subscription-form form {
	position: relative;
	margin-top: 30px;
}
.register-today .subscription-form input {
	width: 100%;
	padding: 11px;
	background: transparent;
	color:#fff;
	border: none;
	border-bottom: 2px solid #fff;
}
.register-today .subscription-form button {
	position: absolute;
	right: 0;
	bottom: 0px;
	border-radius: 0px;
	padding: 8px 16px;
	background:#fff;
}
.register-today .subscription-form button i{
	font-size:25px;
}
/* Register Form */
.register-today .register-form {
	background: #fff;
	padding: 30px;
}
.register-today .form-title {
	margin-bottom: 20px;
}
.register-today .form-title h2 {
	font-size: 20px;
	margin-bottom: 5px;
	position: relative;
	font-weight: 700;
}
.register-today .form-title p {
	color: #555;
}
.register-today .form {
}
.register-today .form-group {
	position: relative;
	margin-bottom: 20px;
}
.register-today .form-group i {
	position: absolute;
	left: 0;
	top: 20px;
	z-index: 1;
}
.register-today .form-group input,
.register-today .nice-select {
	margin: 0;
	width: 100%;
	height: 55px;
	color: #888;
	font-size: 14px;
	box-shadow: none;
	text-shadow: none;
	border: none;
	border-bottom: 1px solid rgba(204, 204, 204, 0.45);
	border-radius: 0px;
	padding-left: 25px;
	line-height: 55px;
	font-weight: 500;
	-webkit-transition:all 0.3s ease 0s;
	-moz-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
}
.register-today .nice-select {
	margin-bottom: 15px;
	padding: 0 35px 0 25px;
	position: relative;
}
.register-today .form-group .list {
	z-index: 3;
	border-radius: 0px;
	border-top: 2px solid;
}
.register-today .form-group textarea {
	border: none;
	resize: none;
	border-bottom: 1px solid rgba(204, 204, 204, 0.45);
	font-weight: 500;
	margin-bottom: 0px;
	padding: 0;
	border-radius: 0px;
	padding-left: 25px;
	padding-top: 10px;
	height: 158px;
	color: #888;
}
.register-today .nice-select i {
	top: 21px;
}
.register-today .nice-select::after {
	right: 20px;
	color: #757575;
}
.register-today .nice-select img{
	margin-right:10px;
}
.register-today .list li{
	color:#757575;
}
.register-today .list li.selected{
	color:#757575;
	font-weight:400;
}
.register-today .list li:hover {
	color:#fff;
}
.register-today .form-group.message i {
	top: 18px;
}
.register-today .form-group.button{
	margin:0;
	text-align: center;
}
.register-today .form-group .btn {
	width: 100%;
	text-align: center;
	padding: 18px 0;
	display: block;
	color:#fff;
}
/*===============================
	End Register Today CSS
=================================*/

/*===============================
	Teachers CSS 
=================================*/
.teachers {
	background: #fff;
}
.teachers .teachers-slider{
	margin-top:30px;
}
.teachers .single-teacher {
	position: relative;
	margin-bottom: 30px;
}
.teachers .teacher-head {
	position: relative;
}
.teachers .teacher-head.overlay::before {
	opacity: 0;
	z-index: 1;
	visibility: hidden;
}
.teachers .single-teacher:hover
.teacher-head.overlay:before{
	opacity:0.8;
	visibility:visible
}
.teachers .teacher-head img{
	height:100%;
	width:100%;
	text-align:center;
}
.teachers .social {
	width: 45px;
	position: absolute;
	top: 15px;
	text-align: center;
	padding: 15px 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	left: 15px;
	z-index: 2;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
}
.teachers .single-teacher:hover .social{
	opacity:1;
	visibility:visible;
	transform: translateY(0%);
}
.teachers .social li {
	display: block;
	margin-bottom: 10px;
}
.teachers .social li:last-child{
	margin:0;
}
.teachers .social li a {
	color: #fff;
	font-size: 14px;
	width: 28px;
	height: 28px;
	line-height: 28px;
	border: 1px solid #fff;
	display: inline-block;
	border-radius: 100%;
}
.teachers .social li a:hover{
	border-color:transparent;
	background:#fff;
}
.teachers .teacher-content {
	background: #fff;
	padding: 12px 30px;
	text-align: center;
	position: absolute;
	bottom: -15px;
	left: 15px;
	z-index: 33;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	-webkit-transition:all 0.3s ease 0s;
	-moz-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
}
.teachers .single-teacher:hover .teacher-content,
.teachers .single-teacher.active .teacher-content{
	transform:scale(1.0);
	opacity:1;
	visibility:visible;
}
.teachers .teacher-content:hover h4,
.teachers .teacher-content:hover span{
	color:#fff;
}
.teachers .teacher-content h4 {
	font-size: 18px;
}
.teachers .teacher-content h4 span {
	display: block;
	font-weight: 400;
	font-size: 15px;
	margin-top: 5px;
	-webkit-transition:all 0.3s ease 0s;
	-moz-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
}
/* Slider Meta */
.teachers .owl-controls {
	margin-top: 30px;
}
.teachers .owl-controls .owl-nav div {
	width: 44px;
	height: 44px;
	line-height: 44px;
	font-size: 22px;
	padding: 0;
	border: 1px solid #ccc;
	border-radius: 100%;
	color: #555;
	background: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
	margin: 0 10px 0 0;
}
.teachers .owl-controls .owl-nav div:last-child{
	margin:0;
}
.teachers .course-slider:hover .owl-controls .owl-nav div {
	opacity: 1;
	visibility: visible;
}
.teachers .owl-controls .owl-nav div:hover{
	border-color:transparent;
	color:#fff;
}
/* Archive */
.teachers.archive{}
.teachers.archive .single-teacher {
	margin: 30px 0 30px;
}
.teachers.archive .single-teacher .social{
	transform:translateY(0%);
}

/* Base Styles */
.single-teacher {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.teacher-head {
  position: relative;
  overflow: hidden;
  height: 300px; /* Fixed height for consistent hover */
}

.teacher-head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

/* Hover Animation (Bottom to Top) */
.hover-content {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  padding: 20px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.single-teacher:hover .hover-content {
  bottom: 0;
}

.hover-content h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
  opacity: 100%;
}

.hover-content p {
  margin-bottom: 15px;
  color: #fff;
  transform: translateY(20px);
  transition: all 0.4s ease 0.2s;
  opacity: 0;
}

.hover-content ul {
  transform: translateY(20px);
  transition: all 0.4s ease 0.3s;
  opacity: 0;
}

.single-teacher:hover .hover-content h3,
.single-teacher:hover .hover-content p,
.single-teacher:hover .hover-content ul {
  transform: translateY(0);
  opacity: 1;
}

/* Modal Styles */
/* Hover Effect Styles */
  .single-teacher {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .teacher-head {
    position: relative;
    overflow: hidden;
    height: 300px;
  }

  .teacher-head img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .hover-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .hover-content h3 {
    color: #800000;
    font-size: 24px;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    opacity: 0;
  }

  .hover-content p {
    color: #555;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    opacity: 0;
  }

  .hover-content ul {
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
    opacity: 0;
  }

  .single-teacher:hover .hover-content {
    bottom: 0;
  }

  .single-teacher:hover .hover-content h3,
  .single-teacher:hover .hover-content p,
  .single-teacher:hover .hover-content ul {
    transform: translateY(0);
    opacity: 1;
  }

  /* Modal Styles */
  .advisor-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
  }

  .modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .modal-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 5px solid #800000;
  }

  .modal-title {
    color: #800000;
    font-size: 2rem;
    margin-bottom: 5px;
  }

  .modal-position {
    color: #555;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .modal-bio {
    color: #333;
    line-height: 1.6;
  }

  .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #800000;
    cursor: pointer;
    transition: all 0.3s;
  }

  .close-modal:hover {
    color: #333;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .modal-content {
      padding: 30px 20px;
    }
    .modal-image {
      width: 120px;
      height: 120px;
    }
  }
/*===============================
	End Teachers CSS 
=================================*/



/* cards */
/* Base Styles */
.draggable-cards {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px 0;
  opacity: 0; /* Start with cards invisible */
  animation: fadeIn 0.5s forwards 0.3s; /* Fade in after sliding */
}

.student-card {
  perspective: 1000px;
  height: 250px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.student-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.card-front {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.card-back {
  background: #6b46c1;
  color: #000;
  transform: rotateY(180deg);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.card-back h3 {
  color: #000;
}

.student-card {
  opacity: 0;
  transform: translateX(-100px); /* Initial position for left cards */
  animation: slideIn 0.6s forwards;
}

/* Alternate animation direction for even cards */
.student-card:nth-child(even) {
  transform: translateX(100px); /* Initial position for right cards */
}

/* Delay animations for each card */
.student-card:nth-child(1) { animation-delay: 0.1s; }
.student-card:nth-child(2) { animation-delay: 0.2s; }
.student-card:nth-child(3) { animation-delay: 0.3s; }
.student-card:nth-child(4) { animation-delay: 0.4s; }
.student-card:nth-child(5) { animation-delay: 0.5s; }
.student-card:nth-child(6) { animation-delay: 0.6s; }
.student-card:nth-child(7) { animation-delay: 0.7s; }
.student-card:nth-child(8) { animation-delay: 0.8s; }
.student-card:nth-child(9) { animation-delay: 0.9s; }
.student-card:nth-child(10) { animation-delay: 1.0s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.status-badge {
  background: #6b46c1;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
  align-self: flex-start;
}

.status-badge i {
  margin-right: 5px;
}

h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: #2d3748;
}

.card-back h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

p {
  margin: 0;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.5;
}

.card-back p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.enroll-btn {
  background: white;
  color: #6b46c1;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.enroll-btn:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  
  .student-card {
    height: 220px;
  }
}


/* =======================
  Courses Page Starts
==========================*/

/* Category Buttons */
.course-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.category-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #f5f5f5;
  cursor: pointer;
  white-space: nowrap;
}

.category-btn.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

/* Course Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px;
}

.course-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.course-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background: white;
  margin: 30px auto;
  padding: 25px;
  width: 80%;
  max-width: 800px;
  border-radius: 8px;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: #ff0000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
  
  .category-row {
    flex-direction: column;
    align-items: center;
  }
}

/* =======================
  Courses Page Ends
==========================*/

/*===============================
	Latest News CSS 
=================================*/
.latest-news{
	background:#fff;
}
.latest-news .news-slider-main{
	padding-left: 5px;
	padding-right: 5px;
}
.latest-news .news-slider{
	margin-top:30px;
}
.latest-news .single-news {
	position: relative;
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	background: #fff;
	padding: 10px;
	margin: 10px;
}
.latest-news .news-head img{
	width:100%;
	height:100%;
}
.latest-news .news-content {
	position: absolute;
	right: 0;
	top: 0;
	width: 52%;
	background: rgba(255, 255, 255, 0.95);
	height: 100%;
	padding: 68px 25px;
}
.latest-news .news-title {
	margin-bottom: 10px;
	line-height: 25px;
}
.latest-news .news-title a {
	font-weight: 700;
	color: #252525;
	font-size: 20px;
}
.latest-news .news-meta {
	margin-bottom: 10px;
}
.latest-news .news-meta span{
	margin-right: 10px;
}
.latest-news .news-meta span:last-child{
	margin:0;
}
.latest-news .news-meta span a {
	color: #555;
	font-weight: 400;
	margin-right: 10px;
}
.latest-news .news-meta span a:last-child{
	margin:0;
}
.latest-news .news-meta span a i {
	margin-right: 5px;
}
.latest-news .news-content p {
	color: #555;
	line-height: 24px;
}
.latest-news .news-content .button {
	margin-top: 15px;
}
.latest-news .news-content .button a {
	color: #fff;
	background:#20232E;
	padding: 12px 25px;
}
.latest-news .news-content .button a i {
	margin-left: 10px;
}
/* Slider Meta */
.latest-news .owl-controls {
	margin-top: 30px;
}
.latest-news .owl-controls .owl-nav div {
	width: 44px;
	height: 44px;
	line-height: 44px;
	font-size: 22px;
	padding: 0;
	border: 1px solid #ccc;
	border-radius: 100%;
	color: #555;
	background: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 0px 10px rgba\(0, 0, 0, 0.10;
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
	margin: 0 10px 0 0;
}
.latest-news .owl-controls .owl-nav div:last-child{
	margin:0;
}
.latest-news .owl-controls .owl-nav div:hover{
	border-color:transparent;
	color:#fff;
}
/* News Archive */
.latest-news.archive{
	padding:60px 0 90px;
	background:#f8f8f8;
}
.latest-news.archive .single-news {
	margin: 30px 0 0;
}
/*===============================
	End Latest News CSS 
=================================*/

/*=============================
	News Sidebar CSS
===============================*/
.main-sidebar {
	margin-top: 30px;
}
.main-sidebar .single-sidebar {
	background: #fff;
	position: relative;
	padding: 15px;
	margin-bottom: 30px;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
}
.main-sidebar .single-sidebar:last-child{
	margin:0px;
	border:none;
}
.main-sidebar .widget-title {
	text-transform: capitalize;
	font-size: 18px;
	margin-bottom: 15px;
	position: relative;
	padding-left: 20px;
}
.main-sidebar .widget-title:before{
	content:"";
	position:absolute;
	left:0;
	width:4px;
	height:100%;
	top:0;
}
.main-sidebar .widget-title i {
	left: 0;
	top: 0;
	text-align: center;
	border-radius: 100%;
	color: #fff;
	width: 25px;
	height: 25px;
	line-height: 25px;
	margin-right: 10px;
	position: absolute;
	left: -34px;
	top: 10px;
}
.main-sidebar .single-sidebar ul li a {
	color: #555;
	font-weight: 500;
	display: block;
}
.main-sidebar .single-sidebar ul li a i{
	margin-right:10px;
}
/* Course Sidebar */
.main-sidebar .single-sidebar.s-course .s-single-course {
	overflow: hidden;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e6e6e6;
}
.main-sidebar .single-sidebar.s-course .s-single-course:last-child{
	padding:0;
	margin:0;
	border:none;
}
.main-sidebar .single-sidebar.s-course .s-single-course img {
	width: 60px;
	height: 60px;
	border-radius: 100%;
	border: 5px solid #f8f8f8;
	float: left;
	margin-right: 15px;
}
.main-sidebar .single-sidebar.s-course .s-course-content {
	float: left;
	padding-top: 5px;
}
.main-sidebar .single-sidebar.s-course h4{
	font-size:15px;
}
.main-sidebar .single-sidebar.s-course h4 a {
	color: #252525;
}
.main-sidebar .single-sidebar.s-course .meta {
	color: #555;
	font-size: 14px;
	font-weight: 500;
	border: none;
	margin: 5px 0 0 0;
	padding: 0;
	font-weight: 400;
}
.main-sidebar .single-sidebar.s-course .meta span {
	font-size: 13px;
	margin-right: 10px;
}
.main-sidebar .single-sidebar.s-course .meta span i{
	margin-right:5px;
}
/* Latest news */
.main-sidebar .small-news {
	overflow: hidden;
	position: relative;
	box-shadow: none;
	padding: 0;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e6e6e6;
}
.main-sidebar .small-news:last-child{
	margin:0;
	padding:0;
	border:none;
}
.main-sidebar .news-img {
	float: left;
	margin-right: 15px;
	left: 0;
}
.main-sidebar .news-img img {
	width: 60px;
	height: 60px;
	border-radius: 100%;
	border: 5px solid #f8f8f8;
}
.main-sidebar .news-info {
	float: left;
	margin-top: 7px;
}
.main-sidebar .news-info h4 {
	font-size: 15px;
	font-weight: 500;
	margin: 0;
}
.main-sidebar .news-info a {
	color: #252525;
	font-weight: 500;
}
.main-sidebar .news-info p {
	margin: 0;
	font-size: 13px;
	margin-top: 5px;
}
.main-sidebar .news-info span {
	margin-right: 10px;
}
.main-sidebar .news-info span i {
	margin-right: 5px;
	font-size: 13px;
}
/* Category */
.main-sidebar .category ul li {
	font-size: 15px;
	line-height: 47px;
	position: relative;
}
.main-sidebar .category ul li span {
	width: 32px;
	height: 32px;
	border-radius: 100%;
	display: inline-block;
	text-align: center;
	font-size: 13px;
	line-height: 32px;
	float: right;
	background: #f8f8f8;
	color: #555;
	position: absolute;
	top: 5px;
	right: 0;
}
.main-sidebar .category ul li:last-child{
	margin-bottom:0px;
	padding-bottom: 0px;
}
/* Subscribe */
.main-sidebar .subscribe {
	background-image: url('images/feature1.jpg');
	background-position: center;
	background-repeat: no-repeat;
	padding: 30px;
	z-index:3;
}
.main-sidebar .subscribe:before{
	opacity:0.95;
}
.main-sidebar .subscribe p{
	color:#fff;
	z-index:3;
	position:relative;
}
.main-sidebar .subscribe form {
	position: relative;
	margin-top: 20px;
	overflow: hidden;
}
.main-sidebar .subscribe input {
	background: #fff;
	display: block;
	width: 100%;
	color: #555;
	font-weight: 500;
	height: 50px;
	border: none;
	padding: 0 95px 0 15px;
	border-radius: 0px;
}
.main-sidebar .subscribe  input::-webkit-input-placeholder {
    opacity: 1;
    color: #555 !important;
}
.main-sidebar .subscribe  input::-moz-placeholder {
    opacity: 1;
    color: #555 !important;
}
.main-sidebar .subscribe  input::-ms-input-placeholder {
    opacity: 1;
    color: #555 !important;
}
.main-sidebar .subscribe button {
	color: #fff;
	position: absolute;
	right: 0;
	top: 0;
	background: #20232E;
	height: 50px;
	padding: 0 15px;
	border-radius: 0px;
	border: none;
	font-size: 14px;
}
.main-sidebar .subscribe button:hover{
	background:#fff;
}
/* Tags */
.main-sidebar .tags h2{
	margin-bottom:5px;
}
.main-sidebar .tags ul{
	margin-left:-10px;
}
.main-sidebar .tags ul li {
	display: inline-block;
	margin-left: 10px;
	margin-top: 10px;
}
.main-sidebar .tags ul li a {
	font-size: 14px;
	background: #f8f8f8;
	padding: 5px 15px;
	color: #555;
	display: block;
}
.main-sidebar .tags ul li a:hover{
	color:#fff;
}
.main-sidebar.archive.section .single-news{
	padding:15px;
}
/*=============================
	End News Sidebar CSS
===============================*/

/*=============================
	Contact CSS
===============================*/
.contact .contact-bottom{
	margin-top:30px;
}
.contactpage{
  color: #042358;
  background-color: #2A2A72;
}
.contact #map {
	height: 450px;
	margin-bottom: 30px;
	border: 10px solid #872424;
}
.contact .contact-head {
	overflow: hidden;
}
.contact .form-head{
	margin-top:30px;
}
.contact .form-head .form-group {
	margin-bottom: 20px;
	position: relative;
}
.contact .form-head .form-group i {
	position: absolute;
	top: 21px;
	left: 20px;
	z-index: 1;
}
.contact .form-head .col-12:last-child .form-group{
	margin:0;
}
.contact .form-head .form-group input,
.contact .form-head .form-group textarea {
	height: 55px;
	width: 100%;
	padding-left: 40px;
	color: #555;
	font-size: 15px;
	background: #f8f8f8;
	border: none;
	border-radius: 0px;
	resize: none;
}
.contact .form-head .form-group textarea {
	height: 190px;
	padding-left: 40px;
	padding-top: 18px;
}
.contact .form-head .form-group.message i {
	top: 25px;
}
.contact .form-head .form-group button {
	color: #fff;
	background:#4e64b4;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
/* Contact info */
.contact .contact-info {
	text-align: left;
	margin-top: 30px;
	position: relative;
}
.contact .contact-info .icon {
	left: 0;
}
.contact .contact-info .icon i {
	width: 56px;
	height: 56px;
	line-height: 56px;
	font-size: 14px;
	border-radius: 100%;
	text-align: center;
	color: #863737;
	border:1px solid transparent;
	-webkit-transition:all 0.3s ease 0s;
	-moz-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
}
.contact .contact-info:hover .icon i{
	border-color:#ccc;
	background:transparent;
}
.contact .contact-info h3 {
	font-size: 16px;
	font-weight: 500;
	margin: 0 0 5px;
	margin-top: 10px;
	text-transform: capitalize;
}
.contact .contact-info a {
	color: #777;
}
.contact .contact-info p {
	color: #555;
	font-size: 14px;
	line-height: 22px;
}
.contact .contact-info p span{}
/*=============================
	End Contact CSS
===============================*/

/*======================================
	Others CSS
========================================*/
#scrollUp {
	right: 20px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	z-index: 33;
	bottom: 10px;
	text-align: center;
	-webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.16);
	-moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.16);
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.16);
	color: #ffff;
	font-size: 18px;
	border-radius: 100%;
	font-size: 18px;
}
#scrollUp:hover{
	color:#fff;
	bottom:15px;
}
/*======================================
	End Others CSS
========================================*/

/* About page starts */

    /* Base Styles */
    .carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    .carousel-track {
        display: flex;
        transition: transform 0.5s ease;
    }
    
    .carousel-slide {
        min-width: 100%;
        box-sizing: border-box;
    }
    
    .slide-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 2rem;
        min-height: 400px;
        max-width: 1200px;
        margin: 0 auto;
        gap: 2rem;
    }
    
    .content-section {
        flex: 1;
        min-width: 300px;
        color: white;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .content-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin: 0;
    }
    
    .content-section h1 span {
        color: #4a90e2; /* Accent color */
    }
    
    .content-section p {
        font-size: 1.1rem;
        margin: 0;
        line-height: 1.6;
    }
    
       
    .media-section {
        flex: 1;
        min-width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .media-box {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 16/9;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .media-box video,
    .media-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Navigation Buttons */
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 0.75rem;
        cursor: pointer;
        font-size: 1.25rem;
        z-index: 10;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .carousel-btn:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: translateY(-50%) scale(1.1);
    }
    
    .left {
        left: 1rem;
    }
    
    .right {
        right: 1rem;
    }
    
    /* Indicators */
    .carousel-indicators {
        position: absolute;
        bottom: 1.5rem;
        left: 30%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.75rem;
        z-index: 10;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .indicator.active {
        background: white;
        transform: scale(1.2);
    }
    
    /* Button Styles */
    .hero-enroll-btn {
        padding: 0.8rem 1.8rem;
        background: #4a90e2;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        font-size: 1rem;
        transition: all 0.3s ease;
        align-self: flex-start;
        margin-top: 0.5rem;
    }
    
    .hero-enroll-btn:hover {
        background: #3a7bc8;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    .hero-enroll-btn a {
        color: white;
        text-decoration: none;
        display: inline-block;
        width: 100%;
        height: 100%;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .content-section h1 {
            font-size: 2.2rem;
        }
        
        .slide-wrapper {
            padding: 1.5rem;
        }
    }
    
    @media (max-width: 768px) {
        .slide-wrapper {
            flex-direction: column;
            padding: 1.5rem 1rem;
            text-align: center;
            gap: 1.5rem;
        }
        
        .content-section {
            align-items: center;
            order: 2;
        }
        
        .media-section {
            order: 1;
        }
        
        .hero-enroll-btn {
            align-self: center;
        }
        
        .carousel-btn {
            width: 40px;
            height: 40px;
        }
    }
    
    @media (max-width: 480px) {
        .content-section h1 {
            font-size: 1.8rem;
        }
        
        .content-section p {
            font-size: 1rem;
        }
        
        .hero-enroll-btn {
            padding: 0.7rem 1.5rem;
            font-size: 0.9rem;
        }
        
        .carousel-indicators {
            bottom: 1rem;
        }
        
        .indicator {
            width: 10px;
            height: 10px;
        }
    }

    /* Auth display styles */
.auth-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-name {
    font-weight: 600;
    color: #333;
}

.user-type {
    font-size: 0.85em;
    color: #666;
}

.logout-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.2s;
}

.logout-btn:hover {
    background: #f0f0f0;
}

.auth-link {
    color: #333;
    text-decoration: none;
    font-size: 0.95em;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-separator {
    color: #ccc;
}
#button {
	color: #fff;
}

#button:hover {
	color: #0591c4;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.content-section {
    width: 100%;
    color: white;
    padding: 2rem;
    position: relative;
    min-height: 400px;
    display: flex;
    gap: 40px;
}

.left-button-container {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-area {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.section-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.section-title.active {
    opacity: 1;
    transform: translateY(0);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title h2 span {
    color: #0591c4;
	font-weight: 600;
}

.section-title p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.vision-checklist {
    margin-top: 1.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.check-item i {
    margin-right: 1rem;
    color: #0591c4;
    font-size: 1.2rem;
}

.vision-content {
    margin: 0;
    font-size: 1rem;
}

.styled-button {
    background-color: #0591c4;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    width: 50px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.styled-button:hover {
	color: #0591c4;
    background-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .content-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .left-button-container {
        width: 100%;
        order: 2;
    }
    
    .styled-button {
        writing-mode: horizontal-tb;
        transform: none;
        width: auto;
        height: auto;
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 1rem;
        min-height: 500px;
    }
    
    .hero-container {
        padding: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}
.stats-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.stat-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: white;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.2);
}

.stat-counter {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 15px 0;
  color: #fff;
}

.stat-title {
  font-size: 1.3rem;
  margin: 20px 0;
  color: #fff;
}

.stat-features {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
  text-align: left;
}

.stat-features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: flex-start;
}

.stat-features i {
  margin-right: 10px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}

/* Card Color Themes */
.blue-card {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.green-card {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.orange-card {
  background: linear-gradient(135deg, #e67e22, #d35400);
}

.purple-card {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

/* Counter Animation */
@keyframes countUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.stat-counter {
  animation: countUp 1s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stat-card {
    min-width: calc(50% - 25px);
  }
}

@media (max-width: 768px) {
  .stats-row {
    gap: 20px;
  }
  
  .stat-card {
    min-width: 100%;
  }
}

/* Stragety Section */
.strategy-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.strategy-heading {
  text-align: center;
  margin-bottom: 50px;
}

.strategy-heading h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.strategy-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 2px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.strategy-box {
  background: whitesmoke;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(14, 13, 13, 0.791);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.strategy-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  border-color: #3498db;
}

.border-top {
  position: absolute;
  top: 0;
  left: 0px;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #a94bc2, #2ecc71);
}

.strategy-icon {
  width: 70px;
  height: 70px;
  margin: 10px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  color: white;
  position: relative;
  z-index: 1;
}

.strategy-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.strategy-box p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  margin-top: 15px;
}

/* Individual Box Colors */
.vision-box .border-top { background: linear-gradient(90deg, #3498db, #2980b9); }
.mission-box .border-top { background: linear-gradient(90deg, #2ecc71, #27ae60); }
.values-box .border-top { background: linear-gradient(90deg, #e67e22, #d35400); }
.commitment-box .border-top { background: linear-gradient(90deg, #9b59b6, #8e44ad); }

.vision-box:hover { border-color: #3498db; }
.mission-box:hover { border-color: #2ecc71; }
.values-box:hover { border-color: #e67e22; }
.commitment-box:hover { border-color: #9b59b6; }

.vision-box .strategy-icon { background: #3498db; }
.mission-box .strategy-icon { background: #2ecc71; }
.values-box .strategy-icon { background: #e67e22; }
.commitment-box .strategy-icon { background: #9b59b6; }

/* Responsive Design */
@media (max-width: 768px) {
  .strategy-heading h2 {
    font-size: 2rem;
  }
  
  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .strategy-box {
    padding: 25px 20px;
  }
}
/* Founder Section */

/* Base Styles */
.founder-stories {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.founder-card {
  display: flex;
  background: rgb(238, 238, 239);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 5rem;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px #6b46c1;
}

/* Image Card Styles */
.founder-image-card {
  flex: 1;
  position: relative;
}

.image-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hover-zoom {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.founder-card:hover .hover-zoom {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(107, 70, 193, 0.3) 0%, rgba(234, 175, 200, 0.2) 100%);
  transition: opacity 0.5s ease;
}

.founder-card:hover .image-overlay {
  opacity: 0.8;
}

.corner-ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #6b46c1;
  color: white;
  padding: 8px 30px;
  font-size: 14px;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Content Card Styles */
.founder-content-card {
  flex: 1;
  padding: 3rem;
  display: flex;
  align-items: center;
}

.content-bubble {
  position: relative;
  width: 100%;
}

.story-heading {
  font-size: 2rem;
  color: #6b46c1;
  margin-bottom: 1.5rem;
  position: relative;
}

.story-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #042358;
  margin-bottom: 1.5rem;
}


/* Animations */
.animate-left {
  animation: slideInLeft 1s ease-out;
}

.animate-right {
  animation: slideInRight 1s ease-out;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(107, 70, 193, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(107, 70, 193, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(107, 70, 193, 0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .founder-card {
    flex-direction: column;
    margin-bottom: 3rem;
  }
  
  .founder-image-card {
    order: 1;
  }
  
  .founder-content-card {
    order: 2;
    padding: 2rem;
  }
  
  .year-badge {
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
  
  .story-heading {
    font-size: 1.5rem;
  }
}

/* solution section */
.products-section {
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.2rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 2px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px;
}

.product-card {
  background: whitesmoke;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border-left: 4px solid;
  position:static;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.product-info h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 15px;
}

.product-btn {
  background: none;
  border: none;
  color: #3498db;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  text-align: left;
  margin-top: auto;
}

.product-btn:hover {
  text-decoration: underline;
}

/* Color Accents */
.blue-accent { border-left-color: #3498db; }
.orange-accent { border-left-color: #fd7e14; }
.purple-accent { border-left-color: #9b59b6; }
.teal-accent { border-left-color: #1abc9c; }
.pink-accent { border-left-color: #e91e63; }
.red-accent { border-left-color: #e74c3c; }
.green-accent { border-left-color: #2ecc71; }
.black-accent { border-left-color: #34495e; }
.yellow-accent { border-left-color: #f1c40f; }

/* Responsive Design */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

/* Keep your existing popup styles */
.popup-box {
  /* ... maintain your popup styles ... */
}
/* About page ends */

/* intren page starts */

/* Hero Banner Section */
.herobanner {
  background: linear-gradient(135deg, #989ea3 0%, #e9ecef 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.Border {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* Main Content Styling */
.hero-style7 {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #3a7bd5 0%, #00d2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.it {
  font-size: 1.25rem;
  color: #6c757d;
  font-weight: 400;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #495057;
}

/* Button Styling */
.btn-group {
  margin-top: 2rem;
}

.Th {
  background: linear-gradient(90deg, #3a7bd5 0%, #00d2ff 100%);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(58, 123, 213, 0.3);
  border: none;
}

.Th:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 123, 213, 0.4);
  background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
}

/* Process Steps Styling */
.Products {
  margin-top: 4rem;
  padding: 0 1rem;
}

.counter-card4 {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.counter-card4:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.counter-card4 img {
  max-width: 80px;
  height: auto;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.counter-card4:hover img {
  transform: scale(1.1);
}

.box-number {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
}

.counter-title {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Card Color Variations */
.card1 {
  border-bottom: 3px solid #3a7bd5;
}

.card2 {
  border-bottom: 3px solid #00d2ff;
}

.card3 {
  border-bottom: 3px solid #a162e8;
}

.card4 {
  border-bottom: 3px solid #4facfe;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .counter-card4 {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .herobanner {
    padding: 3rem 0;
  }
  
  .hero-style7 {
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .it {
    font-size: 1.1rem;
  }
  
  .Products .col-sm-6 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-style7 img {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .Th {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* learning Section */

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
  }
  
  .section-divider {
    margin-bottom: 30px;
  }
  
  .tracks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .track-card-container {
    perspective: 1000px;
    height: 30%;
  }
  
  .track-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    background: white;
  }
  
  .track-card-container:hover .track-card {
    transform: rotateY(180deg);
  }
  
  .track-card-front, .track-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .track-card-front {
    font-weight: 650;
    display: flex;
    flex-direction: column;
  }
  
  .track-card-back {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
  }
  
  .track-card-back h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .track-card-back p {
    color: #fff;
    margin-bottom: 25px;
    font-size: 15px;
  }
  
  .track-icon {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .track-icon img {
    max-width: 70px;
    height: auto;
  }
  
  .track-badge {
    display: inline-block;
    background: #6e8efb;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    align-self: flex-start;
  }
  
  .track-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
  }
  
  .track-meta {
    display: flex;
    font-weight: 290;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #3a7bd5;
  }
  
  .track-meta span {
    font-weight: 750;
    display: flex;
    align-items: center;
  }
  
  .track-meta i {
    margin-right: 5px;
    font-size: 12px;
  }
  
  .track-card p {
    color: #000;
    font-size: 13px;
    line-height: 1.5;
  }
  
  .track-actions {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .btn-brochure, .btn-download {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
  }
  
  .btn-brochure {
    background: white;
    width: 220px;
    color: #6e8efb;
  }
  
  .btn-download {
    background: #4a6cf7;
    color: white;
  }
  
  .btn-brochure:hover {
    background: #f1f1f1;
  }
  
  .btn-download:hover {
    background: #3a5bd9;
  }

  @media (max-width: 1024px) {
    .tracks-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .tracks-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .tracks-grid {
      grid-template-columns: 1fr;
    }
  }


/* intren page end */

/* CRT page Start */

.resourc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
}

.resources-grid {
  margin: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resource-card {
  perspective: 1000px;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
}

.resource-card .card-front,
.resource-card .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.resource-card .card-front {
  background: white;
  transform: rotateY(0deg);
  display: flex;
  flex-direction: column;
}

.resource-card:hover .card-front {
  transform: rotateY(180deg);
}

.resource-card .card-back {
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
  padding: 25px;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.resource-card:hover .card-back {
  transform: rotateY(0deg);
}

.resource-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.badge {
  background: #2ecc71;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
  align-self: flex-start;
}

.badge i {
  margin-right: 5px;
}

h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: #2d3748;
}

.card-back h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

p {
  margin: 0;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.5;
}

.card-back p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.enroll-btn {
  background: white;
  color: #6b46c1;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.enroll-btn:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 992px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/*=============================
	Footer CSS
===============================*/
.footer {
	background: #20232E;
	padding: 0;
}
.footer .footer-top {
	padding: 60px 0 90px;
	background-image: url('images/clients-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.footer .footer-top:before{
	opacity:0.9;
}
.footer a, .footer p {
	font-weight: 400;
	color: #ccc;
	line-height: 22px;
}
.footer .single-widget{
	margin-top:30px;
}
.footer .single-widget h2 {
	font-size: 16px;
	margin-bottom: 25px;
	color: #fff;
	position: relative;
}
.footer .about p {
	margin-top: 20px;
}
/* List */
.footer .list li {
	line-height: 35px;
	color: #ccc;
}
.footer .list li a {
	color: #ccc;
}
.footer .list li i {
	margin-right: 15px;
}
/* Social */
.footer .social {
	margin-top: 20px;
}
.footer .social li {
	display: inline-block;
	margin-right: 5px;
}
.footer .social li:last-child{
	margin:0;
}
.footer .social li a {
	display: inline-block;
	text-align: center;
	margin: 0;
	padding: 0;
	border-radius: 100%;
	font-size: 13px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}
.footer .social li:hover a,
.footer .social li.active a{
	color:#fff;
}
/* Opening Times */
.footer .opening-times .list li {
	position: relative;
	line-height: 35px;
	color: #ccc;
}
.footer .opening-times .list li a {
	color: #ccc;
	font-size: 15px;
}
.footer .opening-times .list li i{
	margin-right:10px;
}
.footer .opening-times .list li .value {
	float: right;
}
.footer .opening-times .list li .value.off {
	color: #fff;
	border-radius: 30px;
	padding: 0 11px;
	line-height: 30px;
}
/* Newsletter Widget */
.footer .newsletter .title{
	font-size:26px;
	font-weight:600;
	color:#fff;
}
.footer .newsletter .form{
	position:relative;
	margin-top:20px;
}
.footer .newsletter .form input {
	width: 100%;
	line-height: 50px;
	color: #888;
	box-shadow: none;
	text-shadow: none;
	border: none;
	padding: 0px 50px 0px 20px;
	border-radius: 0px;
	background: #fff;
	height: 45px;
	font-size: 14px;
	font-weight: 500;
}
.footer .newsletter .button {
	height: 45px;
	color: #fff;
	box-shadow: none;
	text-shadow: none;
	border: none;
	font-size: 14px;
	padding: 10px 35px;
	border-radius: 0px;
	position: absolute;
	right: 0;
	top: 0;
	border-left: 2px solid transparent;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.footer .newsletter .button:hover{
	opacity:0.8;
}
.footer .newsletter .button i{
	margin-right:5px;
}
.footer-bottom {
	background: #121212;
	padding: 20px 0;
}
.footer .copyright {
	text-align: center;
}
.footer .copyright p {
	color: #aaa;
}
.footer .copyright a:hover{
	color:#fff;
}

/* --- Responsive Fixes --- */

/* Prevent horizontal scroll on mobile */
body {
  overflow-x: hidden;
}

/* Universal container padding for mobile */
@media (max-width: 576px) {
  .container,
  .stats-container,
  .whyjoin-main-container,
  .founder-stories,
  .products-section,
  .resourc-container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Fix grid layouts for mobile */
@media (max-width: 576px) {
  .courses-grid,
  .products-grid,
  .resources-grid,
  .tracks-grid,
  .strategy-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    padding: 0;
  }
}

/* Cards: prevent overflow and fix heights */
@media (max-width: 576px) {
  .student-card,
  .resource-card,
  .track-card-container {
    height: auto;
    min-height: 180px;
  }
  .card-front,
  .card-back,
  .resource-card .card-front,
  .resource-card .card-back,
  .track-card-front,
  .track-card-back {
    padding: 12px;
  }
}

/* Founder cards: stack vertically */
@media (max-width: 576px) {
  .founder-card {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .founder-content-card {
    padding: 1rem;
  }
}

/* Section titles and headings */
@media (max-width: 576px) {
  .section-title,
  .strategy-heading h2,
  .story-heading {
    font-size: 1.3rem !important;
    padding-bottom: 8px;
  }
}

/* Buttons: scale down */
@media (max-width: 576px) {
  .btn2,
  .hero-enroll-btn,
  .Th,
  .styled-button,
  .enroll-btn,
  .btn-brochure,
  .btn-download,
  .btn-resource {
    font-size: 0.9rem;
    padding: 8px 14px;
    min-width: 100px;
  }
}

/* Fix carousel and slider paddings */
@media (max-width: 576px) {
  .slide-content,
  .slide-wrapper {
    padding: 0 8px;
  }
  .media-box {
    max-width: 100%;
    aspect-ratio: 16/9;
  }
}

/* Hide scroll buttons if not needed on mobile */
@media (max-width: 576px) {
  .scroll-btn {
    display: none;
  }
}

/* Fix modal width on mobile */
@media (max-width: 576px) {
  .modal-content,
  .advisor-modal .modal-content {
    width: 98%;
    padding: 12px;
    max-width: 98vw;
  }
}

/* Fix header and navbar for mobile */
@media (max-width: 576px) {
  .header .navbar {
    padding-right: 0;
    float: none;
  }
  .header .nav li {
    float: none;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .header .nav li a {
    padding: 12px 0;
    font-size: 1rem;
  }
}

/* Fix footer padding */
@media (max-width: 576px) {
  .footer .footer-top {
    padding: 20px 0 40px;
  }
}

/* Prevent image overflow */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- End Responsive Fixes --- */