/**
* Template Name: HeroBiz - v2.1.0
* Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/**
* Check out variables.css for easy customization of colors, typography, and other repetitive properties
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}
#preloader:before, #preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

#gallery-section .item img{
    height: 220px;
    width: 100%;
    border-radius: 8px;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}
.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--color-secondary);
}
.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}
@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}
.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}
.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 12px 0;
  transition: all 0.5s;
  z-index: 997;
  background-color: #fff;
}
.header.sticked {
  background: #ededed ;
  box-shadow: 1px 1px 15px rgb(0 0 0 / 32%) !important;
}
.header .logo img {
  max-height: 80px;
  margin-right: 10px;
  object-fit: contain;
  transition: all 0.3s ease;
}
.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}
.header .btn-getstarted, .header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary);
}
.header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85);
}
@media (max-width: 1279px) {
  .header .btn-getstarted, .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar > ul > li {
    white-space: nowrap;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-secondary);
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    color: rgba(var(--color-secondary-dark-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--color-primary);
  }
  .navbar .dropdown a:hover:before, .navbar .dropdown:hover > a:before, .navbar .dropdown .active:before {
    visibility: hidden;
  }
  .navbar .dropdown a:hover, .navbar .dropdown .active, .navbar .dropdown .active:focus, .navbar .dropdown:hover > a {
    color: var(--color-white);
    background: var(--color-secondary);
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: var(--color-white);
    background: var(--color-primary);
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .navbar .megamenu {
    position: static;
  }
  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }
  .navbar .megamenu ul li {
    flex: 1;
  }
  .navbar .megamenu ul li a, .navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }
  .navbar .megamenu ul li a:hover, .navbar .megamenu ul li .active, .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}
@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
.hero-animated {
  width: 100%;
  min-height: 50vh;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}
.hero-animated h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.hero-animated h2 span {
  color: var(--color-primary);
}
.hero-animated p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero-animated .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 45%;
  }
}
@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 60%;
  }
}
@media (max-width: 575px) {
  .hero-animated .animated {
    max-width: 80%;
  }
}
.cta .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}
.cta .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.cta .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}
.cta .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.cta .btn-watch-video:hover {
  color: var(--color-primary);
}
.cta .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
  .cta h2 {
    font-size: 32px;
  }
  .cta p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .cta .btn-get-started, .cta .btn-watch-video {
    font-size: 14px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  padding: 0;
  background: var(--color-black);
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 60px 0;
}
@media (max-width: 640px) {
  .hero .container {
    padding: 0 60px;
  }
}
.hero h2 {
  color: var(--color-secondary);
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 300;
  -webkit-animation: fadeInDown 1s both 0.2s;
  animation: fadeInDown 1s both 0.2s;
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}
.hero p {
  color: var(--color-secondary-light);
  -webkit-animation: fadeInDown 1s both 0.4s;
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}
.hero .img {
  margin-bottom: 40px;
  -webkit-animation: fadeInDownLite 1s both;
  animation: fadeInDownLite 1s both;
}
.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  -webkit-animation: fadeInUp 1s both 0.6s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.hero .btn-get-started:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.hero .carousel-control-prev {
  justify-content: start;
}
@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}
.hero .carousel-control-next {
  justify-content: end;
}
@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}
.hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--color-secondary-rgb), 0.4);
  color: rgba(var(--color-white-rgb), 0.98);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .carousel-control-next-icon {
  padding-left: 3px;
}
.hero .carousel-control-prev-icon {
  padding-right: 3px;
}
.hero .carousel-control-prev, .hero .carousel-control-next {
  transition: 0.3s;
}
.hero .carousel-control-prev:focus, .hero .carousel-control-next:focus {
  opacity: 0.5;
}
.hero .carousel-control-prev:hover, .hero .carousel-control-next:hover {
  opacity: 0.9;
}
.hero .carousel-indicators li {
  cursor: pointer;
  background: rgba(var(--color-secondary-rgb), 0.5);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--color-primary);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.hero-fullscreen {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-fullscreen-bg.html") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}
.hero-fullscreen:before {
  content: "";
  background: rgba(var(--color-white-rgb), 0.85);
  position: absolute;
  inset: 0;
}
@media (min-width: 1365px) {
  .hero-fullscreen {
    background-attachment: fixed;
  }
}
.hero-fullscreen h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.hero-fullscreen h2 span {
  color: var(--color-primary);
}
.hero-fullscreen p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero-fullscreen .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}
.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.hero-fullscreen .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}
.hero-fullscreen .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-fullscreen .btn-watch-video:hover {
  color: var(--color-primary);
}
.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
  .hero-fullscreen h2 {
    font-size: 32px;
  }
  .hero-fullscreen p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-fullscreen .btn-get-started, .hero-fullscreen .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Static Hero Section
--------------------------------------------------------------*/
.hero-static {
  width: 100%;
  min-height: 50vh;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}
.hero-static h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.hero-static h2 span {
  color: var(--color-primary);
}
.hero-static p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero-static .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}
.hero-static .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.hero-static .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}
.hero-static .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-static .btn-watch-video:hover {
  color: var(--color-primary);
}
.hero-static .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
  .hero-static h2 {
    font-size: 32px;
  }
  .hero-static p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-static .btn-get-started, .hero-static .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%;
}
.featured-services .service-item .icon {
  margin-bottom: 10px;
}
.featured-services .service-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}
.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}
.featured-services .service-item h4 a {
  color: var(--color-secondary);
  transition: ease-in-out 0.3s;
}
.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
}
.featured-services .service-item:hover h4 a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}
.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  z-index: -1;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 30px;
  }
  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}
.about h3 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}
.about .nav-pills {
  border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}
.about .nav-pills li + li {
  margin-left: 40px;
}
.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary);
}
.about .nav-link.active {
  color: var(--color-primary);
  background: none;
  border-bottom: 3px solid var(--color-primary);
}
@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px;
  }
}
.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}
.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 0 0 60px 0;
}
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}
.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta {
  padding: 0;
  margin-bottom: 0px;
}
.cta .container {
  padding: 60px;
  margin-bottom: 30px;
  /*background-color: #fff;*/
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
}
@media (max-width: 992px) {
  .cta .container {
    padding: 60px;
  }
}
.cta .content h3 {
  color: var(--color-secondary);
  font-size: 28px;
  font-weight: 700;
}
.cta .content h3 em {
  font-style: normal;
  position: relative;
}
.cta .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: rgba(var(--color-primary-rgb), 0.5);
  z-index: -1;
}
/*.cta .content p {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 14px;
}*/
.cta .content .cta-btn {
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: rgba(var(--color-primary-dark-rgb), 0.9);
}
.cta .content .cta-btn:hover {
  background: var(--color-primary);
}
.cta .img {
  position: relative;
}
.cta .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb), 0.5);
  border-radius: 15px;
  transform: rotate(12deg);
}
.cta .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb), 0.9);
  border-radius: 15px;
  transform: rotate(6deg);
}
.cta .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
}

/*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/
.onfocus {
  padding: 0;
}
.onfocus .video-play {
  min-height: 400px;
  background: linear-gradient(rgba(var(--color-black-rgb), 0.4), rgba(var(--color-black-rgb), 0.7)), url("../img/onfocus-video-bg.html") center center;
  background-size: cover;
}
.onfocus .content {
  background: linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)), url("../img/onfocus-content-bg.html") center center;
  background-size: cover;
  color: rgba(var(--color-white-rgb), 0.8);
  padding: 40px;
}
@media (min-width: 768px) {
  .onfocus .content {
    padding: 80px;
  }
}
.onfocus .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
}
.onfocus .content ul {
  list-style: none;
  padding: 0;
}
.onfocus .content ul li {
  padding-bottom: 10px;
}
.onfocus .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}
.onfocus .content p:last-child {
  margin-bottom: 0;
}
.onfocus .content .read-more {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-primary);
}
.onfocus .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}
.onfocus .content .read-more:hover {
  background: rgba(var(--color-primary-rgb), 0.9);
  padding-right: 19px;
}
.onfocus .content .read-more:hover i {
  margin-left: 10px;
}
.onfocus .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(var(--color-primary-rgb), 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.onfocus .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(var(--color-primary-rgb), 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.onfocus .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.onfocus .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
.onfocus .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}
.features .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--color-secondary);
  box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}
.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}
.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: var(--color-secondary);
}
.features .nav-link:hover {
  color: var(--color-primary);
}
.features .nav-link.active {
  transition: 0.3s;
  background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));
  border-color: var(--color-primary);
}
.features .nav-link.active h4 {
  color: var(--color-white);
}
.features .nav-link.active i {
  color: var(--color-white) !important;
}
.features .tab-content {
  margin-top: 30px;
}
.features .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.features .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: var(--color-secondary);
}
.features .tab-pane ul {
  list-style: none;
  padding: 0;
}
.features .tab-pane ul li {
  padding-bottom: 10px;
}
.features .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}
.features .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}
.services .img img {
  transition: 0.6s;
}
.services .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  background: rgba(var(--color-white-rgb), 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}
.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white);
}
.services .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.services .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .service-item:hover .details h3 {
  color: var(--color-primary);
}
.services .service-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}
.services .service-item:hover .details .icon i {
  color: var(--color-primary);
}
.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/hero-bg.png") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: #f3f3f3;*/
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: var(--color-white);
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(var(--color-white-rgb), 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #000;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}
.testimonials .testimonial-item .stars i {
  color: #000;
  margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #000;
  font-size: 26px;
  line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #000;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #000;
  opacity: 0.5;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
  opacity: 1;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  background: rgba(var(--color-secondary-rgb), 0.04);
}
.pricing .pricing-item {
  padding: 10px 30px;
  box-shadow: 0 3px 20px -2px rgba(var(--color-gray-rgb), 0.15);
  /*background: var(--color-white);*/
  height: 100%;
  display: flex;
  flex-direction: column;
  /*border: 4px solid var(--color-white);*/
  border-radius: 0px;
  overflow: hidden;
}
.pricing .pricing-header {
  background: linear-gradient(rgba(var(--color-secondary-rgb), 0.9), rgba(var(--color-secondary-rgb), 0.9)), url("../img/pricing-bg.html") center center;
  background-size: cover;
  text-align: center;
  padding: 40px;
  margin: -60px -40px 0;
}
.pricing h3 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 36px;
  color: var(--color-white);
}
.pricing h4 {
  font-size: 48px;
  color: var(--color-white);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 0;
}
.pricing h4 sup {
  font-size: 28px;
}
.pricing h4 span {
  color: rgba(var(--color-white-rgb), 0.6);
  font-size: 24px;
}
.pricing ul {
  padding: 30px 0;
  list-style: none;
  color: var(--color-gray);
  text-align: left;
  line-height: 20px;
}
.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.pricing ul i {
  color: var(--color-primary);
  font-size: 36px;
  padding-right: 3px;
  line-height: 0;
}
.pricing ul .na {
  color: rgba(var(--color-gray-rgb), 0.5);
}
.pricing ul .na i {
  color: rgba(var(--color-gray-rgb), 0.5);
  font-size: 24px;
  padding-left: 4px;
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 6px;
  color: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
  border: 1px solid var(--color-primary);
}
.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.pricing .featured {
  border-color: var(--color-primary);
}
.pricing .featured .pricing-header {
  background: linear-gradient(rgba(var(--color-primary-rgb), 0.9), rgba(var(--color-primary-rgb), 0.9)), url("../img/pricing-bg.html") center center;
}
.pricing .featured .buy-btn {
  background: var(--color-primary);
  color: var(--color-white);
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .faq {
    padding: 0;
  }
}
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: var(--color-secondary);
}
.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.faq .content p {
  font-size: 15px;
  color: var(--color-gray);
}
.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}
.faq .accordion-item {
  border: 0;
  margin-top: 15px;
  box-shadow: 0px 5px 25px 0px rgba(var(--color-black-rgb), 0.06);
}
.faq .accordion-collapse {
  border: 0;
}
.faq .accordion-button {
  padding: 15px 40px 20px 60px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: var(--color-default);
  text-align: left;
  background: var(--color-white);
  box-shadow: none;
  border-radius: 5px;
}
.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}
.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-primary);
}
.faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
  color: var(--color-primary);
}
.faq .accordion-body {
  padding: 0 30px 25px 60px;
  border: 0;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: none;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}
.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-flters li:hover, .portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}
.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}
.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}
.portfolio .portfolio-item {
  position: relative;
  border: 1px solid var(--color-white);
  overflow: hidden;
  z-index: 1;
}
.portfolio .portfolio-item img {
  transition: all 0.3s;
}
.portfolio .portfolio-item:before {
  content: "";
  inset: 0;
  position: absolute;
  background: rgba(var(--color-secondary-rgb), 0.8);
  z-index: 2;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: auto 40px 40px 40px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 20px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  line-height: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-white);
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}
.portfolio .portfolio-item:hover:before {
  visibility: visible;
  opacity: 1;
}
.portfolio .portfolio-item:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  inset: auto 10px 0 10px;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}
.team .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team .team-member .social a {
  transition: color 0.3s;
  color: var(--color-white);
  background: var(--color-primary);
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}
.team .team-member .social a i {
  line-height: 0;
  font-size: 16px;
}
.team .team-member .social a:hover {
  background: var(--color-primary-light);
}
.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team .team-member .member-info {
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  background: var(--color-white);
  margin: -50px 20px 0 20px;
  position: relative;
  border-radius: 8px;
}
.team .team-member .member-info h4 {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 24px;
  color: var(--color-secondary);
}
.team .team-member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray);
}
.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--color-gray);
}
.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}
.recent-blog-posts .post-box .meta {
  margin-top: 15px;
}
.recent-blog-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}
.recent-blog-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}
.recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}
.recent-blog-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(var(--color-secondary-dark-rgb), 0.7);
}
.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}
.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}
.recent-blog-posts .post-box:hover .post-title {
  color: var(--color-primary);
}
.recent-blog-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .map {
  margin-bottom: 40px;
}
.contact .map iframe {
  border: 0;
  width: 100%;
  height: 400px;
}
.contact .info {
  padding: 10px;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  overflow: hidden;
}
.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}
.contact .info p {
  color: var(--color-secondary-light);
  margin-bottom: 30px;
  font-size: 15px;
}
.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}
.contact .info-item i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}
.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-secondary-light);
}
.contact .php-email-form {
  width: 100%;
  background: var(--color-white);
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: var(--color-white);
  background: var(--color-red);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: var(--color-white);
  background: var(--color-green);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: var(--color-white);
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-green);
  border-top-color: var(--color-white);
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input[type=text], .contact .php-email-form input[type=email], .contact .php-email-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input[type=text]:focus, .contact .php-email-form input[type=email]:focus, .contact .php-email-form textarea:focus {
  border-color: var(--color-secondary-light);
}
.contact .php-email-form input[type=text], .contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}
.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 13px 50px;
  color: var(--color-white);
  transition: 0.4s;
  border-radius: 0;
}
.contact .php-email-form button[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-white);
  opacity: 1;
  border: 1px solid var(--color-primary);
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(var(--color-secondary-rgb), 0.15);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-secondary-light);
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  padding: 30px;
}
.blog .posts-list article + article {
  margin-top: 60px;
}
.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}
.blog .posts-list .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
}
.blog .posts-list .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}
.blog .posts-list .title a:hover {
  color: var(--color-primary);
}
.blog .posts-list .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}
.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .posts-list .meta-top ul li + li {
  padding-left: 20px;
}
.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--color-primary-rgb), 0.8);
}
.blog .posts-list .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .posts-list .content {
  margin-top: 20px;
}
.blog .posts-list .read-more a {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog .posts-list .read-more a:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  padding: 30px;
}
.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}
.blog .blog-details .content {
  margin-top: 20px;
}
.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(var(--color-secondary-rgb), 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}
.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .blog-details .meta-top ul li + li {
  padding-left: 20px;
}
.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--color-primary-rgb), 0.8);
}
.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}
.blog .blog-details .meta-bottom i {
  color: var(--color-secondary-light);
  display: inline;
}
.blog .blog-details .meta-bottom a {
  color: rgba(var(--color-secondary-rgb), 0.8);
  transition: 0.3s;
}
.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}
.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}
.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}
.blog .blog-details .meta-bottom .tags li + li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}
.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}
.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}
.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}
.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}
.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}
.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}
.blog .post-author .social-links a {
  color: rgba(var(--color-secondary-rgb), 0.5);
  margin-right: 5px;
}
.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}
.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}
.blog .sidebar .sidebar-item + .sidebar-item {
  margin-top: 40px;
}
.blog .sidebar .search-form form {
  background: var(--color-white);
  border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}
.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}
.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}
.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.blog .sidebar .search-form form button i {
  line-height: 0;
}
.blog .sidebar .search-form form button:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}
.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}
.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}
.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}
.blog .sidebar .recent-posts .post-item {
  display: flex;
}
.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}
.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}
.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}
.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}
.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}
.blog .sidebar .tags {
  margin-bottom: -10px;
}
.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .tags ul li {
  display: inline-block;
}
.blog .sidebar .tags ul a {
  color: var(--color-secondary-light);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
  display: inline-block;
  transition: 0.3s;
}
.blog .sidebar .tags ul a:hover {
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}
.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(var(--color-secondary-light-rgb), 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}
.blog .comments .comments-count {
  font-weight: bold;
}
.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}
.blog .comments .comment .comment-img {
  margin-right: 14px;
}
.blog .comments .comment .comment-img img {
  width: 60px;
}
.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}
.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}
.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}
.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}
.blog .comments .comment h5 .reply i {
  font-size: 20px;
}
.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin-bottom: 5px;
}
.blog .comments .comment.comment-reply {
  padding-left: 40px;
}
.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}
.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}
.blog .comments .reply-form p {
  font-size: 14px;
}
.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(var(--color-primary-rgb), 0.8);
}
.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(var(--color-primary-rgb), 0.8);
}
.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}
.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}
.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(var(--color-secondary-rgb), 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: var(--color-secondary-light);
}
.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}
.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: var(--color-primary);
}
.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Footer - Clean & Minimal Design
--------------------------------------------------------------*/

/* Reset any conflicting footer styles */
footer#footer.footer,
.footer {
  all: unset;
  display: block;
  width: 100%;
  color: var(--color-white) !important;
  font-family: var(--font-primary) !important;
  background: var(--color-secondary-dark) !important;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

/* Ensure specificity over Bootstrap and other frameworks */
footer#footer.footer *,
.footer * {
  box-sizing: border-box;
}

/* Main Footer Content */
.footer-main {
  padding: 60px 0 40px !important;
  position: relative;
  background: transparent !important;
}

.footer-section {
  height: 100%;
}

/* Footer Brand */
.footer-brand {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.3;
  font-family: var(--font-secondary);
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-secondary-light);
  margin-bottom: 0;
  max-width: 280px;
}

/* Contact Information */

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: var(--color-primary-light);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--color-primary-light);
}

.contact-icon i {
  font-size: 16px;
  color: var(--color-white);
}

.contact-details {
  flex: 1;
}

.contact-text {
  font-size: 14px;
  color: var(--color-secondary-light);
  line-height: 1.5;
  display: block;
  margin: 0;
}

.contact-link {
  font-size: 14px;
  color: var(--color-secondary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--color-primary);
}

/* Footer Headings */
.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
  font-family: var(--font-secondary);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

/* Footer Navigation */
.footer-nav {
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-link {
  font-size: 14px;
  color: var(--color-secondary-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 16px;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--color-white);
  padding-left: 20px;
}

.footer-link:hover::before {
  background: var(--color-primary-light);
  transform: translateY(-50%) scale(1.3);
}

/* Map Container */
.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(var(--color-white-rgb), 0.1);
  transition: all 0.3s ease;
}

.map-container:hover {
  border-color: var(--color-primary);
}

.footer-map {
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.footer-map:hover {
  filter: grayscale(0%);
}

/* Footer Bottom */
.footer-bottom {
  background: var(--color-secondary) !important;
  border-top: 1px solid rgba(var(--color-white-rgb), 0.1) !important;
  padding: 24px 0 !important;
  position: relative;
  margin: 0 !important;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Copyright Section */
.copyright-section {
  flex: 1;
}

.copyright-text {
  font-size: 13px;
  color: var(--color-secondary-light);
  margin-bottom: 4px;
  font-weight: 400;
}

.brand-name {
  color: var(--color-primary);
  font-weight: 600;
}

.credits-text {
  font-size: 12px;
  color: rgba(var(--color-white-rgb), 0.6);
  margin-bottom: 0;
}

.designer-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.designer-link:hover {
  color: var(--color-primary-light);
}

/* Social Section */
.social-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-label {
  font-size: 13px;
  color: var(--color-secondary-light);
  font-weight: 500;
  margin-right: 8px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(var(--color-white-rgb), 0.08);
  border: 1px solid rgba(var(--color-white-rgb), 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.social-link.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-link.instagram:hover {
  background: #e4405f;
  border-color: #e4405f;
}

.social-link.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.social-link i {
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .footer-main {
    padding: 50px 0 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-bottom-content .copyright-section {
    order: 2;
  }
  
  .footer-bottom-content .social-section {
    order: 1;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .footer-main {
    padding: 40px 0 25px;
  }
  
  .footer-title {
    font-size: 20px;
  }
  
  .footer-description {
    font-size: 13px;
    max-width: 100%;
  }
  
  
  .contact-item {
    margin-bottom: 14px;
  }
  
  .contact-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
  }
  
  .contact-icon i {
    font-size: 14px;
  }
  
  .footer-heading {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .footer-heading::after {
    width: 25px;
  }
  
  .social-section {
    flex-direction: column;
    gap: 10px;
  }
  
  .map-container {
    margin-top: 16px;
  }
  
  .footer-map {
    height: 160px;
  }
}

@media (max-width: 575.98px) {
  .footer-main {
    padding: 35px 0 20px;
  }
  
  .footer-bottom {
    padding: 20px 0 !important;
  }
  
  .footer-brand {
    margin-bottom: 20px;
  }
  
  .footer-title {
    font-size: 18px;
  }

  
  .footer-heading {
    margin-bottom: 14px;
    font-size: 15px;
  }
  
  .footer-link {
    font-size: 13px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
  }
  
  .social-link i {
    font-size: 14px;
  }
}
/*.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {*/
/*  width: 90% !important;*/
/*  padding-right: var(--bs-gutter-x,.75rem);*/
/*  padding-left: var(--bs-gutter-x,.75rem);*/
/*  margin-right: auto;*/
/*  margin-left: auto;*/
/*}*/
.pricing .card {
  padding: 0;
  border-radius: 10px;
  border: none;
  box-shadow: none;
  background: transparent;
}
.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: 0.25rem;
}
.pricing .card .card-heading {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
  margin: 10px 0 20px 0;
  color: #000;
}
.pricing .card .card-heading:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 35px;
  width: 35px;
  height: 3px;
  background: #da2e3b;
}
.pricing .single-notice {
  margin: 0px 0;
  padding-right: 0px;
}
.pricing .single-notice .post-title a {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  display: block;
}

.pricing .single-notice .post-head {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}
.pricing .single-notice .notice-date {
  font-size: 14px;
  color: #aaaaaa;
  display: inline-block;
  margin: 2px 3px 0 0;
}
.pricing .single-notice .tags {
  color: #868585;
  background: transparent;
  font-size: 12px;
  line-height: 11px;
}
.pricing .single-notice .tags span {
  background: #da2e3b;
  padding: 5px 7px;
  font-size: 11px;
  font-weight: 400;
}

.popup {
  width: 100%;
  margin: 0 auto;
  display: none;
  position: fixed;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  top: 0;
}
@media only screen and (min-width: 1200px) {
  .cnt223 {
    max-width: 900px;
  }
}
.cnt223 {
    width: fit-content;
    margin: 90px auto auto auto;
    background: #f3f3f3;
    position: relative;
    z-index: 999999;
    border-radius: 5px;
    box-shadow: 0 2px 5px #000;
    max-height: 90vh;
    max-width: 85vw;
}
.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.cnt223 a {
  text-decoration: none;
}
.close {
  display: flex;
  position: absolute;
  top: -14px;
  right: -14px;
  background: #cd4852;
  border-radius: 50%;
  z-index: 999;
  justify-content: center;
  align-items: center;
  font-family: 'Lato';
  font-weight: 900;
  color: #fff;
  opacity: 1;
  font-size: 18px;
  width: 30px;
  height: 30px;
}
.cnt223 p {
  clear: both;
  color: #555555;
  /* text-align: justify; */
  font-size: 20px;
  font-family: sans-serif;
}
.cnt223 img {
  max-width: 100%;
  width: auto;
  max-height: 70vh;
  display: inline-block;
    max-width: 100%;
    height: auto;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}

.page-title {
  position: relative;
  text-align: center;
  padding: 80px 0px 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  margin: 0;
  border: none;
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.page-title .auto-container {
  position: relative;
  z-index: 2;
}

.page-title h1 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: none;
  font-family: var(--font-primary);
}

.page-title h1 span {
  color: var(--color-primary-light);
}

@media (max-width: 768px) {
  .page-title {
    padding: 60px 0px 40px;
  }
  
  .page-title h1 {
    font-size: 2rem;
  }
}
.books-detail-section {
  position: relative;
  /*padding: 140px 0px 80px;*/
  background-color: #f3f3f3;
}
.books-detail-section .patern-layer-one {
  position: absolute;
  left: -170px;
  top: -80px;
  width: 336px;
  height: 316px;
  background-repeat: no-repeat;
}
.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}
.books-detail-section .patern-layer-two {
  position: absolute;
  right: 0px;
  top: 150px;
  width: 106px;
  height: 200px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px){
.sec-title .text br, .topics-section .patern-layer-one, .topics-section .patern-layer-two, .sidebar-page-container .patern-layer-one, .sidebar-page-container .patern-layer-two, .fluid-section-one .patern-layer-one, .intro-section .patern-layer-one, .intro-section .patern-layer-two, .books-page-section .patern-layer-one, .student-profile-section .patern-layer-one, .student-profile-section .patern-layer-two, .books-page-section .patern-layer-two, .books-detail-section .patern-layer-one, .books-detail-section .patern-layer-two, .profile-section .patern-layer-one, .profile-section .patern-layer-two, .contact-page-section .patern-layer-one, .contact-page-section .patern-layer-two, .edit-profile-section .patern-layer-one, .edit-profile-section .patern-layer-two, .call-to-action-section-two .content .text br, .education-section .patern-layer-one {
    display: none;
}
}
.books-detail-section .content-column h2 {
  position: relative;
  font-weight: 700;
  color: #03382e;
  line-height: 1.3em;
}
.books-detail-section .content-column p {
  position: relative;
  color: #626262;
  font-size: 16px;
  line-height: 1.8em;
  margin-bottom: 15px;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.inner-box {
  position: relative;
  width: 100%;
}
.image-box {
  position: relative;
  display: block;
  margin: 0px;
  overflow: hidden;
  border-radius: 8px;
}
.image-box img {
  position: relative;
  display: block;
  width: 100%;
  height: 150px;
}
.inner-box:hover .overlay-box {
  opacity: 1;
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
  visibility: visible;
}
.overlay-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: #ffffff;
  text-align: center;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  background-color: rgba(0, 0, 0, 0.20);
}
.overlay-inner {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: table;
  vertical-align: middle;
  padding: 10px 0px;
}
.inner-box .lower-box {
  position: relative;
  padding-top: 20px;
}
.overlay-inner .link {
  position: relative;
  width: 35px;
  height: 35px;
  font-size: 14px;
  color: #ffffff;
  line-height: 35px;
  margin: 0px 3px;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  background-color: #075e89;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
.overlay-inner .link .icon {
  position: relative;
  z-index: 1;
}
.fa {
  display: inline-block;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
.fa-chain:before, .fa-link:before {
  content: "\f0c1";
}
.overlay-inner .content {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}
/*.content {
  padding: 20px 0;
}*/
.title {
  border-bottom: #e8e8e8 0px solid;
  text-transform: none;
  font-family: 'gothammedium', sans-serif;
  font-weight: 400;
}
.title .title-border {
  padding-bottom: 9px;
  display: inline-block;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  margin-bottom: -1px;
}
.posts-listing {
  margin: 0;
  list-style-type: none;
}
.post-list-item:first-child {
  padding-top: 20px;
}
.post-list-item {
  padding: 15px 0;
  border-bottom: #e8e8e8 1px solid;
}
.thumbnail, .img-thumbnail {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
}
.img-thumbnail {
  display: inline-block;
  width: 100% \9;
  max-width: 100%;
  width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.posts-listing .post-title1 {
  font-size: 16px !important;
  font-weight: 400;
  display: block;
  margin-bottom: 0;
}
.meta-data {
  color: #555;
  font-size: 12px;
  font-family: 'gothammedium', sans-serif;
  text-transform: none;
  font-weight: 400;
}
.btn-sm, .btn-group-sm > .btn {
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-size: 10px;
  padding-left: 5px;
  padding-right: 5px;
}
.btn-default {
  border-width: 0;
  color: #333;
  border: 1px solid #DDD;
}
.content-header {
  position: relative;
  padding: 15px 15px 0 15px;
}
.btn {
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid transparent;
}
.download-btn i {
  font-size: 18px;
  vertical-align: middle;
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v127/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}
.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
  font-size: 16px;
}
.admission-page, .admission-page .dropdown-item, .admission-page .form-control, .admission-page .btn {
  font-size: 14px;
}
.admission-page {
  font-family: 'Muli', sans-serif;
}
.page {
  position: relative;
  z-index: 10;
}
.page {
  padding: 10mm 15mm;
  background: #fff;
}
.visible-print, .visible-print-flex {
  display: none;
}
.print-logo-left {
  width: 170px;
  height: 120px;
}
.fixed-image {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.display-logo {
  width: 120px;
  height: 100px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.school-name {
  font-size: 28px;
  font-family: var(--font-primary);
    font-weight: 400;

}
.form-block.active {
  display: block;
}
.text-red {
  color: #dd4b39 !important;
}
select.form-control:not([size]):not([multiple]) {
  height: 36px;
}
select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .form-control, .form-control:focus {
  border-color: #1C81DE !important;
}
.form-control {
  border-radius: 0;
  box-shadow: none;
  border-color: #d2d6de;
}
.form-control {
  border-color: #7cbce2;
  border-radius: 0;
  background: #f8fcff;
  line-height: 18px;
}
body, .dropdown-item, .form-control, .btn {
  font-size: 14px;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

select.form-control:not([size]):not([multiple]) {
  height: 36px;
}
.display-logo {
  width: 120px;
  height: 100px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 auto
}

.school-name {
  font-size: 28px
}

.flex-form-group {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.flex-form-group > label {
  flex-basis: 152px;
  flex-shrink: 0;
}

.flex-form-group > div > label {
  min-width: 110px;
}

.flex-form-group > div {
  flex-basis: calc(100% - 152px - 16px);
}

@media screen {
  .mb-scren-2 {
      margin-bottom: .5rem !important;
  }
}

@media print {
  @page {
      size: A4;
      margin: 0
  }

  #admissionApplicationId tbody tr + tr + tr + tr + tr + tr {
      display: none !important;
  }

  #admissionApplicationId tbody tr td {
      padding: 1px 0;
  }

  .col-print-6 {
      max-width: 50%;
      flex: 0 0 50%;
  }

  .col-print-12 {
      max-width: 100%;
      flex: 0 0 100%;
  }

  .parent-inf {
      margin-top: 25px;
      margin-bottom: 2px !important;
  }

  .flex-form-group {
      margin-bottom: 0;
  }

  .siblingBlock-label {
      font-size: 13px;
  }
}

.btn-rounded {
  border-radius: 12em;
}

.btn-rounded {
  padding: 0.25rem 0.25rem;
}

@media (max-width: 767px) {
  .display-logo {
      width: 60px;
      height: 50px;
  }

  .school-name {
      font-size: 20px;
  }



  @media screen {
      .icheckbox_square-red, .iradio_square-red {
          margin-bottom: 5px;
      }

      .isScienceStream {
          margin-left: -8px;
      }
  }
}

.gender-class .input-label:last-child {
  margin-right: 0px !important;
}

.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}
@media (max-width: 767px){
.hidden-xs {
    display: none!important;
}
.pull-right {
    float: left!important;
}
}

.container-fluid .pull-left .info-list {
  position: relative;
  float: left;
  list-style: none;
  color: #fff;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.container-fluid .pull-left .info-list li {
  position: relative;

}
.container-fluid .pull-left .info-list li a{
  position: relative;
  color: #fff;
  font-weight: 500;
}
.container-fluid .pull-right .info-list {
  position: relative;
  float: left;
  list-style: none;
  color: #fff;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.container-fluid .pull-right .info-list li {
  position: relative;

}

/* ====================================================
   BOOTSTRAP CAROUSEL HERO SECTION STYLES
   ==================================================== */

#heroCarousel {
  height: 70vh;
  min-height: 500px;
  max-height: 800px;
}

#heroCarousel .carousel-item {
  height: 70vh;
  min-height: 500px;
  max-height: 800px;
  background: #f8f9fa;
}

#heroCarousel .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

#heroCarousel .carousel-caption {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  background: linear-gradient(
    to top, 
    rgba(0, 162, 189, 0.3) 0%, 
    rgba(0, 162, 189, 0.2) 40%,
    rgba(0, 162, 189, 0.1) 70%,
    transparent 100%
  );
  display: flex !important;
  align-items: flex-end !important;
  text-align: center !important;
  padding: 2rem 0 3rem 0;
}

#heroCarousel .carousel-caption h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-weight: normal;
  margin-bottom: 0.8rem;
}

#heroCarousel .carousel-caption p {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin: 0 auto 1.2rem auto;
  opacity: 0.9;
}


/* Carousel Controls */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#heroCarousel .carousel-control-prev {
  left: 2rem;
}

#heroCarousel .carousel-control-next {
  right: 2rem;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

/* Carousel Indicators */
#heroCarousel .carousel-indicators {
  bottom: 2rem;
  margin-bottom: 0;
}

#heroCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  margin: 0 6px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

#heroCarousel .carousel-indicators button:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

#heroCarousel .carousel-indicators button.active {
  background: white;
  border-color: white;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  #heroCarousel,
  #heroCarousel .carousel-item {
    height: 60vh;
    min-height: 450px;
    max-height: 600px;
  }
  
  #heroCarousel .carousel-caption {
    text-align: center !important;
    padding: 1.5rem 0 2rem 0;
  }
  
  #heroCarousel .carousel-caption h1 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 0.6rem !important;
  }
  
  #heroCarousel .carousel-caption p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    margin-bottom: 1rem !important;
  }
  
  
  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
  }
  
  #heroCarousel .carousel-control-prev {
    left: 1rem;
  }
  
  #heroCarousel .carousel-control-next {
    right: 1rem;
  }
  
  #heroCarousel .carousel-indicators {
    bottom: 1.5rem;
  }
  
  #heroCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}

@media (max-width: 480px) {
  #heroCarousel,
  #heroCarousel .carousel-item {
    height: 50vh;
    min-height: 400px;
  }
  
  #heroCarousel .carousel-caption {
    background: linear-gradient(
      to top, 
      rgba(0, 162, 189, 0.4) 0%, 
      rgba(0, 162, 189, 0.25) 30%,
      rgba(0, 162, 189, 0.15) 60%,
      transparent 100%
    );
  }
  
  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  #heroCarousel .carousel-control-prev {
    left: 0.5rem;
  }
  
  #heroCarousel .carousel-control-next {
    right: 0.5rem;
  }
  
  #heroCarousel .carousel-indicators {
    bottom: 1rem;
  }
}

.text-red {
  color: #ef061c !important;
}
.blink-hard {
  animation: blinker 1s step-end infinite;
}
.blink-soft {
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* Custom Header Styles */
.top-bar {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  position: relative;
  overflow: hidden;
}

.top-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.contact-info a {
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-info a:hover {
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.action-buttons .btn {
  transition: all 0.2s ease;
  border: none;
  font-size: 0.85rem;
}

.action-buttons .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Header Styles */
.header {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.header.scrolled {
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
}

.navbar-nav .nav-link {
  position: relative;
  transition: all 0.15s ease;
  font-weight: 500;
  margin: 0;
  padding: 0.5rem 0.75rem !important;
  border-radius: 4px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .dropdown-toggle:hover {
  color: var(--color-primary) !important;
  background-color: rgba(var(--color-primary-rgb), 0.06) !important;
}

/* Let Bootstrap handle dropdown toggle styling */

/* Allow Bootstrap default dropdown toggle styling */

.navbar-nav .nav-link::after {
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  transition: all 0.15s ease;
  border-radius: 2px 2px 0 0;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  border: none;
  padding: 0.375rem 0;
  margin-top: 0.25rem !important;
  animation: fadeInDown 0.2s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  min-width: 160px;
  background: var(--color-white) !important;
  border: 1px solid rgba(0,0,0,0.05);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.dropdown-item {
  transition: all 0.15s ease;
  border-radius: 0;
  margin: 0;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--color-default) !important;
  position: relative;
  background: transparent;
}

.dropdown-item:hover {
  background-color: rgba(var(--color-primary-rgb), 0.06) !important;
  color: var(--color-primary) !important;
  border-radius: 0;
  transform: none;
}

.dropdown-item:active {
  background-color: rgba(var(--color-primary-rgb), 0.1) !important;
  color: var(--color-primary-dark) !important;
}

/* Bootstrap navbar toggler customization */
.navbar-toggler {
  padding: 0.25rem 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid rgba(var(--color-primary-rgb), 0.2);
  border-radius: 0.375rem;
  transition: all 0.15s ease-in-out;
}

.navbar-toggler:hover {
  background-color: rgba(var(--color-primary-rgb), 0.08);
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--color-primary-rgb), 0.25);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 162, 189, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* Navbar brand styling - Override any conflicting styles */
.header .navbar-brand {
  margin-right: 1rem;
  text-decoration: none !important;
  display: flex !important;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  white-space: nowrap;
}

.header .navbar-brand:hover {
  text-decoration: none !important;
}

.header .navbar-brand img {
  transition: all 0.2s ease;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
  max-height: 60px !important;
  min-height: 40px !important;
  width: auto !important;
  object-fit: contain;
  display: block !important;
  margin-right: 0;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10;
}


/* Enhanced logo styling */
.header .navbar-brand img {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.header .navbar-brand:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* Hide school name on desktop */
.navbar-brand .school-name-mobile {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .top-bar {
    text-align: center;
    padding: 0.5rem 0;
  }
  
  .contact-info {
    justify-content: center !important;
    margin-bottom: 0.5rem;
  }
  
  .action-buttons {
    justify-content: center !important;
  }
  
  /* Ensure header is visible on mobile */
  .header {
    display: block !important;
    visibility: visible !important;
    position: relative !important;
  }
  
  /* Mobile navbar adjustments */
  .navbar {
    padding: 0.5rem 0;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Ensure navbar brand is visible */
  .navbar-brand {
    display: flex !important;
    align-items: center;
  }
  
  /* Mobile logo sizing */
  .header .navbar-brand img {
    max-height: 70px !important;
    min-height: 50px !important;
    width: auto !important;
  }
  
  /* Mobile school name display */
  .navbar-brand .school-name-mobile {
    display: flex !important;
    flex-direction: column;
    margin-left: 12px;
    font-size: 18px !important;
    font-weight: 600;
    color: var(--color-primary) !important;
    line-height: 1.2;
    max-width: calc(100vw - 150px);
    overflow: hidden;
  }
  
  .navbar-brand .school-name-mobile .school-main {
    display: block;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .navbar-brand .school-name-mobile .school-sub {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-secondary);
    margin-top: -2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .navbar-collapse {
    background: #ffffff;
    border-radius: 16px;
    margin-top: 1rem;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(var(--color-primary-rgb), 0.08);
    position: relative;
    overflow: hidden;
  }
  
  .navbar-collapse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
    border-radius: 16px 16px 0 0;
  }
  
  .navbar-nav .nav-link,
  .navbar-nav .dropdown-toggle {
    text-align: left;
    margin: 0.125rem 0;
    padding: 1rem 1.25rem !important;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-default) !important;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
  }
  
  .navbar-nav .dropdown-toggle {
    justify-content: space-between;
  }
  
  .navbar-nav .nav-link:hover {
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.06) 0%, rgba(var(--color-primary-rgb), 0.1) 100%);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    color: var(--color-primary-dark) !important;
    transform: translateY(-2px);
  }
  
  .navbar-nav .dropdown-toggle:hover {
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.06) 0%, rgba(var(--color-primary-rgb), 0.1) 100%);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    color: var(--color-primary-dark) !important;
    transform: translateY(-2px);
  }
  
  .dropdown-menu {
    position: static;
    background: #f8f9fa;
    margin: 0.75rem 0 0 0 !important;
    border-radius: 12px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.15);
    padding: 0.75rem;
    position: relative;
  }
  
  .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    border-radius: 12px 0 0 12px;
  }
  
  .dropdown-item {
    margin: 0.25rem 0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    color: var(--color-secondary) !important;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
  }
  
  .dropdown-item:hover {
    background: rgba(var(--color-primary-rgb), 0.08);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    color: var(--color-primary-dark) !important;
    transform: translateX(4px);
  }
  
  .dropdown-item::before {
    content: '→';
    color: var(--color-primary);
    font-weight: bold;
    margin-right: 0.75rem;
    opacity: 0;
    transition: all 0.2s ease;
    transform: translateX(-5px);
  }
  
  .dropdown-item:hover::before {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Mobile menu visual separators */
  .navbar-nav .nav-item:not(:last-child) {
    margin-bottom: 0.75rem;
    position: relative;
  }
  
  .navbar-nav .nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -0.375rem;
    left: 1.25rem;
    right: 1.25rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--color-primary-rgb), 0.2), transparent);
  }
  
  /* Use Bootstrap default dropdown toggle styling */
  
  /* Mobile menu entry animation */
  .navbar-nav .nav-item {
    opacity: 0;
    transform: translateY(-10px);
    animation: slideInFromTop 0.3s ease forwards;
  }
  
  .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
  .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
  .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
  .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
  .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.5s; }
  .navbar-nav .nav-item:nth-child(6) { animation-delay: 0.6s; }
  
  @keyframes slideInFromTop {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .header .row {
    margin: 0;
  }
  
  .header .container {
    padding: 0 1rem;
  }
}

@media (max-width: 575.98px) {
  .action-buttons {
    flex-direction: column;
    gap: 0.3rem !important;
  }
  
  .action-buttons .btn {
    width: 100%;
    font-size: 0.85rem;
  }
  
  .top-bar .row > div {
    margin-bottom: 0.25rem;
  }
  
  .header .py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  
  /* Extra small mobile fixes */
  .header {
    min-height: 60px !important;
    display: block !important;
  }
  
  .header .container {
    padding: 0 1rem;
  }
  
  .header .navbar-brand img {
    max-height: 35px !important;
  }
}

