/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
2.  Helper CSS
3.  Header Section
4.  Hero Section
5.  Service Section
6.  About Section
7.  Gallery Section
8.  Experience Section
9.  Footer Style
-------------------------------------------------------------------*/

/*----------------------------------------*/
/* Template default CSS */
/*----------------------------------------*/

html,
body {
  height: 100%;
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #111111;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  color: #6e7580;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

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

ul,
ol {
  padding: 0;
  margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
  margin-bottom: 45px;
  text-align: center;
}

.section-title h2 {
  font-size: 44px;
  color: #ff9933;
  margin-top: 34px;
  margin-bottom: 5px;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 70px;
  padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

/* buttons */

.primary-btn {
  display: inline-block;
  font-size: 14px;
  padding: 24px 36px 14px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  background: #ff9933;
  border-radius: 2px;
  letter-spacing: 2px;
}

.site-btn {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 50px;
  background: #ff9933;
  border: none;
  letter-spacing: 2px;
  border-radius: 2px;
}

/* Preloder */

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

/*---------------------
  Header
-----------------------*/

.header__logo {
  padding: 5px 0 5px;
  display: flex;
}

.header__top__widget {
  text-align: right;
  padding: 28px 0 24px;
}

.header__top__widget ul {
  display: inline-block;
  margin-right: 65px;
}

.header__top__widget ul li {
  font-size: 14px;
  color: #263246;
  list-style: none;
  display: inline-block;
  position: relative;
  margin-right: 5px;
  font-weight: bold;
}

.header__top__widget ul li:last-child {
  margin-right: 0;
}

.header__top__widget ul li:last-child:after {
  display: none;
}

.header__top__widget ul li:after {
  position: absolute;
  right: -5px;
  top: 8px;
  height: 2px;
  width: 2px;
  background: #ff9933;
  content: "";
  border-radius: 50%;
}

.header__top__widget .primary-btn {
  display: inline-block;
}

.header__nav {
  position: relative;
  z-index: 9;
  padding-top: 15px;
}

.header__nav .container .row {
  display: flex;
  justify-content: center;
}

.header__menu {
  text-align: center;
  width: 100%;
}

.header__menu ul {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.header__menu ul li {
  display: inline-block;
  float: none;
}

.header__menu {
  display: inline-block;
}

.header__menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 35px;
  position: relative;
}

.header__menu ul li:last-child {
  margin-right: 0;
}

.header__menu ul li:hover .dropdown {
  opacity: 1;
  top: 34px;
  visibility: visible;
}

.header__menu ul li:hover .dropdown li a:after {
  display: none;
}

.header__menu ul li:hover a:after {
  opacity: 1;
  width: 100%;
}

.header__menu ul li.active a:after {
  opacity: 1;
  width: 100%;
}

.header__menu ul li .dropdown {
  position: absolute;
  left: 0;
  top: 50px;
  width: 180px;
  background: #ffffff;
  text-align: left;
  transition: all, 0.3s;
  opacity: 0;
  visibility: hidden;
  padding: 5px 0;
  z-index: 9;
}

.header__menu ul li .dropdown li {
  margin-right: 0;
  display: block;
}

.header__menu ul li .dropdown li a {
  padding: 6px 15px;
  font-weight: 400;
  font-size: 15px;
  color: #222222;
  text-transform: capitalize;
  font-weight: 500;
}

.header__menu ul li a {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  padding: 5px 0;
  display: block;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.header__menu ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: #ffffff;
  content: "";
  opacity: 0;
  transition: all, 0.3s;
}

.header__social {
  text-align: right;
}

.header__social a {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  margin-right: 25px;
}

.header__social a:last-child {
  margin-right: 0;
}

.canvas__open {
  display: none;
}

.offcanvas-menu {
  display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero {
  margin-top: -50px;
  position: relative;
}

.hero__sliders.owl-carousel .owl-item.active .hero__text span {
  opacity: 1;
  top: 0;
}

.hero__sliders.owl-carousel .owl-item.active .hero__text h2 {
  opacity: 1;
  top: 0;
}

.hero__sliders.owl-carousel .owl-item.active .hero__text .primary-btn {
  opacity: 1;
  top: 0;
}

.hero__sliders.owl-carousel .owl-nav button {
  display: inline-block;
  height: 46px;
  width: 46px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  color: #ffffff;
  font-size: 20px;
  line-height: 52px;
  text-align: center;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-23px);
  transition: all, 0.3s;
}

.hero__sliders.owl-carousel .owl-nav button:hover {
  color: #111111;
  background: #ffffff;
}

.hero__sliders.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 40px;
}

.hero__items {
  height: 550px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero__items::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero__items .container {
  position: relative;
  z-index: 2;
}

.hero__text span {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 20px;
  position: relative;
  top: 100px;
  opacity: 0;
  transition: all, 0.2s;
}

.hero__text h2 {
  font-size: 50px;
  line-height: 60px;
  color: #ffffff;
  margin-bottom: 30px;
  position: relative;
  top: 100px;
  opacity: 0;
  transition: all, 0.5s;
}

.hero__text p {
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero__text .primary-btn {
  position: relative;
  top: 100px;
  opacity: 0;
  transition: all, 0.8s;
}

/*---------------------
  Services
-----------------------*/

.services {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f9f9f9;
}

.services__item {
  background: #ffffff;
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.services__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.services__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.services__item:hover .services__image img {
  transform: scale(1.05);
}

.services__overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 153, 51, 0.95);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.services__content {
  padding: 25px;
}

.services__content h5 {
  font-size: 22px;
  color: #263246;
  margin-bottom: 12px;
  font-weight: 600;
}

.services__description {
  color: #6e7580;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 14px;
}

.services__details {
  margin-bottom: 20px;
}

.services__meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.services__meta-item {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 8px;
  flex: 1;
  min-width: 80px;
  justify-content: center;
}

.services__meta-item i {
  color: #ff9933;
  margin-right: 5px;
  font-size: 12px;
}

.services__meta-item span {
  color: #555;
  font-size: 12px;
  font-weight: 500;
}

.services__actions {
  text-align: center;
}

.services__btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  background: #ff9933;
  border: none;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.services__btn:hover {
  background: #e68a00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
  color: white;
}

.session-types {
  background: #263246;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.session-types h5 {
  color: #ff9933;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.session-types p {
  color: #fff;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.session-types .primary-btn {
  background: white;
  color: #ff9933;
}

.session-types .primary-btn:hover {
  background: #1a2533;
}

/*---------------------
  Chooseus
-----------------------*/

.chooseus {
  background: #fff;
  padding-bottom: 20px;
}

.chooseus__text {
  margin-bottom: 70px;
}

.chooseus__text h2 {
  font-size: 44px;
  color: #ff9933;
  margin-bottom: 6px;
}

.chooseus__text p {
  margin-bottom: 0;
  color: #263246;
}

/*---------------------
  Home About
-----------------------*/

.home-about {
  padding-bottom: 0;
  background: #FFF;
}

.home__about__pic {
  margin-right: -20px;
  padding-right: 30px;
}

.home__about__pic__item {
  height: 620px;
  width: calc(50% - 20px);
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.home__about__pic__item__inner {
  height: 300px;
  margin-bottom: 20px;
}

.home__about__text {
  padding-top: 35px;
  color: #ff9933;
}

.home__about__text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.home__about__text span {
  display: block;
  font-size: 16px;
  color: #ff9933;
  margin-bottom: 12px;
}

.home__about__text p.para-2 {
  margin-bottom: 40px;
  color: #263246;
}

.home__about__text p {
  margin-bottom: 40px;
  color: #263246;
}

/*---------------------
  Experience Section
-----------------------*/

.experience {
  padding-top: 50px;
  padding-bottom: 80px;
  background: #263246;
}

.experience__item {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.experience__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9933, #ff6600);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.experience__item:hover::before {
  transform: scaleX(1);
}

.experience__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.experience__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff9933, #ff6600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
}

.experience__icon::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(255, 153, 51, 0.2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.experience__icon i {
  font-size: 30px;
  color: white;
}

.experience__item h4 {
  font-size: 20px;
  color: #263246;
  margin-bottom: 20px;
  font-weight: 600;
}

.experience__item p {
  color: #6e7580;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 15px;
}

.experience__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.experience__features .feature {
  background: #f8f9fa;
  color: #555;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.experience__item:hover .experience__features .feature {
  background: #fff5eb;
  border-color: #ff9933;
  color: #ff6600;
}

.experience__cta {
  background: #263246;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.experience__cta p {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}

/*---------------------
  Offerings
-----------------------*/

.offerings__item {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.offerings__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.offerings__header h4 {
  font-weight: 600;
  color: #333;
}

.offerings__header .duration {
  color: #888;
  font-size: 14px;
}

.offerings__details li {
  margin: 10px 0;
  font-size: 15px;
  color: #555;
}

.offerings__details i {
  color: #ff9933;
  margin-right: 8px;
}

.offerings__footer .primary-btn {
  margin-top: 15px;
}

/*---------------------
  Gallery Section with Bootstrap
-----------------------*/

.gallery {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.gallery__image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery__item:hover .gallery__image img {
  transform: scale(1.05);
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 25px;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__text {
  text-align: center;
  color: #ffffff;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.gallery__item:hover .gallery__text {
  transform: translateY(0);
}

.gallery__text h5 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 600;
}

.gallery__text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/*---------------------
  Footer
-----------------------*/

.footer {
  background: #000;
  padding-top: 70px;
}

.footer__about {
  margin-bottom: 30px;
}

.footer__about ul {
  margin-bottom: 25px;
  margin-top: 20px;
}

.footer__about ul li {
  color: #9b9ea3;
  line-height: 37px;
  font-size: 16px;
  list-style: none;
}

.footer__about ul li i {
  font-size: 16px;
  color: #ff9933;
  margin-right: 5px;
}

.footer__widget {
  margin-bottom: 30px;
  margin-left: 0px;
}

.footer__widget h5 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 25px;
}

.footer__widget ul li {
  list-style: none;
}

.footer__widget ul li a {
  font-size: 16px;
  color: #9b9ea3;
  line-height: 37px;
}

.footer__widget .footer-address li {
  list-style: none;
  font-size: 16px;
  color: #9b9ea3;
  line-height: 37px;
}

.footer__widget .footer-address li i {
  margin-right: 8px;
}

.footer__copyright {
  border-top: 1px solid rgba(225, 225, 225, 0.1);
  overflow: hidden;
  padding: 15px 0;
  margin-top: 20px;
}

.footer__copyright__text p {
  font-size: 14px;
  color: #6e7580;
  margin-bottom: 0;
}

.footer__copyright__text i {
  color: #a11f1f;
}

.footer__copyright__text a {
  color: #ff9933;
}

.footer__copyright__social {
  text-align: right;
  
}

.footer__copyright__social a {
  display: inline-block;
  font-size: 15px;
  color: #ffffff;
  margin-right: 25px;
}

.footer__copyright__social a:last-child {
  margin-right: 0;
}

.footer__social .fa{
	color: #ffc107;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Medium Device = 1200px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero__sliders.owl-carousel .owl-nav button {
    left: 5px;
  }
  .hero__sliders.owl-carousel .owl-nav button.owl-next {
    right: 5px;
  }
  .header__top__widget .primary-btn {
    display: none;
  }
  .header__top__widget ul {
    margin-right: 0;
  }
  .header__top__widget {
    padding: 20px 0 20px;
  }
  .head__right {
    display: flex;
    align-items: center;
    justify-content: end;
  }
}

/* Tablet Device = 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__items {
    height: 400px;
    display: flex;
    align-items: center;
  }
  .hero__text {
    padding: 60px 0 80px;
  }
  .hero__text h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 15px;
  }
  .hero__text span {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .hero__text p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .hero__text .primary-btn {
    font-size: 12px;
    padding: 16px 24px 10px;
    letter-spacing: 1px;
  }
  .hero__sliders.owl-carousel .owl-nav button {
    height: 36px;
    width: 36px;
    font-size: 16px;
    line-height: 40px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50px);
  }
  .hero__sliders.owl-carousel .owl-nav button.owl-next {
    left: 50%;
    transform: translateX(14px);
    right: auto;
  }
  .header__menu ul li {
    margin-right: 18px;
  }
  .header__top__widget ul {
    display: none;
  }
  .hero__sliders.owl-carousel .owl-nav button {
    left: 5px;
  }
  .hero__sliders.owl-carousel .owl-nav button.owl-next {
    right: 5px;
  }
}

/* Wide Mobile = 480px */
@media only screen and (max-width: 767px) {

  .header__logo img {
    padding: 5px 0 5px;
    width: 20px;
    display: flex;
  }
  .hero__sliders.owl-carousel .owl-nav button {
    position: relative;
    left: 15px;
    bottom: 120px;
  }
  .hero__sliders.owl-carousel .owl-nav button.owl-next {
    right: -25px;
  }
  .home__about__pic__item {
    width: 100%;
    margin-right: 0;
  }
  .header__top__widget {
    display: none;
  }
  .header__nav {
    display: block;
  }
  .hero {
    margin-top: 0;
  }
  .header__top .container {
    position: relative;
  }

  .chooseus__text h2 {
  font-size: 40px;
  color: #ff9933;
  margin-bottom: 6px;
}


.section-title h2 {
  font-size: 26px;
  color: #ff9933;
  margin-top: 34px;
  margin-bottom: 5px;
}
  .offcanvas-menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
    visibility: hidden;
    transition: all, 0.5s;
  }
  .offcanvas-menu-overlay.active {
    visibility: visible;
  }
  .canvas__open {
    font-size: 20px;
    color: #263246;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #263246;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 35px;
    display: block;
  }
  .offcanvas-menu {
    position: fixed;
    width: 300px;
    height: 100%;
    left: -300px;
    background: #ffffff;
    z-index: 99;
    overflow-y: auto;
    padding: 50px 30px 30px 30px;
    opacity: 0;
    display: block;
    transition: all, 0.5s;
  }
  .offcanvas-menu.show-offcanvas-menu {
    left: 0;
    opacity: 1;
  }
  .offcanvas__logo {
    margin-bottom: 30px;
  }
  .offcanvas__logo img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
  }
  .offcanvas__widget {
    margin-bottom: 30px;
  }
  .offcanvas__widget ul {
    margin-bottom: 20px;
  }
  .offcanvas__widget ul li {
    font-size: 16px;
    color: #263246;
    text-transform: uppercase;
    list-style: none;
    display: inline-block;
    line-height: 36px;
  }
  .offcanvas__widget .primary-btn {
    display: inline-block;
  }
  .offcanvas__social a {
    display: inline-block;
    font-size: 16px;
    color: #263246;
    margin-right: 10px;
  }
  .offcanvas__social a:last-child {
    margin-right: 0;
  }
  .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
  }
  .slicknav_btn {
    display: none;
  }
  .slicknav_nav {
    background: transparent;
    display: block !important;
  }
  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #263246;
  }
  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #263246;
  }
  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 10px 0;
    margin: 0;
    color: #263246;
    font-size: 16px;
    border-bottom: 1px solid #e1e1e1;
  }
  .header__menu {
    display: none;
  }
  .header__social {
    display: none;
  }
  .hero__items {
    height: auto;
  }
  .hero__text {
    padding: 20px 0 170px;
  }
  .home__about__pic {
    margin-right: 0;
    padding-right: 0;
  }
  .footer__copyright__text {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer__copyright__social {
    text-align: center;
  }
  .over-hid {
    overflow: hidden;
  }
}

/* Mobile Responsive Adjustments */
@media only screen and (max-width: 991px) {
  .services {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .services__content {
    padding: 20px;
  }
  .services__content h5 {
    font-size: 20px;
  }
  .services__image {
    height: 180px;
  }
  .session-types h5 {
    font-size: 16px;
  }
  .experience {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .experience__item {
    padding: 30px 25px;
  }
  .experience__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  .experience__icon i {
    font-size: 28px;
  }
  .experience__item h4 {
    font-size: 20px;
  }
  .experience__cta {
    padding: 30px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .services__item {
    margin-bottom: 25px;
  }
  .services__content {
    padding: 20px 15px;
  }
  .services__content h5 {
    font-size: 18px;
  }
  .services__meta {
    flex-direction: column;
    gap: 8px;
  }
  .services__meta-item {
    justify-content: flex-start;
    min-width: auto;
  }
  .session-types {
    padding: 20px 15px;
  }
  .session-types h5 {
    font-size: 15px;
    line-height: 1.4;
  }
  .session-types p {
    font-size: 14px;
  }
  .experience__item {
    padding: 25px 20px;
    margin-bottom: 25px;
  }
  .experience__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  .experience__icon i {
    font-size: 24px;
  }
  .experience__item h4 {
    font-size: 18px;
  }
  .experience__item p {
    font-size: 14px;
  }
  .experience__features .feature {
    font-size: 11px;
    padding: 6px 12px;
  }
  .experience__cta {
    padding: 25px 20px;
  }
  .experience__cta p {
    font-size: 16px;
  }
}

/*---------------------
  Gallery Responsive Styles
-----------------------*/

/* Tablet: 2 columns */
@media only screen and (max-width: 991px) {
  .gallery__image {
    height: 280px;
  }
  
  .gallery__text h5 {
    font-size: 18px;
  }
  
  .gallery__text p {
    font-size: 13px;
  }
  
  .gallery__overlay {
    padding: 20px;
  }
}

/* Mobile: 2 columns */
@media only screen and (max-width: 767px) {
  .gallery {
    padding: 60px 0;
  }
  
  .gallery__image {
    height: 250px;
  }
  
  .gallery__text h5 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .gallery__text p {
    font-size: 12px;
  }
  
  .gallery__overlay {
    padding: 15px;
  }
}

/* Small Mobile: Single column */
@media only screen and (max-width: 576px) {
  .gallery__image {
    height: 220px;
  }
  
  .gallery__text h5 {
    font-size: 18px;
  }
  
  .gallery__text p {
    font-size: 14px;
  }
}

/* Large Desktop Enhancements */
@media only screen and (min-width: 1200px) {
  .gallery__image {
    height: 320px;
  }
}

/* Animation for gallery items */
.gallery__item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.gallery__item:nth-child(1) { animation-delay: 0.1s; }
.gallery__item:nth-child(2) { animation-delay: 0.2s; }
.gallery__item:nth-child(3) { animation-delay: 0.3s; }
.gallery__item:nth-child(4) { animation-delay: 0.4s; }
.gallery__item:nth-child(5) { animation-delay: 0.5s; }
.gallery__item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure proper image loading and performance */
.gallery__image img {
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Focus states for accessibility */
.gallery__item:focus-within .gallery__overlay {
  opacity: 1;
}

.gallery__item:focus-within .gallery__text {
  transform: translateY(0);
}

/* Animation */
.services__item {
  animation: fadeInUp 0.6s ease forwards;
}

.services__item:nth-child(2) {
  animation-delay: 0.2s;
}

.services__item:nth-child(3) {
  animation-delay: 0.4s;
}

.experience__item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.experience__item:nth-child(1) {
  animation-delay: 0.1s;
}
.experience__item:nth-child(2) {
  animation-delay: 0.2s;
}
.experience__item:nth-child(3) {
  animation-delay: 0.3s;
}
.experience__item:nth-child(4) {
  animation-delay: 0.4s;
}
.experience__item:nth-child(5) {
  animation-delay: 0.5s;
}
.experience__item:nth-child(6) {
  animation-delay: 0.6s;
}

/* Ensure Font Awesome Icons are properly sized */
.fa {
  font-size: 14px;
}

/*---------------------
  Map Styles
-----------------------*/

.map-container {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Responsive Map Styles */
@media only screen and (max-width: 991px) {
  .map-container {
    height: 180px;
  }
}

@media only screen and (max-width: 767px) {
  .map-container {
    height: 160px;
    margin-bottom: 20px;
  }

  .col-lg-3.col-md-6.col-sm-6 {
    order: 2; /* Move map to bottom on mobile if needed */
  }
}

/* For larger screens if you want bigger map */
@media only screen and (min-width: 1200px) {
  .map-container {
    height: 220px;
  }
}

/* Offerings Responsive Layout */

/* Mobile: 2 columns x 3 rows */
@media only screen and (max-width: 767px) {
  #offerings .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* space between items */
  }

  #offerings .col-6 {
    flex: 0 0 48%; /* two columns */
    max-width: 48%;
    margin-bottom: 20px; /* space between rows */
  }

  #offerings .offerings__item {
    margin: 0;
  }
}

/* Tablet: 3 columns x 2 rows */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #offerings .col-6 {
    flex: 0 0 32%;
    max-width: 32%;
    margin-bottom: 20px;
  }
}

/* Desktop: 3 columns (default) */
@media only screen and (min-width: 992px) {
  #offerings .col-lg-4 {
    flex: 0 0 31%;
    max-width: 31%;
    margin-bottom: 30px;
  }
}

/* Experience Section Responsive Layout */

/* Mobile: 2 columns x 3 rows */
@media only screen and (max-width: 767px) {
  #experience .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  #experience .col-6 {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 20px;
  }

  #experience .experience__item {
    margin: 0;
  }
}

/* Tablet: 3 columns x 2 rows */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #experience .col-6 {
    flex: 0 0 32%;
    max-width: 32%;
    margin-bottom: 20px;
  }
}

/* Desktop: 3 columns */
@media only screen and (min-width: 992px) {
  #experience .col-lg-4 {
    flex: 0 0 31%;
    max-width: 31%;
    margin-bottom: 30px;
  }
}

/* Optional: Make icons slightly smaller on mobile */
@media only screen and (max-width: 767px) {
  #experience .experience__icon i {
    font-size: 30px;
  }

  #experience h4 {
    font-size: 18px;
  }

  #experience p {
    font-size: 14px;
  }
}


/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 999;
    pointer-events: none; /* Prevent blocking other clicks */
}
.floating-buttons a .fa{
	font-size: 30px;
}
.floating-buttons .float-btn {
    position: absolute;
    bottom: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    pointer-events: auto;
}

/* Call Button (Left Corner) */
.call-btn {
    left: 20px;
    background-color: #28a745; /* Green shade */
}

/* WhatsApp Button (Right Corner) */
.whatsapp-btn {
    right: 20px;
    background-color: #25D366; /* Official WhatsApp color */
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}





