/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@font-face {
  font-family: "futura-bold";
  src: url("../fonts/Futura-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

p,
.paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
  text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e1e4b;
  font-family: "futura-bold";
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 60px;
}

@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 45px;
  }
}

h2,
.h2 {
  font-size: 40px;
}

@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 25px;
}

@media (max-width: 575px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}

h4,
.h4 {
  font-size: 20px;
}

@media (max-width: 575px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}

h5,
.h5 {
  font-size: 18px;
}

@media (max-width: 575px) {
  h5,
  .h5 {
    font-size: 16px;
  }
}

h6,
.h6 {
  font-size: 16px;
}

@media (max-width: 575px) {
  h6,
  .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  background: #1e1e4b;
  color: #fff;
}

.btn-primary::before {
  background: #fff;
}

.btn-primary:active {
  background: #1e1e4b !important;
  color: #1e1e4b;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #2a2a68;
  color: #1e1e4b;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #2a2a68;
  border-color: #2a2a68;
}

.btn-secondary {
  background: #fff;
  color: #1e1e4b;
  border: 1px solid #fff;
}

.btn-secondary::before {
  background: #1e1e4b;
}

.btn-secondary:active {
  background: #1e1e4b;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary-outline {
  border: 1px solid #1e1e4b;
  color: #1e1e4b;
  background: transparent;
}

.btn-primary-outline::before {
  background: #fff;
}

.btn-primary-outline:hover {
  background: #1e1e4b;
  color: #1e1e4b;
}

.btn-primary-outline:active {
  background: #1e1e4b;
  color: #fff;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #333399;
  color: #fff;
}

::selection {
  background: #333399;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: #1e1e4b;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #1e1e4b;
}

a.text-primary:hover {
  color: #1e1e4b !important;
}

a.text-light:hover {
  color: #1e1e4b !important;
}

h4 {
  transition: 0.2s ease;
}

a h4:hover {
  color: #1e1e4b;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 50px;
  padding-bottom: 90px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: 0.8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #1e1e4b !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #1e1e4b !important;
}

.text-color {
  color: #aeb4d1; /* Lighter grey-blue for better contrast */
}

.text-light {
  color: #ffffff !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "futura-bold";
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 100px 0 100px;
}

.custom-breadcrumb {
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 25px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.custom-breadcrumb li {
  display: flex;
  align-items: center;
}

.custom-breadcrumb li + li {
  position: relative;
  padding-left: 30px;
}

.custom-breadcrumb li + li::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 14px;
  top: 50%;
  left: 8px;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.custom-breadcrumb a {
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.custom-breadcrumb a:hover {
  text-decoration: none !important;
  color: #fff !important;
  opacity: 0.8;
}

.custom-breadcrumb .h2, .custom-breadcrumb .h3 {
  margin-bottom: 0;
  line-height: 1;
}

.custom-breadcrumb .h2 {
  font-size: 20px !important;
}

.custom-breadcrumb .h3 {
  font-size: 18px !important;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* /page title */

/* /page title */
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #1e1e4b;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-transform-origin: top;
  transform-origin: top;
  font-weight: 600;
}

.top-header.hide {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
}

@media (max-width: 991px) {
  .header {
    position: static !important;
    background: #1e1e4b;
  }
}
@media (max-width: 767px) {
  .footer-logo {
    width: 150px;
  }
}
@media (max-width: 1023px) {
  .footer-logo {
    width: 250px;
  }
}

.navigation {
  /* background-image: linear-gradient(to right, transparent 50%, #1e1e4b 50%);
  transition: .2s ease; */
}

@media (max-width: 575px) {
  .navigation {
  }
}

.navbar-nav {
  padding-left: 50px;
  background: #1e1e4b;
  width: 100%;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
  }
}

.nav-bg {
  background-color: #1a1a37;
  margin-top: -46px;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #1e1e4b;
  padding: 15px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform-origin: unset;
    transform-origin: unset;
  }
}

.navbar .dropdown-menu.view {
  visibility: visible !important;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.view {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
    background-color: inherit;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: 0.2s ease;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: left;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #1e1e4b;
  background: #f8f9fa;
}

.navbar .dropdown-item.active {
  color: #1e1e4b !important;
  background: #f8f9fa !important;
  font-weight: 700;
  border-left: 3px solid #1e1e4b;
}

.hero-section {
  padding: 250px 0 290px;
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear 0.2s;
  background: transparent;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #1e1e4b;
}

.hero-slider .prevArrow {
  right: 60px;
}

.hero-slider .nextArrow {
  right: 0;
}

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #1e1e4b;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #1e1e4b;
  display: inline-block;
}

.feature-blocks {
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%;
}

@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}

@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 30px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 0;
    padding: 50px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #1e1e4b;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: 0.3s ease;
  transition-delay: 0.2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #1e1e4b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: 0.3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #1e1e4b;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #1e1e4b 50%);
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}

.form-control:focus {
  border-color: #1e1e4b;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 70px;
}

.footer {
  background-color: #1e1e4b; /* Matches main theme */
  color: #fff !important;
}

.footer a {
  color: #aeb4d1 !important;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #fff !important;
}

.footer-logo {
  max-height: 80px;
  width: auto;
}

.footer {
  border-color: #494a43 !important;
  padding-top: 50px;
  padding-bottom: 10px;
}

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: 0.1s ease;
}

.filter-controls li.mixitup-control-active {
  font-weight: 600;
  color: #1e1e4b;
}

.filter-controls li:hover {
  color: #1e1e4b;
}

.footer ul li {
  color: #fff !important;
  font-size: 14px;
  line-height: 1.6;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aeb4d1;
}

.copyright a {
  color: #1e1e4b !important;
  font-weight: 600;
}

/*# sourceMappingURL=maps/style.css.map */

.hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.slider {
  display: flex;
  width: 300%; /* Adjust based on the number of images */
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.slide {
  width: 100%;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.controls button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  background: gray;
  border-radius: 50%;
  cursor: pointer;
}
.dot.active {
  background: white;
}

.card {
  transition: all 0.3s;
  height: 100%;
}

.hover-shadow:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.swiper {
  width: 100%;
  padding: 20px 0 50px 0;
}

.swiper-slide {
  height: auto;
}

.swiper-pagination-bullet {
  background: #1e1e4b;
  width: 12px;
  height: 12px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #1e1e4b;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px;
}

.course-section-header {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.course-section-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
}

.course-section-header p {
  color: #666;
  font-size: 1.05rem;
}

#goTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: #1e1e4b;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#goTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#goTopBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#goTopBtn:active {
  transform: translateY(-2px);
}

/* Gallery Styles */
.year-box {
  gap: 15px;
  flex-wrap: wrap;
}

.year {
  padding: 10px 25px;
  background: #f8f9fa;
  color: #1e1e4b;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.year:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.year.active {
  background: #1e1e4b;
  color: #fff;
  border-color: #1e1e4b;
  box-shadow: 0 4px 12px rgba(30, 30, 75, 0.3);
}

.gallery-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #f1f1f1;
}

.gallery-caption h5 {
  color: #1e1e4b;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.4;
}

.gallery-caption p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 500;
}

/* MixItUp Animation */


.section-title-custom {
  font-size: 32px;
  font-weight: 800;
  color: #1e1e4b;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title-border {
  width: 80px;
  height: 4px;
  background: #ffbc00;
  border-radius: 2px;
  margin-top: 15px;
}

.gallery-image-container {
  position: relative;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 75, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .image-overlay {
  opacity: 1;
}

.view-btn {
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-item:hover .view-btn {
  transform: translateY(0);
}

.gallery-item {
  cursor: pointer;
}

.gallery-card-link {
  text-decoration: none !important;
  display: block;
}

.gallery-grid-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-img-wrapper {
  position: relative;
  cursor: pointer;
}

.gallery-img-wrapper:hover .gallery-grid-img {
  transform: scale(1.1);
}

.view-overlay-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-img-wrapper:hover .view-overlay-grid {
  opacity: 1;
}

.btn-primary-outline {
  border: 2px solid #1e1e4b;
  color: #1e1e4b;
  background: transparent;
  font-weight: 600;
  border-radius: 50px;
  padding: 6px 20px;
  transition: all 0.3s ease;
}

.btn-primary-outline:hover {
  background: #1e1e4b;
  color: #fff;
  text-decoration: none;
}

/* Search Bar Styles */
.search-toggle-btn {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.search-toggle-btn:hover {
  transform: scale(1.1);
}

.search-floating-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #1e1e4b; /* Solid background for reliability */
  backdrop-filter: blur(10px);
  z-index: 2000;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateY(-5px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}



.search-floating-bar.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  border-radius: 5px;
  border: 1px solid #fff; /* Added distinct border */
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.search-container:focus-within {
  border-color: #ffbc00;
  background: rgba(255, 255, 255, 0.1);
}

.search-form {
  display: flex;
  align-items: center;
  width: 100%;
}

.search-form input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 8px 10px;
  width: 100%;
  outline: none;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-submit, .search-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-submit:hover, .search-close:hover {
  color: #ffbc00;
}

.search-close {
  margin-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1199px) {
  .search-floating-bar {
    padding: 10px 0;
  }
  .search-container {
    max-width: 90%;
  }
}



