/* ======================================================
   Table of Contents
==========================================================
1. General Style                          (line 34)
    1.1 Root Style                        (line 47)
    1.2 Header Style                      (line 75)
    1.3 Link and Image Style              (line 116)
    1.4 Text Style                        (line 126)
    1.5 Icon Circle Style                 (line 165)
    1.6 Color Utility Class               (line 248)
    1.7 Background Utility Class          (line 258)
    1.8 Font Size Utility Class           (line 265)
    1.9 Width Utility Class               (line 278).content-m, .section-m 
    
    1.10 Button Style                     (line 290)
        1.10.1 Navbar Button              (line 312)
    1.11 Default Width                    (line 332)
2. Navbar Style                           (line 342)
3. Hero Style                             (line 420)
4. About Style                            (line 481)
5. CEO Quote Style                        (line 507)
6. Choose Us Style                        (line 539)
7. Service Style                          (line 557)
8. Showcase Style                         (line 599)
9. FAQs Style                             (line 627)
10. Blog Post Style                       (line 675)
11. Video Style                           (line 730)
12. Team Style                            (line 744)
13. Contact Style                         (line 791)
14. Packages Style                        (line 920)
15. 404 Style                             (line 932)
16. Transition Style                      (line 941)
17. Footer Style                          (line 951)
18. Other Style                           (line 1022)
19. Media Queries                         (line 1031)
===========================================================
*/

/* General Style */
@font-face {
  font-family: "Philosopher";
  src: url(../font/philosopher.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url(../font/lato.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Root Style */
:root {
  /* Main heading color */
  --heading-color: #112015;
  /* Primary color for the site, often used for buttons, links, etc. */
  --color-main: #5c9269;
  /* Darker shade of the primary color, used for hover states or dark background elements */
  --color-darker: #1d4026;
  /* Lighter shade of the primary color, for lighter elements or backgrounds */
  --color-lighter: #99c7a3;
  /* Subtle background color, used for subtle backgrounds or areas with less emphasis */
  --color-subtle: #fffbe9;
  /* Border color, used for borders and dividers */
  --color-border: #fdfdfd;
  /* Error color, usually red, used for form validation or error messages */
  --color-error: #e22d2d;
  /* Warning color, yellow, used for warning messages or indicators */
  --color-warning: #e2d52d;
  /* Information color, blue, used for info messages or alert indicators */
  --color-info: #2663cf;
  /* Success color, green, used for success messages or successful actions */
  --color-success: #20bd3c;
  /* Text color 1 for headers*/
  --text-color-1: #696969;
  /* Text color 2 for body text */
  --text-color-2: #c7c7c7;
  /* Font family for main headers */
  --font-1: "Philosopher";
  /* Font family for body text or secondary headers */
  --font-2: "Lato";
}

/* Header Styles */
h1 {
  font-size: 80px; /* Large font size for main headers */
  font-weight: 500; /* Medium font weight */
  line-height: 1.1em; /* Slightly compact line height */
  letter-spacing: -1.3px; /* Tight letter spacing for a cleaner look */
  font-family: var(--font-1); /* Applying the main header font */
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.2em;
  font-family: var(--font-1);
}

h2 {
  font-size: 56px;
  letter-spacing: -1.3px;
}

h3 {
  font-size: 40px;
  letter-spacing: -1.1px;
}

h4 {
  font-size: 32px;
  letter-spacing: -1px;
}

h5 {
  font-size: 24px;
  letter-spacing: -0.8px;
}

h6 {
  font-size: 16px;
  letter-spacing: -0.6px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  object-fit: cover;
}

/* Text Style */
.heading {
  color: var(--heading-color);
}

.sub-heading {
  color: var(--color-main);
}
.text-subtitle {
  font-family: "Philosopher";
  font-size: 22px;
  font-weight: 500;
  line-height: 1, 2;
  letter-spacing: -0.8px;
}

.text-white {
  font-family: "Lato";
  font-size: 16px;
  color: white;
}
.text-silver {
  font-family: "Lato";
  font-size: 16px;
  color: var(--text-color-2);
}
.text-color-1 {
  color: var(--text-color-1);
}
.text-color-2 {
  color: var(--text-color-2);
}

.font-1,
.philosopher {
  font-family: var(--font-1); /* Font family for headers */
}

.font-2,
.lato {
  font-family: var(--font-2); /* Font family for body text */
}

/* Icon Circle Styles */
.icon-circle-37-main,
.icon-circle-32,
.icon-circle-32-main,
.icon-circle-17,
.icon-circle-17-main,
.icon-circle-15-main {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: transparent;
  font-size: 16px;
  cursor: pointer;
}

.icon-circle-37-main {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-main);
  color: var(--color-main);
}

.icon-circle-32 {
  width: 32px;
  height: 32px;
  border: 1px solid white;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-circle-32:hover {
  color: var(--color-darker);
  background-color: var(--color-subtle);
  border: 1px solid var(--color-subtle);
}

.icon-circle-32-main {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-circle-32-main:hover {
  color: white;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
}

.icon-circle-17 {
  width: 17px;
  height: 17px;
  border: 1px solid white;
  font-size: 15px;
  color: white;
}

.icon-circle-17-main {
  width: 17px;
  height: 17px;
  border: 1px solid var(--color-main);
  font-size: 15px;
}

.icon-circle-15-main {
  width: 15px;
  height: 15px;
  border: 1px solid var(--color-main);
  font-size: 13px;
}

/* Testimonial Circle Styles */
.testimonial-circle {
  width: 45px;
  height: 45px;
  background-color: grey;
  border-radius: 50%;
  margin-left: -7px;
}

.testimonial-circle-first {
  width: 45px;
  height: 45px;
  background-color: grey;
  border-radius: 50%;
}

/* Color Utility Classes */
.c-white {
  color: white;
}
.c-silver {
  color: var(--text-color-2);
}
.c-main {
  color: var(--color-main);
}
.c-black {
  color: black;
}
.c-text {
  color: rgb(255, 254, 250, 0.6);
}
.c-semi-black {
  color: var(--heading-color);
}
.c-semi-transparent {
  color: #00000080;
}
.c-grey {
  color: var(--text-color-1);
}

/* Background Utility Classes */
.bg-subtle {
  background-color: var(--color-subtle);
}
.bg-semi-white {
  background-color: var(--color-border) !important;
}
.bg-darker {
  background-color: var(--color-darker) !important;
}
/* .bg-grey {
  background-color: var(--text-color-1);
} */
.bg-main {
  background-color: var(--color-main);
}

/* Font Size Utility Classes */
.fs-12 {
  font-size: 12px;
}
.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fs-15 {
  font-size: 15px;
}
.fs-16 {
  font-size: 16px;
}
.fs-17 {
  font-size: 17px;
}
.fs-18 {
  font-size: 18px;
}
.fs-22 {
  font-size: 22px;
}
.fs-24 {
  font-size: 24px;
}
.fs-26 {
  font-size: 26px;
}
.fs-48 {
  font-size: 48px;
}

/* Width Utility Classes */
.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-30 {
  width: 30%;
}
.w-40 {
  width: 40%;
}
.w-50 {
  width: 50%;
}
.w-60 {
  width: 60%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-90 {
  width: 90%;
}
.w-100 {
  width: 100%;
}

/* Button Styles */
.btn-light,
.btn-dark {
  background-color: var(--color-main);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  max-width: fit-content;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-light {
  height: 45px !important;
}

.btn-light:hover {
  background-color: white;
  color: var(--text-color-1);
}

.btn-dark:hover {
  background-color: var(--color-darker);
  color: white;
}

/* Navbar Styles */
button.nav-link {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

button.nav-link:hover {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

button.nav-link:focus {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

.nav-link.active {
  color: #f39c12 !important;
  font-weight: 400;
}

.width-base {
  width: 1220px;
  padding-top: 68px !important;
  padding-bottom: 58px !important;
  margin-left: auto;
  margin-right: auto;
}

/* Navbar Style */
.navbar-toggler {
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  box-shadow: none;
  outline: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0;
}
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
  border: none;
}
.navbar-toggler-icon {
  display: block;
  height: 1px;
  width: 30px;
  background-color: white;
  border-radius: 2px;
  transition: none;
}
.navbar-toggler-icon:nth-child(3) {
  width: 22px;
  height: 2px;
  margin-left: 8px;
}
.offcanvas.show .nav-link {
  color: var(--text-color-1);
  font-size: 12px;
}
.offcanvas.show .nav-link:hover {
  color: var(--color-main);
}
.nav-link {
  color: var(--text-color-2);
  font-size: 15px;
}
.nav-link:hover {
  color: white;
}
.dropdown {
  border-radius: 10px;
}
.dropdown-toggle {
  box-shadow: none !important;
}
.dropdown-menu {
  padding: 10px;
  color: var(--text-color-2);
  min-width: 200px;
}
.dropdown-menu a {
  padding-top: 10px;
  padding-bottom: 10px;
}
.dropdown-menu:hover a:hover {
  color: #fff;
  background-color: var(--color-main);
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}
.dropdown-menu {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.content-m {
  margin-top: 6rem;
}
.section-m {
  margin-top: 9rem;
  width: 1220px;
}
.hero-title {
  width: 75%;
}

.navbar,
.main-navbar {
  background-color: rgba(255, 255, 255, 0.95) !important;
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  margin: 0 !important;
  line-height: 1.1;
  backdrop-filter: blur(8px);
}

.nav-link {
  color: #212529 !important;
  font-weight: 500;
  padding: 6px 10px !important;
}

.nav-link:hover {
  color: #f39c12 !important;
}

.top-contact-bar {
  padding: 2px 0 !important;
  font-size: 12px;
}

.bg-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.content-m,
.section-m {
  margin-top: 1rem !important;
}

.border-hero {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.border-hero .icon-circle-32 i {
  color: #000 !important;
}

.border-hero .c-white,
.border-hero .fs-13 {
  color: #000 !important;
}

.border-hero {
  border-bottom: 1px solid #ccc;
}
.overlay-hero {
  padding-bottom: 50px !important;
  background-color: rgba(17, 32, 21, 0.6) !important;
}

.form-container {
  margin-bottom: 50px;
}

.navbar {
  position: relative;
  z-index: 10;
}

.banner-title {
  width: 100%;
  font-size: 80px;
  font-weight: 500;
  line-height: 1, 1px;
  letter-spacing: -1.3px;
}
.hero-subtitle {
  width: 60%;
}
.hero-subtext {
  width: 70%;
}
.bg-hero {
  background-image: url("../img/banner_home_imresizer_page.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.bg-darker {
  background-color: #063;
  margin-top: 0 !important;
  padding-top: 40px;
  padding-bottom: 40px;
}

.border-hero {
  border-bottom: 1px solid #c4c4c4;
}
.form-container {
  background: rgba(255, 255, 255, 0);
  border-radius: 10px;
  padding: 20px;
  max-width: 1000px;
  width: 100%;
  border: 1px solid white;
}
.form-control,
.form-control:focus,
.form-control::placeholder {
  background: rgba(255, 255, 255, 0);
  color: white;
  box-shadow: none;
  outline: none;
  border-color: white;
  font-family: "Philosopher";
  padding: 10px;
}
.form-control:focus {
  background-color: white;
  color: black;
}
.date {
  color-scheme: dark;
}

#service-page {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/service_page_banner.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
#contact-page {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/contactastro-12.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
#learning-page {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/learning_banner.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}

#blog-post-page {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/blog_page_imresizer.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
#about-page {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/about-13-img.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
#review-page {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/review-page-banner.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}

#single-post {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/single-post-banner-img.jpg") !important;
  background-size: cover;
  background-position: center;
  height: 512px;
}

.about-bg1 {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/spirit-fire-reiki-imgs.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
.about-bg2 {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/money-banner_imresizer.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
.about-bg3 {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/Humkara-Hleem-imgs.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
.about-bg4 {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/Kundalini_Reiki_service_imgs.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
.about-bg5 {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/Ethereal_Crytsals_imgs.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
.about-bg6 {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/cryst-heal-14_imresizer.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
.about-bg7 {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/Usui-reiki-15_imresizer.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
.about-bg8 {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/Lama-Fera-Hero-Ban44444.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
.about-bg9 {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/nadi-banner_imresizer.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
.about-bg10 {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/crystal-learn-heal_imresizer.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}
.about-bg11 {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/magic-img-page_imresizer.jpg");
  background-size: cover;
  background-position: center;
  height: 512px;
}

.img-about {
  border-radius: 10px;
  width: 100%;
}
.img-about-last {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.title-about {
  font-family: "Philosopher";
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.3px;
}

.bg-ceo {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/Bigbanner.jpg");
  width: 100%;
  background-size: cover;
  background-position: center;
  margin-bottom: -24px !important;
}
.ceo-quote {
  margin: auto;
  width: 60%;
  padding-left: 0;
  padding-right: 0;
}
.signature {
  width: 160px;
  height: 34px;
}
.card {
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  overflow: hidden;
}
.card:hover {
  border: 1px solid var(--color-main);
}
.card-body {
  background-color: var(--color-subtle);
  border-radius: 10px;
  padding: 30px;
}

.bg-choose-us {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/work.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.bg-darker {
  background-color: var(--color-darker);
}
.choose-position {
  top: -200px;
  left: 0;
  right: 0;
  margin: auto;
}

.bg-service-1 {
  background-image: url("../img/fire_image.jpg");
  min-height: 455px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.bg-service-2 {
  background-image: url("../img/Money_Reiki.jpg");
  min-height: 455px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.bg-service-3 {
  background-image: url("../img/magic_card.jpg");
  min-height: 455px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.bg-service-4 {
  background-image: url("../img/kundalini_reiki_home.jpg");
  min-height: 455px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.bg-service-5 {
  background-image: url("../img/Humkara_with_Hleem.jpg");
  min-height: 455px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.bg-service-6 {
  background-image: url("../img/Ethereal_Crytsals.png");
  min-height: 455px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.bg-service-7 {
  background-image: url("../img/Crystal_Healing.jpg");
  min-height: 455px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.bg-service-8 {
  background-image: url("../img/Usui_reiki.jpg");
  min-height: 455px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.bg-service-9 {
  background-image: url("../img/Lama_Fera.jpg");
  min-height: 455px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.bg-service-10 {
  background-image: url("../img/Nadi_Astrology.jpg");
  min-height: 455px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.bg-service-11 {
  background-image: url("../img/Learn_Crystal_Healing.jpg");
  min-height: 455px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 768px) {
  .bg-service-1,
  .bg-service-2,
  .bg-service-3,
  .bg-service-4,
  .bg-service-5,
  .bg-service-6,
  .bg-service-7,
  .bg-service-8,
  .bg-service-9,
  .bg-service-10,
  .bg-service-11 {
    background-image: none !important;
    min-height: auto !important;
  }
}

.custom-card {
  max-width: 35%;
  width: max-content;
  background: var(--color-border);
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  left: 5%;
  bottom: 10%;
}

.custom-card-1 {
  background: var(--color-border);
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  overflow: hidden;
}
.subtext-showcase {
  width: 550px;
  font-family: "Lato";
  font-size: 16px;
  color: var(--text-color-1);
  text-align: center;
}
.img-showcase {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.last-img-showcase {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-faqs {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accordion,
.accordion-button,
.accordion-item,
.accordion-header,
.accordion-body {
  border: none !important;
  box-shadow: none !important;
}
.accordion-button {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.6px;
  color: var(--text-color-1);
  background-color: var(--color-border);
}
.accordion-button:focus {
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--heading-color);
  background-color: transparent !important;
}
.accordion-button:hover {
  background-color: #e9ecef;
}
.accordion-button:active {
  background-color: transparent !important;
}
.accordion-item {
  margin-bottom: 10px;
}
.accordion-item {
  border: 1px solid #c4c4c4 !important;
  border-radius: 10px;
}
.accordion-header,
.accordion-body,
.accordion-button {
  border-radius: 10px !important;
}

.img-blog-post {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transform-origin: center;
}
.img-wrapper {
  overflow: hidden;
}
.img-blog-post-2 {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transform-origin: center;
}
.img-blog-post-2:hover {
  transform: scale(1.1);
}
.img-blog-post-3 {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.custom-card-2 {
  background: var(--color-border);
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
}
.custom-card-2:hover .img-blog-post {
  transform: scale(1.1) rotate(3deg);
}
.learn-link {
  transition: color 0.3s ease;
}
.learn-link:hover {
  color: var(--text-color-1);
}
.blog-link {
  color: var(--color-main);
  font-size: 16px;
  font-family: var(--font-2);
}
.blog-link:hover {
  color: var(--heading-color);
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img-team {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.img-team {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.team-member .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.team-member .team-name {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 11;
}
.team-member:hover .overlay {
  opacity: 1;
}
.team-member:hover .team-name {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.form-container-2 {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  font-family: var(--font-2);
}
.form {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid var(--text-color-2);
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 20px;
}
.form-row.full-width {
  flex-direction: column;
}
.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-label {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--text-color-1);
}
.form-input,
.form-textarea {
  border: none;
  border-bottom: 1px solid var(--text-color-2);
  padding: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}
.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--color-border);
  outline: none;
}
.form-textarea {
  resize: none;
}
.form-button {
  width: 100%;
  align-self: center;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: var(--color-main);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.form-button:hover {
  background-color: var(--color-darker);
}
.form-select {
  border: none;
  border-radius: 0px;
  border-bottom: 1px solid var(--text-color-2);
  padding: 8px;
  font-size: 14px;
  background-color: transparent;
  transition: border-color 0.3s;
  appearance: none;
}
.form-select:focus {
  border-bottom-color: var(--color-border);
  outline: none;
  box-shadow: none;
}
.form-select::-ms-expand {
  display: none;
}
.form-select-wrapper {
  position: relative;
}
.form-select-wrapper::after {
  font-size: 12px;
  color: var(--text-color-2);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.popup-message {
  display: none;
  background-color: var(--color-border);
  color: var(--heading-color);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.border-radius-10 {
  border-radius: 10px;
}
.contact-image {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.contact-card {
  width: 65%;
  width: max-content;
  background: var(--color-border);
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  right: 10%;
  bottom: 8%;
}
.maps {
  width: 100%;
  height: 420px;
  transition: filter 0.5s;
  display: block;
}

.package-card {
  border: 1px solid var(--text-color-2);
  border-radius: 10px;
  padding: 32px;
  position: relative;
}
.package-card:hover {
  border: 1px solid var(--text-color-1);
}

.bg-404 {
  background-image: linear-gradient(
      rgba(17, 32, 21, 0.6),
      rgba(17, 32, 21, 0.6)
    ),
    url("../img/about-overlay.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in, transform 0.8s ease-in;
}
.fade-in.visible {
  opacity: 1;
}

.email-input {
  flex: 1;
  background-color: transparent;
  color: white;
  border: none;
  outline: none;
}
.email-input::placeholder {
  color: white;
  opacity: 0.8;
}
.email-input:focus {
  outline: none;
}
.newsletter-container {
  border-bottom: #c9c9c9 1px solid;
  width: 60%;
}
.newsletter-container:hover {
  border-bottom: white 1px solid;
}
.btn-newsletter {
  background: transparent;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-form {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
}
.btn-newsletter i {
  color: #c9c9c9;
}
.btn-newsletter:hover i {
  color: white;
}

.footer-logo {
  width: 238px;
  height: 238px;
  object-fit: cover;
}
.subtext-footer {
  width: 60%;
}
.footer-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.large-padding {
  padding-bottom: 200px;
}
.partner-margin {
  margin-top: -200px;
}

/* Media Query */
@media screen and (max-width: 1220px) {
  .section-m {
    margin-top: 8rem;
    width: 100%;
  }
  .width-base {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 60px;
    line-height: 1.1em;
    font-family: var(--font-1);
  }
  h2 {
    font-size: 40px;
    line-height: 1.2em;
    font-family: var(--font-1);
  }
  h3 {
    font-size: 28px;
    line-height: 1.2em;
    font-family: var(--font-1);
  }
  h4 {
    font-size: 24px;
    line-height: 1.2em;
    font-family: var(--font-1);
  }
  h5 {
    font-size: 22px;
    line-height: 1, 1em;
    font-family: var(--font-1);
  }
  h6 {
    font-size: 16px;
    line-height: 1, 2em;
    font-family: var(--font-1);
  }
  .border-hero {
    display: none;
  }
  .hero-title {
    margin-top: 24px;
    width: 100%;
    line-height: normal;
    font-size: 30px !important;
  }
  h4.hero-title {
    font-size: 16px !important;
  }
  .hero-subtitle {
    width: 100%;
    margin-top: 25px !important;
  }
  .section-m {
    margin-top: 3rem;
    width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }
  .width-base {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .img-about {
    border-radius: 10px;
    width: 100%;
  }
  .img-about-last {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .ceo-quote {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }
  .signature {
    width: 148px;
    height: 32px;
  }
  .custom-card {
    max-width: 60%;
    position: absolute;
    left: 5%;
    bottom: 10%;
  }
  .img-faqs {
    width: 100%;
    height: 100%;
    max-height: 512px;
  }
  .newsletter-container {
    width: 100%;
  }
  .contact-image {
    max-height: 512px;
    border-radius: 10px;
  }
  .dropdown-menu {
    border: none;
  }
  .dropdown-item {
    background-color: white !important;
    font-size: 12px;
    color: var(--text-color-1) !important;
  }
  .dropdown-item:hover {
    color: var(--color-main) !important;
  }
}
@media screen and (max-width: 450px) {
  h1 {
    font-size: 40px;
    font-family: var(--font-1);
  }
  h2 {
    font-size: 32px;
    font-family: var(--font-1);
  }
  h3 {
    font-size: 24px;
    font-family: var(--font-1);
  }
  h4 {
    font-size: 22px;
    font-family: var(--font-1);
  }
  h5 {
    font-size: 18px;
    font-family: var(--font-1);
  }
  h6 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-1);
  }
  .hero-title {
    margin-top: 24px;
    width: 100%;
    line-height: normal;
  }
  .banner-title {
    margin-top: 24px;
    line-height: normal;
    font-size: 24px;
  }
  .hero-subtitle {
    width: 100%;
  }
  .hero-subtext {
    width: 100%;
  }
  .section-m {
    margin-top: 3rem;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .width-base {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .img-about {
    border-radius: 10px;
    width: 100%;
    height: 100%;
  }
  .img-about-last {
    border-radius: 10px;
    width: 100%;
    /* height: 256px; */
  }
  .title-about {
    font-size: 32px;
  }
  .text-subtitle {
    font-size: 18px;
  }
  .ceo-quote {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .signature {
    width: 70px;
    height: 15px;
  }
  .bg-service-1 {
    background-image: none;
    min-height: 10px;
  }
  .bg-service-2 {
    background-image: none;
    min-height: 10px;
  }
  .bg-service-3 {
    background-image: none;
    min-height: 10px;
  }
  .bg-service-4 {
    background-image: none;
    min-height: 10px;
  }
  .custom-card {
    max-width: 100%;
    position: static;
  }
  .subtext-showcase {
    width: 100%;
  }
  .last-img-showcase {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    max-height: 256px;
    object-fit: cover;
  }
  .img-faqs {
    width: 100%;
    height: 100%;
    /* max-height: 256px; */
  }
  .subtext-footer {
    width: 100%;
  }
  .newsletter-container {
    width: 100%;
  }
  .about-bg {
    background-image: linear-gradient(
        rgba(17, 32, 21, 0.6),
        rgba(17, 32, 21, 0.6)
      ),
      url("../img/about_page.jpg");
    background-size: cover;
    background-position: center;
    height: 400px;
  }

  .contact-image {
    border-radius: 10px;
  }
  .contact-card {
    width: 90%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .dropdown-menu {
    border: none;
  }
  .dropdown-item {
    background-color: white !important;
    font-size: 12px;
    color: var(--text-color-1) !important;
  }
  .dropdown-item:hover {
    color: var(--color-main) !important;
  }
}

/* Mobile-only fixes */
@media (max-width: 767px) {
  #contactForm .form-row,
  #contactForm .row {
    display: block;
  }

  #contactForm .form-field,
  #contactForm .col {
    width: 100% !important;
    min-width: 100% !important;
    margin-bottom: 15px;
  }

  #contactForm .form-input,
  #contactForm .form-select,
  #contactForm .form-textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }

  #contactForm .form-button {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    border-radius: 6px;
  }
}

@media (max-width: 576px) {
  .icon-circle-37-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-main);
    border-radius: 50%;
    font-size: 12px;
    margin-top: 4px;
  }

  .text-subtitle.c-semi-black {
    font-size: 19px;
    line-height: 1.4;
  }
}
.navbar-brand img {
  opacity: 1;
  filter: brightness(1.2) contrast(1.2);
}

/* Keep native date picker icon visible */
input[type="date"] {
  -webkit-appearance: menulist-button;
  appearance: auto;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.course-content p,
.course-content ul,
.course-content li,
.course-content div {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.course-content ul {
  list-style-position: inside;
  margin-bottom: 1rem;
}

.course-content li {
  margin: 0.3rem 0;
}

.small-topbar {
  background: #111;
  color: #fff;
  font-size: 14px;
}

.small-topbar a {
  color: #fff;
  text-decoration: none;
}

.small-topbar a:hover {
  color: #ffb400;
}

.navbar-brand img {
  max-width: 80px;
  height: auto;
}

@media (min-width: 992px) {
  .navbar-brand img {
    max-width: 100px;
  }
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #5c9269 !important;
  color: #fff !important;
}
.dropdown-toggle::after {
  display: none !important;
}

.home-page .border-hero {
  margin-bottom: 0 !important;
}

.home-page nav.navbar {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.home-page .navbar-brand img {
  height: 80px !important;
}

.home-page .bg-hero {
  padding-top: 40px !important;
}

.home-page .bg-hero {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.home-page .section-m {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.home-page .bg-hero > .overlay-hero > section .c-white {
  padding-top: 20px !important;
}

/* Adjust navbar spacing */
.home-page .navbar {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.home-page .navbar-brand img {
  height: 85px !important;
}

.body-text-welcome {
  font-family: var(--bs-body-font-family);
  line-height: 1.7;
  color: #353535;
  letter-spacing: -1px;
  font-weight: 400;
  line-height: 1.2em;
}
.energy-title {
  font-family: "Philosopher", serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.courses-title {
  font-family: "Philosopher", serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.bg-footer-gradient {
  background: #380f2b !important;
}

/* MOBILE FIX (screens below 768px) */
@media (max-width: 768px) {
  .address.col-4.ms-5,
  .explore.col-4.ms-4 {
    margin-left: 0 !important;
  }
}

@media (max-width: 768px) {
  .contact1.mb-2,
  .contact2.mb-2,
  .address1 {
    white-space: nowrap;
  }
}

.energy {
  background-color: #efefeb !important;
}
.arrow {
  color: #c7c7c7 !important;
}

.aim {
  color: #fff !important;
}

.clock {
  color: #c7c7c7 !important;
}

.light {
  color-scheme: light !important;
}

.quote {
  color: rgb(57, 208, 57) !important;
}

.two-column-list {
  list-style-position: inside !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  columns: 2 !important;
  -webkit-columns: 2 !important;
  -moz-columns: 2 !important;
}
.two-column-list li {
  break-inside: avoid !important;
  margin-bottom: 0.5rem !important;
}
@media (max-width: 767px) {
  .two-column-list {
    columns: 1 !important;
  }
}

.footer-top-right.d-flex.flex-column.align-items-lg-end.text-start.me-5 {
  white-space: wrap !important;
}

.work-with-me {
  height: 403px !important;
}

.our-services {
  margin-top: -131px !important;
}

.address {
  margin-top: 92px !important;
}

a.footer-link {
  color: white !important;
}

#site-footer {
  margin-top: -24px !important;
}
/* Align footer content to left only on mobile */
@media (max-width: 767.98px) {
  #site-footer .row > div {
    text-align: left !important;
  }
}
@media (max-width: 767.98px) {
  #site-footer .d-flex {
    justify-content: flex-start !important;
  }
}

.core-value {
  font-family: "Lato";
  font-size: 16px;
  color: var(--text-color-1);
}

#popupMessageContactHome {
  display: none;
  color: green;
  margin-top: 10px;
}

/* 23/12/2025 */
.bg-hero {
  position: relative;
  overflow: hidden;
}

/* Right image container */
.hero-right-image {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  height: 75%;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* Image */
.hero-right-image img {
  max-height: 100%;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}
@media (max-width: 992px) {
  /* Make hero layout normal flow */
  .hero-right-image {
    position: static;
    transform: none;
    height: auto;
    margin-top: 24px;
    justify-content: center;
  }

  .hero-right-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  /* Stack content properly */
  .section-m {
    display: flex;
    flex-direction: column;
  }
}


/* 05/01/2026 */
@media (max-width: 992px) {
  #offcanvasNavbar {
    height: 320px !important;
    width: 70% !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
  }
}

@media (max-width: 991px) {
  .mobile-home {
    padding: 10px 0;
  }

  .mobile-home .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #ff7a00; /* same as Home highlight */
  }

  .mobile-home .btn-close {
    margin-right: 5px;
    height: 5px;
    width: 5px;
  }
}
/* Disable bootstrap dropdown behavior inside offcanvas */
#offcanvasNavbar .dropdown-menu {
  /* position: static; */
  float: none;
  transform: none !important;
}


/* Mobile offcanvas dropdown fix */
@media (max-width: 991px) {
  #offcanvasNavbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 75%;
    padding-left: 15px;
    margin-top: 5px;
    background: transparent;
    box-shadow: none;
    background-color:white;
    
  }
  #offcanvasNavbar .dropdown-item {
    padding-left: 5px;
  }
}
